-
Does anybody has an idea about how to create a label which flashes (visible/not visible) at the frequency defined by the Timer?
Most of the code I wrote using For...Next or Do...Loop ends up hanging (looping either on visible or invisible.
Any help would be appreciated
------------------
Paul Stermann
DSI-Houston
-
Here you go. Set the timer to however fast you want and put this code in
Private Sub Timer1_Timer()
If Label1.Visible = False Then
Label1.Visible = True
Else
Label1.Visible = False
End If
End Sub
-
how about an easier code...
Private Sub Timer1_Timer()
Label1.visible = not Label1.visible
End Sub
yup...thats it...
-
Thank you guys!
------------------
Paul Stermann
DSI-Houston