Minimizing the Navigation Pane

  • Thread starter Thread starter LA Lawyer
  • Start date Start date
L

LA Lawyer

I want to MINIMIZE, but not close, the Navigation Pane (on the left).

How do I minimize the Navigation Pane?

I do have the comments to hide and unhide the Navigation Pane, which are:

To hide the pane use:

DoCmd.RunCommand acCmdWindowHide

To Show the pane:

DoCmd.SelectObject acTable, , True
 
To do it in code, you could use:
SendKeys "{F11}"
in some event.

Damon

I want to MINIMIZE, but not close, the Navigation Pane (on the left).

How do I minimize the Navigation Pane?

I do have the comments to hide and unhide the Navigation Pane, which are:

To hide the pane use:

DoCmd.RunCommand acCmdWindowHide

To Show the pane:

DoCmd.SelectObject acTable, , True
 
Back
Top