May 19, 2006 #1 Tommy408 Programmer Apr 30, 2006 53 US What's the VB code to move to the end of a filled text field? Me![Orders].SetFocus just highlights/selects the text in the textfield.
What's the VB code to move to the end of a filled text field? Me![Orders].SetFocus just highlights/selects the text in the textfield.
May 19, 2006 #2 Remou Technical User Sep 30, 2002 13,030 BE How about: Me.txtText.SelStart = Len(Me.txtText.Text) Upvote 0 Downvote