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

Making Splash screens on Open

Status
Not open for further replies.

mybers

IS-IT--Management
Mar 24, 2004
62
0
0
PH
Hello everyone!

How can I make a Dialog form splash on the screen for a couple of seconds...

Thanks

francis
 
Make a form however you want it... in your start up make this your default form.

In the properties of your "Splash Screen" go to event.

Timer Interval: Enter a number here. Each 1000 = about a second

On-Timer: Put the code here to close the splash screen and open whatever form you want next in line.

Hope This Helps.

Bill
 
Hi Bill

I ve open a new form from the splash screen form after it pop out for few seconds, now How do I write a simple code to close the splash screen automatically after 2 seconds?

Thanks

mybers
 
How did you open the new form? From a command button, or using the On_Timer Event?

Bill
 
bill,

I used the On_timer Event.

 
Well in the On Timer Event put this at the end of your coding:

DoCmd.Close acForm, "FormName", acSaveNo

Where "FormName" is the name of your "splash screen"

Bill

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top