Hiding some tabs of tab control

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

Guest

Hello,

I would like to hide some of the tabs of my tab control on load, and make
them visible only later via another event.

How do I hide individual tabs vs. the entire tab control?

Thank you.
 
Niniel said:
Hello,

I would like to hide some of the tabs of my tab control on load, and make
them visible only later via another event.

How do I hide individual tabs vs. the entire tab control?

Thank you.



Private Sub UserForm_Activate()
Me.MultiPage1.Pages(1).Visible = False
End Sub
 
Each tab has it's own name. For example, I have one with two tabs named
"Tab1" and "Tab2", I can then say "me.tab1.visible = false"
 
Cool. Thank you both.

Greg Toronto said:
Each tab has it's own name. For example, I have one with two tabs named
"Tab1" and "Tab2", I can then say "me.tab1.visible = false"
 
Back
Top