Hiding some tabs of tab control

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

Guest

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

Guest

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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top