Visual Basic Programming Code Examples Visual Basic > Code Snippets Code Examples Blinking label 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