Acccess 2007

J

Jone

How do I hide whole database window when the database opens and what code do
I type in to unhide the window

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/com...-9953-18d76151d7d6&dg=microsoft.public.access
 
A

Allen Browne

To prevent the Nav Pane from showing when the database starts, go to:
Office Button | Access Options | Current Database
In the Navigation section, uncheck the box for:
Display Navigation Pane.

You may be able to show the nav pane later with:
DoCmd.SelectObject acForm, Me.Name
However, that won't work if the Forms section of the nav pane is collapsed.
 
J

Jone

Allen Browne said:
To prevent the Nav Pane from showing when the database starts, go to:
Office Button | Access Options | Current Database
In the Navigation section, uncheck the box for:
Display Navigation Pane.

You may be able to show the nav pane later with:
DoCmd.SelectObject acForm, Me.Name
However, that won't work if the Forms section of the nav pane is collapsed.

--
Allen Browne - Microsoft MVP. Perth, Western Australia

Reply to group, rather than allenbrowne at mvps dot org.



Thank You
 
Top