Tool bar

  • Thread starter Thread starter Alex Martinez
  • Start date Start date
A

Alex Martinez

Hello,

I have a toolbar in my database, which I develop in California shows up
without a problem, but the user in Texas doesn't see the toolbar we share a
common server. In Tools -> Startup I have the toolbar listed as default.
Now the user only sees the forms in the database I don't want to tell him to
press the shift key and open the database showing all the tables, queries,
macro, etc at this time. How can I get the user to see the toolbar. Thank
you in advance.
 
You might be able to load the toolbar by code through an autoexec marco
or you might be able to update his app and use the code in VB.
Be sure to swap the true/false statements to opposite of what they are now
when the database closes.
Hope this helps!

With Application
'use if you need to hide the default toolbar
Application.CommandBars.ActiveMenuBar.Enabled = False
CommandBars("mytoolbar").Visible = True
End With
 
Back
Top