remove menu

J

JIM.H.

Hello,
I uses startup in access to launch the form. Is there any
way I can remove menu?
Thanks,
Jim.
 
A

Albert D. Kallal

You might try just placing a menu with just exit on it.

After all, looking at every program I have on my pc...they all have a menu
bar....I would think your application could use one too!

If you want to see a example mdb where the full ms-access interface is
hidden, download the 3rd example at:

http://www.attcanada.net/~kallal.msn/msaccess/DownLoad.htm

Once you try/play with the application. Exit, and then re-load while holding
down the shift key. You then can see the settings I used in the
tools->start-up to accomplish the above.
 
K

Kai Apel

you can hide the menu! use that code for it:

Function HideMenu()
On Error Resume Next
Application.CommandBars("Menu Bar").Enabled = False
End Function

or see that page - is only in german

http://www.donkarl.com/
 
J

JIM.H.

Kai,
This remove menu bar for other access applications too,
now I could not get menu bar when I launch access, how can
I get it back?
Thanks,
Jim.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top