BrianExcel
Well-known Member
- Joined
- Apr 21, 2010
- Messages
- 975
I have 5 option buttons. Each one sets a different image to "Visible = True" upon the click event.
Upon opening the form I can click each option button once and they will all display properly, BUT after the first click they don't update. It's almost as if they don't get set to false or something after updating.
Below is the code I am using currently. any ideas?
Upon opening the form I can click each option button once and they will all display properly, BUT after the first click they don't update. It's almost as if they don't get set to false or something after updating.
Below is the code I am using currently. any ideas?
Code:
Private Sub optVelo_Click()
If Me.optVelo.Value = True Then
UserForm1.imgVelo.Visible = True
End If
End Sub