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()