Hiding file tab on the ribbon menu

monplankton

Registered User.
Local time
Today, 11:24
Joined
Sep 14, 2011
Messages
83
Hi, moving my database from 2003 to 2010 and I'm wanting to use custom tool bars that I created in 2003 to run searches Doing this I hide the ribbon, including the 'File' tab is this possible?
 
You can hide the whole ribbon by using:

Code:
DoCmd.ShowToolbar "Ribbon", acToolbarNo 'Hides ribbon
DoCmd.ShowToolbar "Ribbon", acToolbarYes 'Shows Ribbon

Don't know if you can just hide on tab though...
 

Users who are viewing this thread

Back
Top Bottom