A1VBCode Forums

TextBox cursor position


http://www.a1vbcode.com/vbforums/Topic27170.aspx

By pirahnaplant - 3/3/2009

How can I change the position that the cursor is at in VB 2008
By How2Prog - 3/26/2013

Hi,



If you mean that change the focused textbox, it's very easy, you should only go to the view menu and select change tab order, or by selecting the control and go to its properties and change the value of TabIndex.

Or go to form_load event and tape this:





TextBox1.Focus()





======================