tabcontrol-bringing tabpage to front programatically

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

how do i bring tabpages, which are part of a tabcontrol, to the front on the tabcontrol programmatically. I would like to bring specific tabpages to the front depending on user actions with the user clicking on the tab. thanks.
 
Hi Don,

Than it is just
TabControl1.SelectedTab = tabpageName

You can also use

TabControl1.SelectedIndex = 3

However because of that anoying behaviour of the tabs on a tabpage I would
not use that last one.

I hope this helps?

Cor
 
Back
Top