Tabpage control

brucelim80

Active member
Joined
Apr 20, 2006
Messages
35
Programming Experience
Beginner
hi all,

how do i write a code to select a tabpage of a tabcontrol on VB.net?

I have a tabcontrol with three tabpage name called (test1, test2, test3)


Thank you
 
Use the SelectedTab or SelectedIndex properties of TabControl, or one of the three SelectTab methods.
 
Back
Top