Page breaks - Determining Page Number

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

Guest

I'm creating a 'Wizard-Like" entry form using the same buttons(next, back) to
do different tasks depending on the page that I'm on.

How do I determine what page I'm on?

Thanks
 
jonefer said:
I'm creating a 'Wizard-Like" entry form using the same buttons(next, back) to
do different tasks depending on the page that I'm on.


If this is a form with some kind of tricky control
manipulation, you'll have to keep track of the "page"
yourself using VBA code in the button Click events.

If you are using a Tab control, then the page number is in
the tab control's Value property.
 
Back
Top