Switchboard defaults

U

user

I am trying to show only the main switchboard when the database file is
opened. I went to Tools/Startup and unchecked display database window.
However, when the file is opened the main swithboard opens, but the
database window also opens in minimized view(bottom left on screen).

Any suggestions? Thanks in advance.
 
J

Joan Wild

Open the Switchboard form in design view, then use View, Code. Look in the
Form Open event. You will see

DoCmd.SelectObject acForm, "Switchboard", True
DoCmd.Minimize

This is causing the db window to appear and then minimize, which occurs
after your startup options.
Just remove or comment out these lines and it should work.
 

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

Top