How do i make a wizard type GUI?

Gatzy118

New member
Joined
Aug 14, 2008
Messages
2
Programming Experience
1-3
hi, i was wondering how to make a gui that works like a setup.exe. Where you have a page of options then you click next or back or cancel or finish etc thanks everyone
 
I would use a set of panels and of course two buttons for showing the next (or previous) panel in the set.

What I would also recommend is making a panel array in code consisting of the panel's that are on the form, this way you can have an integer that's simply the index of the current panel and the button's would only need to increment or decrement the integer.
 
Back
Top