VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



flashing text int title bar and label, very easy

by DeanoSplamony (2 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Mon 17th November 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

flashing text int title bar and label, very easy

Rate flashing text int title bar and label, very easy



==============
REQUIRED OBJECTS:-
TEXT1
LABEL1
TIMER1
TIMER2


Private Sub Text1_Change()
On Error Resume Next
Timer2.Interval = Val(Text1.Text)
End Sub

Private Sub Timer1_Timer()
If Label1.Caption = "Manchester City Football Club" Then
Label1.Caption = ""
Exit Sub
End If
If Label1.Caption = "" Then
Label1.Caption = "Manchester City Football Club"
Exit Sub

Download this snippet    Add to My Saved Code

flashing text int title bar and label, very easy Comments

No comments have been posted about flashing text int title bar and label, very easy. Why not be the first to post a comment about flashing text int title bar and label, very easy.

Post your comment

Subject:
Message:
0/1000 characters