Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

DB Window Appears on close

Status
Not open for further replies.

bradles

Technical User
Sep 15, 2002
110
AU
Working with a DB that has the 'Display Database Window' option unchecked in the Startup options. Unfortunately the Database Window is displayed when the DB is closing after any forms are maximized.

Looks very unprofessional.

No special procedures are called or used to close the DB.

Any clues?
 
Seems it even happens without closing as well, after maximizing any form in VBA.

Feel like I'm missing something very easy!
 
Hi,

Try this: Create an event procedure on open form with the following code:
DoCmd.SelectObject acTable, , True
DoCmd.RunCommand acCmdWindowHide

Hope it heps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top