What is the code used with Radio Buttons to determine which one is chosen?
This would make sense to me, obviously wrong though.
If Option2.Clicked = True Then
Label1.Caption = "Option2"
End If
Thanks
Printable View
What is the code used with Radio Buttons to determine which one is chosen?
This would make sense to me, obviously wrong though.
If Option2.Clicked = True Then
Label1.Caption = "Option2"
End If
Thanks
TryCode:If Option1.Value = True Then
MsgBox "Option 1 is selected"
ElseIf Option2.Value = True Then
MsgBox "Option 2 is selected"
End If
If Option2.Clicked = True Then
Label1.Caption = Option2.Caption
End If
Thank you.