There are a couple of ways you could do select a tab page programmatically:
[C#]
//Select the second Tab Page
this.tabControl.SelectedTab = this.tabPage2
or
//Select Second Tab
this.tabControl.SelectedIndex= 1;
[VB.NET]
’Select the second Tab Page
Me.tabControl.SelectedTab = Me.tabPage2
or
’Select Second Tab
Me.tabControl.SelectedIndex= 1
Share with