From: Smitty on
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?
From: ghetto_banjo on
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