Wizard Template?

ss7thirty

Well-known member
Joined
Jun 14, 2005
Messages
455
Location
New Jersey, US
Programming Experience
5-10
I was wondering if anyone knew where there was a template out there for making a wizard. I am trying to create a form/series of forms/dialogs that will walk someone through a few steps.

I was wondering if there was an easier way to do this rather than having to make like 10 different forms and using them each step by step. I searched in VS.NET for this type of thing but had no luck.

Can anyone help me out here? :confused:


Steve
 
Use a tab control.... put each step on a tab, then just activate the next/previous tab when the user clicks next/previous....

-tg
 
You can use a TabControl but then that doesn't really look like a proper wizard. Just use a single form and have a separate Panel or UserControl for each page. When you press the Next or Previous buttons you just hide or show the appropriate Panel or UserControl. That way you have one form that contains all the data but to the user the display changes with each page.
 
Thanks

That is what I figured I would have to do. I was hoping that there was some sort of template out there for this and it would be a lot easier to create but I guess I actually gotta do some work for once. :(
 
Back
Top