To individualize checkboxes

A

an

Hi!

I have a continuous form based in Q_PlanCont.
This query is based in any tables.
One theese tables has a Procedure (Text) and Execute (Yes/No) fields.
The form show us differents procedures and checkboxes to confirm, or not,
the procedure realization.
But if to click in one checkbox all checkboxes are activated.
How is possible to individualize each checkbox, please.

Thanks in advance.
an
 
F

fredg

Hi!

I have a continuous form based in Q_PlanCont.
This query is based in any tables.
One theese tables has a Procedure (Text) and Execute (Yes/No) fields.
The form show us differents procedures and checkboxes to confirm, or not,
the procedure realization.
But if to click in one checkbox all checkboxes are activated.
How is possible to individualize each checkbox, please.

Thanks in advance.
an

Your current check box is not bound to a field in a table.
Add a check box field to the underlying table.
If your form's recordsource is a query, add this new field to the
query.
Then set the check box control source property (on your form) to this
check box field.
 
A

an

Ok, F

Work fine!
Thank you very much.
an

fredg said:
Your current check box is not bound to a field in a table.
Add a check box field to the underlying table.
If your form's recordsource is a query, add this new field to the
query.
Then set the check box control source property (on your form) to this
check box field.
 
Top