If you want to set the "|" to a certain point, use:
Code:Text1.SelStart = 0 'set | at beginning of text
Text1.SetFocus 'set focus on the textbox
Printable View
If you want to set the "|" to a certain point, use:
Code:Text1.SelStart = 0 'set | at beginning of text
Text1.SetFocus 'set focus on the textbox
In a textbox, standard, not richtextbox how do i make it so it inserts text at the set point, i.e. where the cursor is
Try this:
Code:Text1.SelText = "My Text Here"