Make a label blink.
Make a label blink.
Rate Make a label blink.
(1(1 Vote))
' and set caption to "Blink". Then add a timer that will have the name
' "timBlink" and set the interval to 300
' add this code into the timer:
If lblBlink.Visible = True Then
lblBlink.Visible = False
Else
lblBlink.Visible = True
End If
Make a label blink. Comments
No comments yet — be the first to post one!
Post a Comment