Hello.How can I cut first 5 sybols of text1.text ?
Printable View
Hello.How can I cut first 5 sybols of text1.text ?
cut.. u mean remove?
if len(text1) > 4 then text1 = right(text1,len(text1)-5)
Cut, as in put it on the Clipboard?VB Code:
Clipboard.Clear 'Copy the first 5 characters of Text1 to the Clipboard Clipboard.SetText Left$(Text1.Text, 5), vbCFText 'Remove the first 5 characters from Text1 Text1.Text = Mid$(Text1.Text, 6)
10x ... it works (of course)
?? 10x?
10x = TenX = Thanx (kinda)
woot! too l337 for me ;)