diversoln
10-24-2001, 09:52 AM
Is there a way to make text on a form blink to attract attention ?
|
View Full Version : blinking text diversoln 10-24-2001, 09:52 AM Is there a way to make text on a form blink to attract attention ? scottfarcus 10-24-2001, 09:59 AM 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 diversoln 10-24-2001, 11:10 AM groovy - this worked great !!!! |