Using Tab Control

  • Thread starter Thread starter Gary Nastrasio
  • Start date Start date
G

Gary Nastrasio

In my application, I'd like to have a tab control with say, 5 tabs.
However, I only want to change which tab is displayed through code; in
other words, the tabs are not visible to the user (disabled is not an
option). Is this possible? If not, any suggestions are welcome to
mimic this behaviour.

If it makes a difference, I'm using WindowsForms with Managed C++.

Thanks!

Gary
 
Tabpages are basicly just Panels, so I would suggest you use a collection of
Panels.
 
Back
Top