Checkbox doesn't check in the form

A

Amy

I have a form that is built using a query. All of the fields on the form are
disabled with the exception of one checkbox, that should allow the user to
click and check the box if they approve. However, nothing happens when I
click the check box. Since the field is enabled, what should I do to make
the field clickable so that it updates the table?

Thanks,
Amy
 
K

Klatuu

If the Enabled property of the check box is set the Yes and the Locked
property is set to No, then check these two things:

AllowEdits should be Yes
Be sure the recordset is updatable.
 
A

Amy

Thanks Klatuu! I was able to check the form properties and the AllowEdits is
set to yes and the recordset is set to dynaset. However, I still can not
update the checkbox.
 
A

Amy

Thanks Rick! I wasn't able to find the help topic, but I was able to figure
out why the form was not editable! Thanks again!
 
Top