Cursor Location

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to place the cursor at the end of a line of text in a text box
after setting the focus on the text box?
 
Is there a way to place the cursor at the end of a line of text in a text box
after setting the focus on the text box?

Code the Control's Enter event:

Me![ControlName].SelStart = Len(Me![ControlName])
 
Back
Top