I don't want users to have access to the navigation pane in a 2007 app. I have the option to show the navigation pane unchecked, but that doesn't hide it. So, I'm locking the navigation pane when the main form opens with this code:
From time to time, the app will create a new table in a remote mdb and then link to that table with:
When that occurs, the navigation pane becomes visible. How can I permanently lock the navigation pane as I could in previous versions of Access?
Thanks,
Sup
Code:
DoCmd.LockNavigationPane True
From time to time, the app will create a new table in a remote mdb and then link to that table with:
Code:
DoCmd.TransferDatabase acLink, "Microsoft Access", DbPath, acTable, strTblName, strTblName
When that occurs, the navigation pane becomes visible. How can I permanently lock the navigation pane as I could in previous versions of Access?
Thanks,
Sup