How to jump to specified tab page of Tab Control using C# code ?

2008-08-28


If you wanna write code to jump to specified tab page of a tab control, you can not use Focus() method. or BringToFront(), Show() etc.

The right way is :

this.tabControl1.SelectedTab = this.tabPage3 ;