form problems

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

#1 - I have a mutli-tabbed form that I want the cursor to advance to the
blank field at the bottom of the form when I switch between the tabs. What
event would be used.

#2 - When I enter data into a form and tab or hit the enter key to go to the
next record - the screen doesn't advance down even though the field has
"focus" and I can key in data.
 
#1. Use the Change event of the tab control to take an action whenever the
tab changes. Note that if the tab control contains a subform, you should
save any edits in the subform before moving back to the main form.

#2. In order to move to the next record, any changes to the current record
must be saved. It will not be able to move if this fails for any reason,
e.g. required field missing, duplicate index, validation rule not met, ...

If that is not the issue, check that the Cycle property of the form is set
to All Records, not Current Record.
 
Back
Top