splash screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a splash screen for my database by creating a bitmap file .bmp ,giving it the same name with my database and storing them in the same directory

Now whenever the database is open, the .bmp file opens first. My problem is that i want to delay it to 1 or 2 seconds before is vanishes, Is that possible?
 
Not using the bitmap, no. You can have an Access form splash screen within
the MDB, and control the time that is displayed using the Timer event and
the TimerInterval property.

--
Brendan Reynolds (MVP)
http://brenreyn.blogspot.com

The spammers and script-kiddies have succeeded in making it impossible for
me to use a real e-mail address in public newsgroups. E-mail replies to
this post will be deleted without being read. Any e-mail claiming to be
from brenreyn at indigo dot ie that is not digitally signed by me with a
GlobalSign digital certificate is a forgery and should be deleted without
being read. Follow-up questions should in general be posted to the
newsgroup, but if you have a good reason to send me e-mail, you'll find
a useable e-mail address at the URL above.


Pango said:
I have created a splash screen for my database by creating a bitmap file
..bmp ,giving it the same name with my database and storing them in the same
directory.
Now whenever the database is open, the .bmp file opens first. My problem
is that i want to delay it to 1 or 2 seconds before is vanishes, Is that
possible?
 
As Brendan says, you cannot control how long the bitmap is displayed for.

Try using the bitmap as now and placing it on a form which is the first to
open when your database opens, close the form on the timer event.


--
Terry Kreft
MVP Microsoft Access


Pango said:
The problem is that i want the spalsh screen to open before access comes
up.
 
Back
Top