VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Blink Label Caption This small code show you how to blinking a text in a Label You can use this For

by Apc | 123 (1 Submission)
Category: Custom Controls/Forms/Menus
Compatability: Visual Basic 4.0 (32-bit)
Difficulty: Unknown Difficulty
Originally Published: Thu 25th October 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

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



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

Download this snippet    Add to My Saved Code

Blink Label Caption This small code show you how to blinking a text in a Label You can use this For Comments

No comments have been posted about Blink Label Caption This small code show you how to blinking a text in a Label You can use this For. Why not be the first to post a comment about Blink Label Caption This small code show you how to blinking a text in a Label You can use this For.

Post your comment

Subject:
Message:
0/1000 characters