How can i create a splash screen on microsoft access 2007?
To create something resembling a splash screen in Microsoft Access, you could do the following: 1. Create a new form and design it to look like the splash screen you are wanting. 2. Go to your macros and create a macro named “AutoExec”. This macro should bypass startup options and anything you include in it will run when your database is opened. 3. In the macro, set the first event to “OpenForm” and fill in the appropriate fields to select your form. 4. In the macro, run code like the following, this will delay the macro from completing, may be able to do other ways also (you may have to put it in a module then run the module): “Dim x As Date x = Now() Do While DateDiff(“n”, x, Now()) < .0667 'NUMBER IS FRACTIONS OF A MINUTE TO DISPLAY Loop 5. For the third event in the macro choose, "Close" and choose the form to close.