VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Flashing Option Button

by Brent Embrey (9 Submissions)
Category: Custom Controls/Forms/Menus
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Sat 22nd February 2003
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Flashing Option Button

Rate Flashing Option Button



' 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



Download this snippet    Add to My Saved Code

Flashing Option Button Comments

No comments have been posted about Flashing Option Button. Why not be the first to post a comment about Flashing Option Button.

Post your comment

Subject:
Message:
0/1000 characters