Making a custom Wizard

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.
 
R

Rick Brandt

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.
 
R

Rick Brandt

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top