This will only cause an image to appear to blink by flashing on and off. If
you really want to use an animanted GIF follow the other suggestions. This
trick also has a flaw in that the blinking will only occur if nothing else
is happening (i.e. the database is idle). If you click and hold the mouse
button, the blinking stops or if you have a complex function that runs, the
blinking will stop until the form with the picture has the focus again. If
you still want to use it heres the trick.
In your form, create in image field with the picture you want. Size it and
put in where you want. Then under the properties tab of the form, the box
in the top left corner of the form, under the events tab, find Timer
Interval. Set this to the time you want to blink (in milliseconds). The
smaller the number the quicker the blinking. Then under On Timer click on
the elipses to the right of it to take you to the code page. Put in this
code:
Me.NameOfImage.Visible = not(Me.NameOfImage.Visible)
Change NameOfImage to the name you gave the image object. Close the windows
and view your form to see the blinking image.
Kelvin Lu