Focus on text box

A

Alex Martinez

Hello,

I am using MS Access 2002 and in my form I am using Access standard add
command button, but unfortunately I can't seem to get the first text box
focused. All I want is the user to press the command button add and have
the first text box focus. Any tips or help will be appreciated. Thank you.

Regards
 
B

Brian

Put Text1.SetFocus at the end of your command button click event sub
(assuming that Text1 is not disabled)
 
Top