vote up 0 vote down star

I'm making a winform in C# using Visual Studio 2008.

Currently, I have a tabcontrol, containing 2 tabs. In the first the, there is a button. When I click it, I must be taken to the second tab.

Problem is, I don't know how. I've tried debugging, looking into al kinds of Properties and messing around with them, but I found nothing that helps.

Does anybody here know how to pull this off?

Extra info: my variables are named tabControl1, textTab and logTab.

I'm in textTab, click on a button there and I want to be taken to logTab. That's it basically.

flag

2 Answers

vote up 3 vote down check

Did you try this?

tabControl1.SelectedTab = logTab;
link|flag
Goddamit... yeah that solved it... so damn simple... thanks for the help – Vordreller Dec 29 '08 at 15:04
vote up 1 vote down

You can set either the SelectedIndex property or the SelectedTab property of the tab control to switch tabs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.