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
Printable View
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
How about :
Text1.text = string$(5, "_")
Chris Eastwood
CodeGuru - the website for developers
http://codeguru.developer.com/vb