Can I make colors blink on and off?

G

Guest

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
 
G

Guest

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top