Cursor Location

W

Wavequation

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?
 
F

fredg

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])
 
Top