I have been looking around on the net for a while trying to find out how to do this. I have found, so far, the following:
Application.CurrentDb.Properties("AppTitle") = "my database title here"
Application.CurrentDb.Properties("AllowFullMenus") = False
Application.CurrentDb.Properties("AllowShortcutMenus") = False
Application.CurrentDb.Properties("StartupForm") = "my opening form here"
The above all work fine, however i cannot find any way to set the 'Ribbon Name' and uncheck 'Display Navigation Pane in the current database setting of Access 2007, using VBA.
I would have thought that it would be similar to the method above, but i can't find a proper list of property names that can be set.
Anyone have any ideas?
Application.CurrentDb.Properties("AppTitle") = "my database title here"
Application.CurrentDb.Properties("AllowFullMenus") = False
Application.CurrentDb.Properties("AllowShortcutMenus") = False
Application.CurrentDb.Properties("StartupForm") = "my opening form here"
The above all work fine, however i cannot find any way to set the 'Ribbon Name' and uncheck 'Display Navigation Pane in the current database setting of Access 2007, using VBA.
I would have thought that it would be similar to the method above, but i can't find a proper list of property names that can be set.
Anyone have any ideas?