Making a custom Wizard

  • Thread starter Thread starter Jan T
  • Start date Start date
J

Jan T

I have made an Application where I want the user to step through a four
pages Wizard. The Wizard will contain unbound controls and I will use
vba and SQL to update or add new records in my tables. The wizard
should also contain four buttons; Cancel, Previous, Next and Finish.

Does anyone have an example of such a custom made wizard?

Thanks very much in advance.

Jan T.
 
Jan said:
I have made an Application where I want the user to step through a
four pages Wizard. The Wizard will contain unbound controls and I
will use vba and SQL to update or add new records in my tables. The
wizard should also contain four buttons; Cancel, Previous, Next and
Finish.

Does anyone have an example of such a custom made wizard?

Thanks very much in advance.

Jan T.

Use a single form with a TabControl on it having four pages. Set the style of
the Tab Pages to "None". Then use your [Next] and [Previous] buttons to change
the pages.
 
Jan said:
I have made an Application where I want the user to step through a
four pages Wizard. The Wizard will contain unbound controls and I
will use vba and SQL to update or add new records in my tables. The
wizard should also contain four buttons; Cancel, Previous, Next and
Finish.

Does anyone have an example of such a custom made wizard?

Thanks very much in advance.

Jan T.

Use a single form with a TabControl on it having four pages. Set the style of
the Tab Pages to "None". Then use your [Next] and [Previous] buttons to change
the pages.
 
Back
Top