In case its useful, I'll provide code to show/hide & minimise the navigation pane
Add the following code to a standard module:
Code:
Public Function MinimizeNavigationPane()
DoCmd.NavigateTo "acNavigationCategoryObjectType"
DoCmd.Minimize
End Function
Public Function ShowNavigationPane()
DoCmd.SelectObject acForm, , True
End Function
Public Function HideNavigationPane()
DoCmd.NavigateTo "acNavigationCategoryObjectType"
DoCmd.RunCommand acCmdWindowHide
End Function
Now add the following to your form to minimise the navigation pane when your form opens
Code:
Private Sub Form_Load()
MinimizeNavigationPane
End Sub