Hello, we just upgraded to Access 2010 from Access 2000. Most of my users are volunteers who know nothing about Access or databases and so I like to restrict them to as few options as I can - including MenuBars and ToolBars. In Access 2000 I coded the following to hide (and show) MenuBars...
' Hide Menu bar and the Tool bars
DoCmd.ShowToolbar "Menu Bar", acToolbarNo
DoCmd.ShowToolbar "Form View", acToolbarNo
DoCmd.ShowToolbar "Web", acToolbarNo
DoCmd.ShowToolbar "Print Preview", acToolbarNo
This code worked fine in Access 2000 but doesn't seem to work in Access 2010. Can you tell me how I can hide and show MenuBars/Ribbon in 2010?
Also, can you direct me to a good Weblink which will tell me what programming commands/functions I can use in Access 2010? Thank you for your time.
' Hide Menu bar and the Tool bars
DoCmd.ShowToolbar "Menu Bar", acToolbarNo
DoCmd.ShowToolbar "Form View", acToolbarNo
DoCmd.ShowToolbar "Web", acToolbarNo
DoCmd.ShowToolbar "Print Preview", acToolbarNo
This code worked fine in Access 2000 but doesn't seem to work in Access 2010. Can you tell me how I can hide and show MenuBars/Ribbon in 2010?
Also, can you direct me to a good Weblink which will tell me what programming commands/functions I can use in Access 2010? Thank you for your time.