Data Entry using SubForms

  • Thread starter Thread starter Pam
  • Start date Start date
P

Pam

I have a form that also has a subform in it. The
information in both the main form and the subform are in
the Detail section. After I get to the end of the main
form and tab, the cursor takes me back up to the first box
in the main form. I want to go to the first box in the
subform.
 
-----Original Message-----
I have a form that also has a subform in it. The
information in both the main form and the subform are in
the Detail section. After I get to the end of the main
form and tab, the cursor takes me back up to the first box
in the main form. I want to go to the first box in the
subform.
.
Hi Pam, use either the _afterupdate (only when data is
added or changes) or _onexit (whenever focus leaves this
control) event to run the following example code
(aircode)...

subformcontrolname.form!controlname.setfocus

luck
Jonathan
 
Back
Top