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
Public SwitchVal As Boolean
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))
'2nd) Put this code into your Form :
Private Sub Timer1_Timer()
If Text2See(SwitchVal) = True Then
Label1.Caption = "Visual Basic is Cool !"
Else
Label1.Caption = ""
End If
End Sub
Public Function Text2See(Switch As Boolean) As Boolean
Select Case Switch
Case True
Text2See = True
SwitchVal = False
Case False
Text2See = False
SwitchVal = True
End Select
End Function
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