Acccess 2007

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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

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

Back
Top