J JIM.H. Feb 3, 2004 #1 Hello, I uses startup in access to launch the form. Is there any way I can remove menu? Thanks, Jim.
A Albert D. Kallal Feb 3, 2004 #2 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.
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 Feb 3, 2004 #3 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/
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. Feb 3, 2004 #4 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.
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.