Hidding toolbars

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello.
I have a db that is used by several users. I want to disable the SHIFT key
when another user opens the db and hide all the Access toolbars.
I have a form with a password field and i'd like that if a user enters the
correct password, all the toolbars became visible.

How can i do this?

Thanks
 
Luis said:
I have a db that is used by several users. I want to disable the SHIFT key
when another user opens the db and hide all the Access toolbars.
I have a form with a password field and i'd like that if a user enters the
correct password, all the toolbars became visible.


I don't know what you're thinking with the Shift key,
possible the AllowBypassKey property?? But that's not
something you turn on/off for the current session.

You can hide Tool/Menu bars with this kind of thing:

DoCmd.ShowToolbar "Menu Bar", acToolbarNo
 
Back
Top