Hiding Navigation (1 Viewer)

CedarTree

Registered User.
Local time
Today, 02:11
Joined
Mar 2, 2018
Messages
404
Hi - using this code below which works for me, but only partially works for others on my team (ribbon and system objects are hidden, but navigation pane is still visible). Any suggestions?

Code:
DoCmd.ShowToolbar "Ribbon", acToolbarNo 'hides ribbon
DoCmd.SelectObject acMacro, "AutoExec", True 'selects nav pane
DoCmd.RunCommand acCmdWindowHide 'hides nav pane
Application.SetOption "Show System Objects", False 'hides usys objects
 

Users who are viewing this thread

Top Bottom