Opening Access without Menus displayed

  • Thread starter Thread starter Piri
  • Start date Start date
P

Piri

Access 97
I have created a simple data lookup form for a customer to look up his
own jobs in a shared database - there is only the one form in the
mdb(e) that auto-opens on application startup. I have unchecked all
the Startup functions etc.
The program auto-opens the form okay but there is the default menu bar
displayed across the top of the application window. The tool bars do
not show.

Is there a way to open the program and not show ANY menus as well?
My form close event also quits the application.

I intend to provide this as an mde.

Any ideas gratefully appreciated
Piri
 
Piri said:
Access 97
I have created a simple data lookup form for a customer to look up his
own jobs in a shared database - there is only the one form in the
mdb(e) that auto-opens on application startup. I have unchecked all
the Startup functions etc.
The program auto-opens the form okay but there is the default menu bar
displayed across the top of the application window. The tool bars do
not show.

Is there a way to open the program and not show ANY menus as well?
My form close event also quits the application.


DoCmd.ShowToolbar "Menu Bar", acToolbarNo
 
Back
Top