I have on a form an option group with two check boxes. On occasion, I may
want to clear both check boxes. Is there a way to do this?
Ivor
Stefan Hoffmann - 10 Mar 2007 18:02 GMT
hi Ivor,
> I have on a form an option group with two check boxes. On occasion, I may
> want to clear both check boxes. Is there a way to do this?
Use
OptionGroup.Value = Null
mfG
--> stefan <--
fredg - 10 Mar 2007 19:57 GMT
> I have on a form an option group with two check boxes. On occasion, I may
> want to clear both check boxes. Is there a way to do this?
>
> Ivor
Add a 3rd button (I'll assume it's value is 3).
Code the OptionGroup AfterUpdate event:
If Me![OptionGroupName] = 3 Then
Me![OptionGroupName] = Null
End If

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail