Changeing the top most tab

  • Thread starter Thread starter Tomomichi Amano
  • Start date Start date
T

Tomomichi Amano

Hello.
I am useing a "tabControl" and couple of "tabPages".

How do I change the top-most tag of the tabControl? (<- not the
defalt tag, but how to change the tag during the program)

Thanks in advance!
 
Tomomichi said:
Hello.
I am useing a "tabControl" and couple of "tabPages".

How do I change the top-most tag of the tabControl? (<- not the
defalt tag, but how to change the tag during the program)

Thanks in advance!


tabControl1.SelectedTab = tabPage1;
or
tabControl1.SelectedIndex = 1;
 
Back
Top