VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Blink the caption in the label control.

by MR. Irfan (1 Submission)
Category: Graphics
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Wed 30th August 2006
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Blink the caption in the label control.

Rate Blink the caption in the label control.



Label1.Caption = "India"
Timer1.Interval = 150
Timer2.Interval = 150
End Sub

Private Sub Timer1_Timer()
Label1.ForeColor = vbRed
End Sub

Private Sub Timer2_Timer()
If Label1.ForeColor = vbRed Then
    Label1.ForeColor = vbBlue
End If
End Sub


Download this snippet    Add to My Saved Code

Blink the caption in the label control. Comments

No comments have been posted about Blink the caption in the label control.. Why not be the first to post a comment about Blink the caption in the label control..

Post your comment

Subject:
Message:
0/1000 characters