Opening Bitmap

  • Thread starter Thread starter Suthee
  • Start date Start date
S

Suthee

If you have a bmp image in the same folder as your database and it has the
same name as your database, Access will briefly display the image. The
problem is that "briefly" is about a millisecond, does anyone know how to
extend the time the image is displayed to about 1.5 seconds?

Thx
 
Suthee said:
If you have a bmp image in the same folder as your database and it
has the same name as your database, Access will briefly display the
image. The problem is that "briefly" is about a millisecond, does
anyone know how to extend the time the image is displayed to about
1.5 seconds?

About the only way I know is to display the image in an unbound image
control on a startup form instead, with a TimerInterval of 1500
(milliseconds) and a Timer event procedure that closes the form (and
presumably opens the next form). You can use the form's Open event to
set the image control's Picture property to the path to the bitmap file.
 
Back
Top