CodeItBetter Programming Another VB Programming Blog

How to show/hide a label control at a particular interval using timer

Posted on January 4, 2009
1
2
3
4
5
6
7
8
9
'Controls - How to show/hide a label control at a particular interval using timer
Option Explicit
 
'Insert a label and timer control on your form and insert the following code:
'Set the interval of timer control as per your need.

Private Sub Timer1_Timer()
    Label1.Visible = Not Label1.Visible
End Sub
Filed under: Controls Leave a comment
Comments (0) Trackbacks (0)

No comments yet.


Leave a comment


 

No trackbacks yet.