Clearing check boxes in a form

T

Tom

I have an attendance form I use daily in access 2003. I use a checkbox to
indicate whether the employee was absent or not. By default it is unchecked.
Once I have used one of the check boxes and I append to an attendance table,
the next time I open the form, the box is still checked. What command can I
use in the form to reset all check boxes when the form loses or after I
append the information.

Thanks
 
D

Douglas J. Steele

Forms display data that's displayed in tables.

If your check boxes are checked, that's because they're bound to data fields
in the table that have a value of True.

Either your form is bound to an incorrect recordset, or else you need to use
an update query to set all the appropriate fields in the table to False.
 
D

Douglas J. Steele

Sorry, that first line should have read "Forms display data that's
contained in tables."
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top