Why can I see tabs, but my users can't

  • Thread starter Thread starter Rosemary
  • Start date Start date
R

Rosemary

I have a tab control with 6 tabs on it. I see and can move through the tabs
with no problem, but my users only see the 1st tab.
 
That's a strange one. Do you also see the tabs when you run the form (as
opposed to seeing them in Design View)? If you don't maybe your tabs' visible
property is set to No.
 
I would think there has to be some VBA code that is setting the visible
property of the tabs, possibly based on userid. Go into the VBA code for that
form and do a search on tabName.visible, where 'tabname' is the name of one
of the individual tabs that is being hidden for that user.
 
Back
Top