Hiding the navigation pane
问题 OK, so I need to hide the navigation pane but struggling. I am using a module to hide it and have tried the following but to no avail: DoCmd.NavigateTo "acNavigationCategoryObjectType" DoCmd.RunCommand acCmdWindowHide I have also tried: DoCmd.SelectObject acTable, , False Neither are working - Any ideas? 回答1: try this: DoCmd.SelectObject acTable, , True DoCmd.RunCommand (acCmdWindowHide) if that doesn't work, use a table name that exists instead of skipping that second argument in docmd