Programatically selecting the Page of a Tab Control

B

Brendan Reynolds

Set the Value property of the tab control. It's zero-based, so 0 is the
first page, 1 is the second, etc.

Me.NameOfTabControl.Value = 2

.... will display the third page of the tab control.
 
Top