tab control on tab control

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

Guest

Hello all,

Can I create a tab control with in another tab control page?

The only way I have it to work is "MyTab.visible = True" once you click on
the parent tab, but it would be easier to mantain if I could have a parent
child relationship.

Thanks!
 
You can nest tabcontrols but yuo will have to maintain the parent/child
relation yourself by using code.
 
Mark said:
Hello all,

Can I create a tab control with in another tab control page?

The only way I have it to work is "MyTab.visible = True" once you
click on the parent tab, but it would be easier to mantain if I could
have a parent child relationship.

Thanks!

You either have to do what you are doing or place the subordinate TabControl
within a subform.
 
Back
Top