How would I go about getting a timer to flash a label on and off four times? I use the following code to flash the label but I don't know how to stop it from flashing after four times.
With tmrLabelFlash
.Interval = 500
.Enabled = True
label.Visible = Not label.Visible
End With
Thanks in advance
Phil C
With tmrLabelFlash
.Interval = 500
.Enabled = True
label.Visible = Not label.Visible
End With
Thanks in advance
Phil C