Hiding some tabs of tab control

N

Niniel

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.
 
M

moon

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
 
G

Greg Toronto

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"
 
N

Niniel

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"
 
Top