D dream Registered User. Local time Today, 13:46 Joined Sep 3, 2003 Messages 38 Sep 8, 2003 #1 Hi, can the access do a timer that make a image disappear and appear again as the same as what VB can do.
Hi, can the access do a timer that make a image disappear and appear again as the same as what VB can do.
W WayneRyan AWF VIP Local time Today, 13:46 Joined Nov 19, 2002 Messages 7,122 Sep 8, 2003 #2 dream, Sure use the form's timer event and make the visible property of the image toggle between True and False. Wayne
dream, Sure use the form's timer event and make the visible property of the image toggle between True and False. Wayne
D dream Registered User. Local time Today, 13:46 Joined Sep 3, 2003 Messages 38 Sep 8, 2003 #3 Wayne, How but i've try using the time interval in the form but it wont show me the blink
W WayneRyan AWF VIP Local time Today, 13:46 Joined Nov 19, 2002 Messages 7,122 Sep 8, 2003 #4 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
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
D dream Registered User. Local time Today, 13:46 Joined Sep 3, 2003 Messages 38 Sep 8, 2003 #5 Wayne, ok thanks i'll try
D dream Registered User. Local time Today, 13:46 Joined Sep 3, 2003 Messages 38 Sep 8, 2003 #6 Wayne, Great! its work.. Thanks alot!!!