Want Users Cursor To Always Go To Beginning Of Field

  • Thread starter Thread starter Smitty
  • Start date Start date
S

Smitty

How can I ensure that when a user is navigating the fields in a form I
created,
and not simply hitting tab or enter, that their cursor will always go to the
very beginning (far left) in a field?
 
if they are using the mouse to click in a text box and you want to
ensure the cursor starts at the beginning, then put this code in the
On Click event of the text box:

Me.Text0.SelStart = 0
 
Back
Top