Pages and subforms

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

Guest

I have a form with 2 subforms. I added a page break because the form has alot
of fields and for various reasons I didn't want a tabbed form. Page down
takes me to the Page Break which happens to be my second Subform. But then
I'm kinda stuck. Page Up does nothing. Any ideas as to why Page Up does not
work
 
Once you are in the subform, the PageUp probably goes to it instead of the
main form.

You could use the KeyDown event procedure of the subform to save the
changes, set focus back to the parent form, and go to page 1.

Alternatively, it may be simpler to create a hotkey for one of the text
boxes on page 1 of your main form, by adding an Ampersand to its attached
label. For example, if you set the Caption of a label to:
&Address
then Alt+A takes you to the text box it is attached to.
 
Back
Top