help on how this form wizard works please

rob.low

Access Nutter
Local time
Today, 12:45
Joined
Dec 27, 2007
Messages
96
Hi all

Looking for some help on how this form wizard works please
(downloadeed from hitechoach's web site ..well worth a look there)

i cant see how it works i can see the first page it shows in design view
but were are the other pages it shows when you run it?

sorry i just cant see how it works loll

any help would be appreciated
 

Attachments

Rob,

Glad you found some useful info on the site.

About the Wizard:
It uses a tab control with the tabs hidden. The navigation between the tabs is done with the On Click events of the "Back" and "Next" command buttons.

To add validation to a tab, update the code in the CheckFilledFields() function.

Check out the VBA code behind the form.

Note: The tab index start with Zero (0), not one (1). So to reference the first tab, the index value is zero (0).


Hope thios helps ...
 
Hi there
thanks for your help

you mention tabs and they are hidden could you explain more in detail how do i make them visable
say i wanted to edit the label on the second page/tab "perform first task"
how would i do this?

thaks
rob:)
 
In design mode on the form:

1) Select the tab control.
2) Open the property sheet.
3) On the format tab, change the Style from "None" to "Tabs".

Now you will see the tabs. Clci on the tab to go to the that page to make changes.
 
Hi HiTechCoach

Thanks for your reply I now undersand how this works (great way to make a wizard)

thank you for your help and the example ... you have a real good website there :)


thanks
Rob :)
 

Users who are viewing this thread

Back
Top Bottom