Blink the caption in the label control.
Blink the caption in the label control.
Rate Blink the caption in the label control.
(2(2 Vote))
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
Blink the caption in the label control. Comments
No comments yet — be the first to post one!
Post a Comment