Visual Basic Programming Code Examples
Visual Basic > Code Snippets Code Examples
Blinking label
1
2
3
4
5
6
7
8
9
10
11
Blinking label
' First add a label to your project
' and set caption. Then add a timerand set the interval toabout 250
' add this code into the timers timer event
If label1.Visible = True Then
label1.Visible = False
Else
label1.Visible = True
End If