Presenting and hiding the Naviagation pane

  • Thread starter Thread starter Gary G. Little
  • Start date Start date
G

Gary G. Little

I can press a key sequence (Ctl+N) and get the Navigation pane, but is there
a mechanism to hide it via a key stroke, such as Ctl+Shift+N?
 
No, but you may be able to create one using an AutoKeys macro. Create a
function in a standard module named something like basUtilities (aircode):

Public Function HideNavPain()
DoCmd.SelectObject acTable, "MSysObjects", True
DoCmd.RunCommand acCmdWindowHide
End Function

You can change acTable to acForm and use one of your form names. Now create
a macro and name it AutoKeys. That name is an important reserved word and
must be used.

In the Macro Name column enter:

^+N

exactly as above. The Action is:

RunCode

and the function will be:

HideNavPain()
 
Dear Arvin:

Is the name of that function an editorial comment? A Freudian slip? Or just
a typo... :)

Cheers!
Fred Boer
 
Back
Top