Help: Changing Tabs with Buttons

Joined
Mar 13, 2006
Messages
12
Programming Experience
Beginner
Okay, I've been creating a Startup Wizard, and I read a piece of advice in another topic about making each page a tab, then just hiding the tabs. But now I don't know how to navigate to each tab with the Previous and Next buttons. I have an idea of it, but I just don't know what procedure to use (meaning Tab.Select(), or Tab.Show() )

If anyone has any advice to give, I would appreciate it.
 
What TabPage to display is a property of the container, ie the TabControl. The property is SelectedTab or SelectedIndex
 
Back
Top