A Ayo Jul 9, 2008 #1 How do I unselect all the option buttons in an Option Group so that no option button is selected?
A Arvin Meyer [MVP] Jul 9, 2008 #2 If you want it empty when you start, clear the DefaultValue property on the Data tab of the Property Sheet. If you want to clear it at runtime, use some code like: Private Sub Frame21_Click() Me.Frame21 = Null End Sub and when you click on the option group frame, it will clear all values. Remember to use your own control name.
If you want it empty when you start, clear the DefaultValue property on the Data tab of the Property Sheet. If you want to clear it at runtime, use some code like: Private Sub Frame21_Click() Me.Frame21 = Null End Sub and when you click on the option group frame, it will clear all values. Remember to use your own control name.