Flashing Text Effect
Flashing Text Effect
API Declarations
' Just copy and paste the timer code into a timer and then run it and check it out!!
Rate Flashing Text Effect
(1(1 Vote))
'set interval to 500
Private Sub Timer1()
If Label1 = "Label1" Then
Label1 = ""
Exit Sub
End If
If Label1 = "" Then
Label1 = "Label1"
Exit Sub
End If
End Sub
Flashing Text Effect Comments
No comments yet — be the first to post one!
Post a Comment