Flashing Option Button
Flashing Option Button
Rate Flashing Option Button
(1(1 Vote))
' set the timer intervals to 500
' set timer2.enabled = false
Private Sub Timer1_Timer()
Option1.BackColor = vbRed
Timer1.Enabled = False
Timer2.Enabled = True
End Sub
Private Sub Timer2_Timer()
Option1.BackColor = Me.BackColor
Timer2.Enabled = False
Timer1.Enabled = True
End Sub
Flashing Option Button Comments
No comments yet — be the first to post one!
Post a Comment