Make a label Blink if the condition is met
Make a label Blink if the condition is met
Rate Make a label Blink if the condition is met
(1(1 Vote))
'//Set the caption of lblBlink to be "Error"//
'//By default, set the label "lblError" to be invisible.//
'//Set the default condition to no blink.//
'//Set the timer as TimerBlank, enabled and the interval to 500//
'//Have fun!!//
lblError.Visible = False
Blink = False
Private Sub TimerBlink_Timer()
If Blink = True Then
If lblError.Visible = True Then
lblError.Visible = False
Else: lblError.Visible = True
End If
End If
End Sub
Make a label Blink if the condition is met Comments
No comments yet — be the first to post one!
Post a Comment