Categories

Blink a label

Place a label and a timer on a form , set the timers interval to about 250.

Enter the following code

Private Sub Timer1_Timer()

Label1.Caption = “Blinking label effect”
If Label1.Visible = True Then
Label1.Visible = False
Else
Label1.Visible = True
End If

End Sub

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

You must be logged in to post a comment.