Navigate from TabPage1 to TabPage2 Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have a TabControl that has 1 TabPages on it.
I would like to have a button on TabPage1 that goes to TabPage2. Kinda like
a Next> button.

I can get this to work using the .BringToFront and .Show methods, but the
Tab at the top doesn't change.

How do I get the tab at the top to be the active tab?

Thank you
Ron.
 
Capt_Ron said:
I have a TabControl that has 1 TabPages on it.
I would like to have a button on TabPage1 that goes to TabPage2. Kinda
like
a Next> button.

Set the tabcontrol's 'SelectedTab' or 'SelectedIndex' property accordingly.
 
Back
Top