Minimizing the Navigation Pane

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
 
D

Damon Heron

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top