How to create navigation aids for sub forms

  • Thread starter Thread starter CAD Fiend
  • Start date Start date
C

CAD Fiend

Hello,

I will have a main form, with 3 sub forms. The main form is called
frmProject. The sub forms are called frmOwner, frmParcel, and frmLegal

I know that there are built in navigation buttons already, but as far as
I know, there is not any using CTRL-PageUp or CTRL-PageDown for
navigating forwards or backwards.

I want it to be as easy as possible for the user to navigate back and
forth betwen the sub forms, since there will be many instances of
inputting by the users.

Therefore, I'd like to implement code that will allow the user to
navigate between the 3 sub forms, using CTRL-PageUp (to move forward),
using CTRL-PageDown (to move backward).

What code will I need to do this?

TIA.

Phil.
 
CAD Fiend said:
Hello,

I will have a main form, with 3 sub forms. The main form is called
frmProject. The sub forms are called frmOwner, frmParcel, and frmLegal

I know that there are built in navigation buttons already, but as far as
I know, there is not any using CTRL-PageUp or CTRL-PageDown for
navigating forwards or backwards.


You can use Tab to tab through the fields. Once you are in a subform, you
can use Ctrl-Tab to jump out of the subform to the next control in the main
form's tab order (which may or may not be another subform). Similarly, you
can use Shift-Tab and Ctrl-Shift-Tab to go backwards.
 
Back
Top