Tab Control - how to move from one tab to anotherone

M

Mike

Hi,

How I can, on btnClick move from one tab to another, for e.g.
from tab1 go to tab2 and make tab1 disabled.

Actually, I am trying to do some kind of wizard.

Thanks for help.
 
C

Chris Dunaway

Hi,

How I can, on btnClick move from one tab to another, for e.g.
from tab1 go to tab2 and make tab1 disabled.

Actually, I am trying to do some kind of wizard.

Thanks for help.
From the msdn documentation:

http://msdn2.microsoft.com/en-us/library/system.windows.forms.tabcontrol.aspx

Take a look at the SelectedIndex or SelectedTab properties of the tab
control. Or use the SelectTab and DeselectTab methods. You can also
try calling the Select method on any TabPage.

Chris
 

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