View Full Version : Startup form


IanT
02-10-2002, 06:30 AM
I want to run a start up form that appears only when the data base starts for about 10 seconds, then closes, and opens a switch board. I no I could do this with code, but not sure how!!!!!

Rich
02-10-2002, 06:44 AM
Have a look at some of the samples supplied with access, Northwind, Solutions etc, they have splash screens.

DJBummy
02-10-2002, 07:34 PM
First create the startup form, it can be unbound. In the On timer event for the form enter code something like this.

Docmd.Close
Docmd.OpenForm "Your Switchboard Name"

In the timer interval enter 10000

Note: 1000 = 1 sec

Go to Tools and Startup. There is a Display/Form/Page: combo box. Enter your startup form here.

That should be it.

away2play
02-11-2002, 05:07 AM
The other option is to create a *.bmp image with the same name as your database and in the same dir. This will then be your splash screen each time you enter your database.