> How do you do that? I see the frame can be bound, but how do you bind
> the checkbox? If the checkbox is chosen, I will update another field
> with the value "4" and know to write records to various tables, based
> on that.
>
> Will a yes/no field still work? Where is the field stored?
The forest you are looking for is over behind those trees :-)
OptionGroup frames are for RadioButtons. CheckBoxes reside directly on the
form. Once you move the CheckBox outside the frame you can bind it directly to
a YesNo field just like you can bind a TextBox or ComboBox, etc..
When the CheckBox is "checked" that will store True (-1) in the underlying
field. When "unchecked" it will store False (0).

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
sara - 25 Dec 2006 15:51 GMT
Can you tell I'm new?
Well, I get what you're saying about the checkbox, but I don't have a
yes/no field. How can I bind a box to a field I don't have? I'm still
missing something here....
Sara
> > How do you do that? I see the frame can be bound, but how do you bind
> > the checkbox? If the checkbox is chosen, I will update another field
[quoted text clipped - 16 lines]
> Email (as appropriate) to...
> RBrandt at Hunter dot com
Rick Brandt - 25 Dec 2006 15:58 GMT
> Can you tell I'm new?
>
> Well, I get what you're saying about the checkbox, but I don't have a
> yes/no field. How can I bind a box to a field I don't have? I'm still
> missing something here....
You ADD a Yes/No field to your table and then use the CheckBox on your form to
edit that field.
If "IsCallerAClient" is a piece of data you want to capture then you must have a
field in the table to store it in.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
missinglinq - 25 Dec 2006 16:02 GMT
You have to create a Yes/No field in your underlying table. If your form is
based on a query, be sure to go into the Design Grid for the query and
include your new field there as well, to make it available to your form.
I'd actually just delete the check box you already have, do the above listed
things, then goto the Fields box in Design View of your form and move the new
field onto your form.

Signature
There's ALWAYS more than one way to skin a cat!
Answers/posts based on Access 2000
sara - 25 Dec 2006 15:59 GMT
I think I've got it!!
I decided to just try without the field; and it's doing what I wanted.
I had to use the other "hint" you gave me - the value is -1! I think I
am all set. Thanks so much.
Sara
> > How do you do that? I see the frame can be bound, but how do you bind
> > the checkbox? If the checkbox is chosen, I will update another field
[quoted text clipped - 16 lines]
> Email (as appropriate) to...
> RBrandt at Hunter dot com