AD
Administrator
Syncfusion Team
December 29, 2003 06:36 PM UTC
Use myTabControl.SelectedIndex or myTabControl.SelectedTab properties to select a tab.
cheers,
- Reddy
AD
Administrator
Syncfusion Team
December 29, 2003 06:42 PM UTC
Hi Doug,
Here are a couple of ways you could do select a tab programmatically:
//Select Second Tab
this.tabControlAdv1.SelectedTab = this.tabPageAdv2;
or
//Select Second Tab
this.tabControlAdv1.SelectedIndex= 1;
Regards
Arun