|v| man
December 9th, 1999, 05:18 PM
i want to duplicate the "_" 5 times in text1.text
so i write: text1.text = "_" * 5 but it doesnt work
pls tell me how to do it
so i write: text1.text = "_" * 5 but it doesnt work
pls tell me how to do it
|
Click to See Complete Forum and Search --> : to duplicate |v| man December 9th, 1999, 05:18 PM i want to duplicate the "_" 5 times in text1.text so i write: text1.text = "_" * 5 but it doesnt work pls tell me how to do it Chris Eastwood December 9th, 1999, 05:51 PM How about : Text1.text = string$(5, "_") Chris Eastwood CodeGuru - the website for developers http://codeguru.developer.com/vb codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |