reset controls

  • Thread starter Thread starter mcourter
  • Start date Start date
M

mcourter

how can i reset controls like checkboxews and list boxes as i nvaigate
through records.
if i check a checkbox it keeps that cjecked value if i move to a new
record. if i reset to 0 on oncurrent it auto-increments my autonumber
as if i was adding a new record.
 
If you have "bound" (linked to query/table fields of the form's
recordsource) controls (checkboxes, etc.) on your form, then the values are
unique to each record. Entering data in any field/control of a new record
will generate an new autonumber value.

If you're using unbound controls, you'll need to explain more on what you're
trying to do with them.
-Ed
 
Back
Top