How to Set the Text Box Cursor position
Posted on January 5, 2009
1 2 3 4 5 6 7 8 | 'Controls - How to Set the Text Box Cursor position Option Explicit Private Sub Form_Load() 'To place the cursor after the 4th character Text1.SelStart = 4 End Sub |
1 2 3 4 5 6 7 8 | 'Controls - How to Set the Text Box Cursor position Option Explicit Private Sub Form_Load() 'To place the cursor after the 4th character Text1.SelStart = 4 End Sub |