I have a text box, now how to I bring the cursor to the very beggingng and add something to it? like:
text1.text = text1.text & "hello"
but I need it to be in the begginng not the end of the ext box
Printable View
I have a text box, now how to I bring the cursor to the very beggingng and add something to it? like:
text1.text = text1.text & "hello"
but I need it to be in the begginng not the end of the ext box
hmmmm....is it this?
text1.setfocus ? I haven't used that much
Wouldn't this work instead :
text1.text = "hello" & text1.text
Leave spaces in the "Hello" string to seperate if necassary.
thanks