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 |