making a timer on the image

dream

Registered User.
Local time
Today, 19:49
Joined
Sep 3, 2003
Messages
38
Hi,

can the access do a timer that make a image disappear and appear again as the same as what VB can do.
 
dream,

Sure use the form's timer event and make the visible
property of the image toggle between True and False.

Wayne
 
Wayne,

How but i've try using the time interval in the form but it wont show me the blink
 
dream,

Set the timer interval to 500.

In the OnTimer event, put:

Code:
If Me.YourObject.Visible = True Then
   Me.YourObject.Visible = False
Else
   Me.YourObject.Visible = True
End If

Experiment with the 500 value, that is half a second.

Wayne
 
Wayne,

Great! its work.. Thanks alot!!!
 

Users who are viewing this thread

Back
Top Bottom