HIDE DEFAULT MENU BAR

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

Guest

Hello. Is there a way to hide the defalt menu bar (the one with the File,
Edit menus, etc.)? I know I can hide other menus, but I'm not sure if it
ispossible with this one. Thanks.
 
in message:
Hello. Is there a way to hide the defalt menu bar (the one with the File,
Edit menus, etc.)? I know I can hide other menus, but I'm not sure if it
ispossible with this one. Thanks.

Most of the time when you need to hide the main Access menu bar, the
best thing to do is to create your own custom menu bar and specify that
one as the main one to use throughout the application. Once created you
can go to Tools | Startup and select it from the option called "Menu Bar."

For help on creating custom menu bars and toolbars, please review the
following information available here:

http://www.ltcomputerdesigns.com/JCReferences.html#MenuBars

Another option, although somewhat "kludgy" is to go to Tools | Startup
and just uncheck the "Allow Full Menus" option. Doing just this and nothing
else will present a very limited main menu bar. This is really limiting throughout
the application, but perhaps it will work in your situation.
 
Dan said:
Hello. Is there a way to hide the defalt menu bar (the one with the File,
Edit menus, etc.)? I know I can hide other menus, but I'm not sure if it
ispossible with this one. Thanks.


DoCmd.ShowToolbar "Menu Bar", acToolbarNo
 
Back
Top