Continuous Forms

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm using a continuous to edit data, the form calles up all records depending
on a selection the user enters. I've added a check box to the form so when
checked I get an standard amount in the next field. What happens is when I
check the check box all records on the continuous form shows the check. How
do I get it to only show the current record? Thanks for any help.

Tom
 
CD said:
I'm using a continuous to edit data, the form calles up all records
depending on a selection the user enters. I've added a check box to
the form so when checked I get an standard amount in the next field.
What happens is when I check the check box all records on the
continuous form shows the check. How do I get it to only show the
current record? Thanks for any help.

Tom

If the CheckBox is not bound to a field in the table then that's the way it is.
There is really only ONE CheckBox being displayed over and over. The only thing
that allows the other controls to show different data per-row is because they
are bound to fields in the table.
 
Back
Top