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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Start-up Option - hide database window, doesn't always work 1

Status
Not open for further replies.

JoeF

Technical User
Nov 30, 2000
54
US
I created a database and don't want the users to see the database window. I have the startup options set so that the database opens to a form on startup and the database window is not shown. When you first open database, this works fine. However, if you close the form (leaving Access open) and then open the database back up, the start-up options no longer apply. How do I prevent this from happening?
 
You could use code to hide it using the 'on open' of your first form:

CurrentDb.Properties("StartUpShowDBWindow") = False
Mike Rohde
rohdem@marshallengines.com
 
disable the close button on your startup form, or add code to Quit Access if the user closes your form other than by the method(s) you want them to.

PaulF
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top