Use the form's Timer event to toggle the label's Visible property. But
I beseech you not to do this unless you really have to, and if you must,
either turn it off after a short period, or provide a quick way for the
user to turn it off. Blinking text is really annoying.
You can have a Static variable in the Timer event procedure that you use
to count the number of times the event has fired. When that count
reaches a certain number "n", you can set both the TimerInterval to 0
and that count to 0. You need to pick some event to turn the blink back
on again by setting the TimerInterval to a nonzero value, after which it
will blink "n" times and turn off.
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.