Question Minimize navigation pane and upper tabs

jleval

Registered User.
Local time
Yesterday, 21:04
Joined
May 16, 2012
Messages
53
Is there a way to minimize the navigation pane and the upper tabs on start up? I have several big forms that don't seem to fit unless these are minimized. Your help is greatly appreciated.:)
 
Okay, this works for the navigation pane, but how about the ribbons or tabs in the top of access. Is there a way to minimize those as well
 
To hide tabs:
To go Access Options --> Current Database --> Remove the tick in "Display Document Tabs"

To hide the ribbon:
DoCmd.ShowToolbar "Ribbon", acToolbarNo
 
To hide tabs:
To go Access Options --> Current Database --> Remove the tick in "Display Document Tabs"

Just out of interest, there is no VBA way to perform this tweak?
 
You can hide/unhide the ribbon completely:

DoCmd.ShowToolar "Ribbon", acToolbarNo

There's a programmatic way of minimizing the ribbon using a couple of APIs but I can't find the code at the moment. I've not done anything Access in a long while. If I find it I will let you know.
 

Users who are viewing this thread

Back
Top Bottom