blinking text

diversoln

Registered User.
Local time
Today, 04:28
Joined
Oct 8, 2001
Messages
119
Is there a way to make text on a form blink to attract attention ?
 
In the On Timer event of your form enter the following...

If Me.CONTROLNAME.Visible = True Then
Me.CONTROLNAME.Visible = False
Else
Me.CONTROLNAME.Visible = True
End If

Then set the form's Timer Interval so that it blinks as quickly as you want it to. 3000 = 3 seconds.

Good luck!

Scott
access_junkie@hotmail.com
 
groovy - this worked great !!!!
 

Users who are viewing this thread

Back
Top Bottom