Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hidden Toolbar?

Status
Not open for further replies.

Ielamrani

MIS
Jul 7, 2005
183
US
Hi,
I created a Database for 3 users. In the database they can only see and use a toolbar that I created for them. The problem is one of the user can't see the toolbar when she opens the database, the other 2 users can see the toolbar.
Is it a problem with her computer setting?
Thanks in advance
Ismail
 
Displaying toolbars or not is user dependent. Did you use security? If not, they are all Admins and can display or not display toolbars. You could use

Code:
DoCmd.ShowToolbar "MyToolbarName", acToolbarNo

on a startupform to enforce certain toolbars to display (acToolbarYes) or not (acToolbarNo), but remember the rights of Admins.


Easyit
 
This is what I used in the startupform and it worked for 2 users:
Private Sub Form_Load()
CommandBars("Menu Bar").Enabled = False
CommandBars("Tool1").Enabled = True
End Sub

By the way I did not use Security

Ismail

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top