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

Longer Pause On Startup "Splash"

Status
Not open for further replies.

mishbaker

Technical User
Jan 17, 2004
94
US
I created a little BMP image to show when Access is starting up my database. But you only see this quick "subliminal" flash of that splash screen then the database opens. I was wondering if there is some way to delay on that splash screen just a second or so. :)



All lessons learned from the School of Hard Knocks........at least tuition is cheap.
 
Remove some RAM?

Seriously, consider making a similar Access form that opens when your mdb opens. You can use the Timer to automatically close after a specific interval.

Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]
 
1. Create a form with your BMP on top. (Insert Picture)
2. On the forms properties Event Tab at the bottome there is two options one is ON TIMER and the other is TIMER INTERVAL set timer interval to 2000 or 3000, (you can play with this until your screen displays as long as you like)[/i.
3. Place this code in the On Timer.
DoCmd.Close
DoCmd.OpenForm "Menu 1"

You can do this by clicking the box on the far right of the ON TIMER that has the three little dots. That takes you into a screen where you want to select Code Builder. It will automatically take you where you need to be. Place the above code there. Place this code between the Private SubForm_Timer() and End Sub.

In my example I'm telling the system to close the form and open another form call "Menu 1" You can replace the Menu 1 with what ever direction or form you want the code to open.

I hope this helps.

Tp
 
Thanks,

I removed some RAM but it still loads too fast. I'm just gonna have to go with creating the new form.


Thanks again guys!

All lessons learned from the School of Hard Knocks........at least tuition is cheap.
 
Read tpearo's answer again before you do!


Program Error
Programmers do it one finger at a time!
 
I assume mishbaker was kidding about removing the ram as much as I was kidding about even suggesting it.

Duane MS Access MVP
[green]Ask a great question, get a great answer.[/green] [red]Ask a vague question, get a vague answer.[/red]
[green]Find out how to get great answers faq219-2884.[/green]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top