Focus on text box

  • Thread starter Thread starter Alex Martinez
  • Start date Start date
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
 
Put Text1.SetFocus at the end of your command button click event sub
(assuming that Text1 is not disabled)
 
Back
Top