Private Sub Command1_Click()
a = Option1
b = Option2
c = Option3
If a = True Then
a = vbRed
End If
If b = True Then
b = vbGreen
End If
If c = True Then
c = vbBlue
End If
If Label3.BackColor = a Then
Timer1.Enabled = False
Label4.Visible...