Close ACCESS object window

Jacob Mathai

Registered User.
Local time
Today, 22:44
Joined
Sep 6, 2001
Messages
546
I use WindowsXP and ACCESS2007.

I would like to programatically close the ACCESS object window on form Load.

How can I do it?

I know I can close it using 'Access options' on Microsoft buttoons.
I would like to do it programatically.

Any help will be appreciated.
 
You mean the Navigation Pane?
Allen Browne said:
You can hide the nav pane by selecting any object in it, and then hiding it.
Same as previous versions:
DoCmd.SelectObject acForm, , True
RunCommand acCmdWindowHide
 
Thanks a lot. It worked.
 

Users who are viewing this thread

Back
Top Bottom