Splash Screen

T

Terry

I use Access 2007. I have created a substitute splash screen for an
application. It works great, but it only shows "Splashes" for about 1
second. Is there a way to extend that to 3 or 4 seconds?
Terry
 
A

Allen Browne

Terry said:
I use Access 2007. I have created a substitute splash screen for
an application. It works great, but it only shows "Splashes" for
about 1 second. Is there a way to extend that to 3 or 4 seconds?


See:
Splash screen with version information
at:
http://allenbrowne.com/ser-53.html

The idea is to create a 'splash' form, and control it from your startup form
in Access, so you can decide how long you want it open for. The example
gives 2 seconds. Change this line if you want it longer:
Const lngcSeconds = 2&
 
Top