Hi there! I help doing label.caption blink a "Warning!" if somebody know please help with this. thanks!!
use a timer on your form, set the interval to 500: Code: Timer1_Timer() If len(label1.caption) = 0 then label1.caption = "Warning!" else label1.caption = "" end if off the top of my head
Timer1_Timer() If len(label1.caption) = 0 then label1.caption = "Warning!" else label1.caption = "" end if
Just a little bit shorter. Make a Timer, set it's Interval to 250 and put the following code into it. Code: Private Sub Timer1_Timer() Label1.Visible = Not Label1.Visible End Sub
Private Sub Timer1_Timer() Label1.Visible = Not Label1.Visible End Sub
Forum Rules