Blink Label Caption This small code show you how to blinking a text in a Label You can use this For
Blink Label Caption This small code show you how to blinking a text in a Label You can use this For other control like TextBox etc...
API Declarations
'Need a Form1, Label1, and Timer1 (interval 1000)
Rate Blink Label Caption This small code show you how to blinking a text in a Label You can use this For
(2(2 Vote))
Static SwitchVal As Boolean
If SwitchVal Then
Label1.Caption = "Visual Basic is Cool, and Simple!"
SwitchVal = Not SwitchVal
Else
Label1.Caption = ""
SwitchVal = Not SwitchVal
End If
End Sub
Blink Label Caption This small code show you how to blinking a text in a Label You can use this For Comments
No comments yet — be the first to post one!
Post a Comment