Help with Nav Pane Minimizing Issue (1 Viewer)

gojets1721

Registered User.
Local time
Today, 07:05
Joined
Jun 11, 2019
Messages
430
I have a bit of a unique question. I want my nav pane to be minimized on load of the DB.

I accomplished this by using this thread: https://www.access-programmers.co.u...navigation-pane-in-a2007.220915/#post-1127715

Essentially, I placed this code in the 'on load' event of my launch form:

Code:
    DoCmd.NavigateTo "acNavigationCategoryObjectType"
    DoCmd.Minimize

It works to minimize the nav pane on load, but the only issue is that if the user opens up the nav pane, it doesn't use my custom grouping. It sorts it under the default "All Access Objects" which is a mess.

Is it possible to somehow specify that, if the nav pane is opened, it opens under my custom group?

My custom group literally only shows the launch form as a way for the user to get back there if they really need to. All other objects are hidden. That's why I don't want to hide the nav pane altogether.
 

June7

AWF VIP
Local time
Today, 06:05
Joined
Mar 9, 2014
Messages
5,472
Users should not even interact with the Nav Pane. Getting back to launch form should be managed by other means. Why would they need to return to it?
 

Users who are viewing this thread

Top Bottom