Hiding objects

itmasterw

Registered User.
Local time
Today, 05:13
Joined
Oct 31, 2005
Messages
45
Hi,

I am working in MS Access 2010
I found some basic code to hide the ribbon, and I could just go into options to do this too. However, either way I want to be able to hid the ribbon, and still keep the quick Access menu that is above it.
I cannot find how to do this does anyone have any ides.

Thank you
 
Here is what I use to hide it all. Maybe a combination of some of these helps you or at least you know where to find the commands that do what you want.

Code:
 DoCmd.ShowToolbar "Ribbon", acToolbarNo
    DoCmd.ShowToolbar "Menu Bar", acToolbarNo
    DoCmd.RunCommand acCmdWindowHide
    DoCmd.RunCommand acCmdHideMessageBar
 
Thanks these help, but I need away, if possible, to hide the Ribbon but keep the Quick Access toolbar.
 

Users who are viewing this thread

Back
Top Bottom