VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Make a label blink.

by Morten D Carlsson *netrom* (1 Submission)
Category: String Manipulation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 6th January 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Make a label blink.

Rate Make a label blink.



' and set caption to "Blink". Then add a timer that will have the name  
' "timBlink" and set the interval to 300

' add this code into the timer:

If lblBlink.Visible = True Then
   lblBlink.Visible = False
Else
   lblBlink.Visible = True
End If




Download this snippet    Add to My Saved Code

Make a label blink. Comments

No comments have been posted about Make a label blink.. Why not be the first to post a comment about Make a label blink..

Post your comment

Subject:
Message:
0/1000 characters