VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Flashing Text Effect

by Daniel Hanney (4 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Thu 2nd June 2005
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



'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

Download this snippet    Add to My Saved Code

Flashing Text Effect Comments

No comments have been posted about Flashing Text Effect. Why not be the first to post a comment about Flashing Text Effect.

Post your comment

Subject:
Message:
0/1000 characters