Undo a checkBox in Option Group

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I've got a form + a subform. In the subform, I've got some option groups. I was wondering how I could undo (uncheck) a value of an option group. Basically, once I have selected something (let's say by mistake), I cannot undo the checkbox.
Any idea?
Thanks a lot for your help.
 
Hi,
I've got a form + a subform. In the subform, I've got some option groups. I was wondering how I could undo (uncheck) a value of an option group. Basically, once I have selected something (let's say by mistake), I cannot undo the checkbox.
Any idea?
Thanks a lot for your help.

Add one more option button to the group.
Set it's label caption to "Clear".
Let's say it's value is 4.
Code the OptionGroup's AfterUpdate event:

If Me!OptionGroupName = 4 Then
Me!OptionGroupName = Null
End If
 
Back
Top