G Guest Nov 6, 2007 #1 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?
F fredg Nov 6, 2007 #2 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? Click to expand... Code the Control's Enter event: Me![ControlName].SelStart = Len(Me![ControlName])
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? Click to expand... Code the Control's Enter event: Me![ControlName].SelStart = Len(Me![ControlName])