How to jump to specified tab page of Tab Control using C# code ?
Filed in .NET on Aug.28, 2008
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 ;
Tags: C#

Leave a Reply