Check mark box not clearing on next record

  • Thread starter Thread starter Porkchop
  • Start date Start date
P

Porkchop

I have a form with a check mark. The form is viewed as a continuous form.
When the check mark is checked, then all of the records(continuous form,
next form) the box is then check before we got to that form.

Help.
I can supply code for form if you need.
Thanks
-Porkchop
 
Presumably your check box is unbound (not linked to a field in the form's
recordsource). That's how it works with continuous forms: make a change to
an unbound control, and it applies to all instances of that control.
 
Wayne,
Ok, question then, can I make a new table and use, or do I need to add a new
column to table and use?
Thanks again for your help.
-Porkchop
 
Wayne,
Ok, question then, can I make a new table and use, or do I need to add a new
column to table and use?
Thanks again for your help.
-Porkchop

If the table is the record source of the form, just add a new check
box field to the current table.
Then, on your form, set the control source of your check box to the
newly added field.
 
That Worked!!
Thanks!
-Porkchop



fredg said:
If the table is the record source of the form, just add a new check
box field to the current table.
Then, on your form, set the control source of your check box to the
newly added field.
 
Back
Top