gojets1721
Registered User.
- Local time
- Yesterday, 21:37
- 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:
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.
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.