Say i have a command button that does
text1.text = text1.text & "whatever"
how would i make it insert this text where the blinking line is rather than at the end of the text?
Printable View
Say i have a command button that does
text1.text = text1.text & "whatever"
how would i make it insert this text where the blinking line is rather than at the end of the text?
VB Code:
Text1.SelText = "text to insert"
Thanks!