Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Blinking text on a form

Status
Not open for further replies.

dduva

Programmer
May 16, 2001
38
US
Is there a way to make text blink on a form?

Thanks
 
Add a timer to the form. Set the interval of the timer to the blink period. If the chosen item to blink is label1, then add this code to the timer event:

thisform.label1.visible = !(thisform.label1.visible)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top