You could use the following code when you open and close a form (remember to set it back on close, if you want to keep it the same as you had before you opened it):
----------
Private Sub Form_Open()
Application.SetOption "Behavior Entering Field", 1
End Sub
----------
----------
Private Sub Form_Close()
Application.SetOption "Behavior Entering Field", 0
End Sub
----------
The value at the end of the SetOption line is either 0, 1 or 2.
0 = Select Entire Field
1 = Go To Start Of Field
2 = Go To End Of Field
Hope this helps.
Jim Lunde
compugeeks@hotmail.com
Custom Application Development