Can I make colors blink on and off?

P

paulpenta

I have a command button whose Caption I would like to blink on and off to
call the user's attention to it if certain conditions are met. I think I'm ok
on the conditions, I just don't know how to make the color blink.

Thanks
 
O

Ofer

A prev post given by Lynn Trapp on the same subject
Use the forms Timer event with code like this:

Me.lblBlink.Visible = Not Me.lblBlink.Visible

Set the Timer Interval to the appropriate number depending on how fast you
want the label to blink. 1000 = 1 second
 
Top