First, I assume you mean a checkbox, not an option button. Option Groups
contain multiple radio buttons. The user can select only one from the
group. I've never seen a single radio button.
That being said, just add code to the checkbox's CHANGE event to say, If
"no" then... And display a message box and whatever other code you want to
perform.

Signature
Rick B
> I have a single Option button on a form used to indicate a "special
> circumstance" which might occurr for some of the records, it is bound to a
[quoted text clipped - 7 lines]
>
> Any ideas on this would be greatly appreciated, thanks.
Klatuu - 28 Apr 2005 16:30 GMT
Sorry, Rick. There is no change event for a check box. I tried an approach
that works. In the Current event, set the Tag property of the check box to
the value of the field. then in the Exit event (May not be the exact best
place depending on what else is happening):
If Me.Check21.Tag = True And Me.Check21 = False Then
Present the Input Box
Put the value returned from the Input Box where you need it
End If
> First, I assume you mean a checkbox, not an option button. Option Groups
> contain multiple radio buttons. The user can select only one from the
[quoted text clipped - 17 lines]
> >
> > Any ideas on this would be greatly appreciated, thanks.
Marshall Barton - 29 Apr 2005 01:49 GMT
I would recommend the AfterUpdate event (it won't fire if
the user just tabs throught the control without changing it.
Also, the control's OldValue property will serve the purpose
without involving the Current event ot the Tag property.

Signature
Marsh
MVP [MS Access]
>I tried an approach
>that works. In the Current event, set the Tag property of the check box to
[quoted text clipped - 17 lines]
>> > don't need the input box when they first select the option, only if they
>> > de-select option for a record which it was previously selected.
Make that the "before update" event.

Signature
Rick B
> I have a single Option button on a form used to indicate a "special
> circumstance" which might occurr for some of the records, it is bound to a
[quoted text clipped - 7 lines]
>
> Any ideas on this would be greatly appreciated, thanks.
rg32 - 29 Apr 2005 22:46 GMT
Actually it is an Option button. You can use single option buttons without
the option group, which is what I did in this case because I only have one
option. I suppose the individual option button works pretty much the same as
a check box though.
The OldValue property in the Before Update event works great. Thanks.
> Make that the "before update" event.
>
[quoted text clipped - 11 lines]
> >
> > Any ideas on this would be greatly appreciated, thanks.