Database Window Will Not Stay Hidden

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

Guest

Recently, my database window has been showing whenever I start a program,
even though it's set for hidden. This happens on both of my separate DBs.
I've tried checking and unchecking the box, and compacting/repairing. But
since it happens to two separate ones, I'm thinking there's a problem with
Access itself, not my apps. Can anybody help me out?

Thanks!

Mike
 
Three possibilities come to mind:

First one. Maybe this?

ACC2002: Database Window Is Displayed When You
Click the Application Icon Even Though You Turned Off
the "Display Database Window" Startup Option
http://support.microsoft.com/?id=313915

Second. If you are using the using the built-in Switchboard Manager,
the Switchboard Form's Open event probably has some code similar to this:

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

This code will minimize the Database Window, however, it will override any
setting you have in the Startup Properties to hide the window. So find those
two lines of code in the form's code module and delete them. Please note
that you may have similar code elsewhere even if you do not use the SBM.

Third:
This is written for Access 2002, but one other thing to check:
ACC2002: The Database Window Is Displayed When a
Database Is Opened from the Most Recently Used File List
Even After You Clear the "Display Database Window" Check Box
http://support.microsoft.com/?id=304092

--
Jeff Conrad
Access Junkie - MVP
http://home.bendbroadband.com/conradsystems/accessjunkie.html
http://www.access.qbuilt.com/html/articles.html

in message:
 
Follow Up:

Found out the problem: I had chosen an application icon in the start-up
options. When I deleted the link, the DB window stayed closed.

Now, is there any way to keep the icon, and keep the window closed? Thanks!
 
Back
Top