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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

text box blink

Status
Not open for further replies.

Yeap

Programmer
Jul 5, 2004
12
RO
is there posibile to make the text from a textbox, or a label blink in vfp 5?
 
Add a timer control and set the interval to how often you want it to blink, in milliseconds.
Then in the the 'timer' event add code something like:
Code:
IF Thisform.text1.BackColor == RGB(0,0,0)
   Thisform.text1.BackColor = RGB(255,255,255)
ELSE 
   Thisform.text1.BackColor = RGB(0,0,0)
ENDIF

-Dave Summers-
[cheers]
Even more Fox stuff at:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top