How do I get control buttons to reset on each form? ie. checkbox

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

Guest

I am having a proble with control buttons, specifically checkboxes and radio
buttons. If I check a box in one record, it applies to all of the records in
the form. However, I need each record to be separate and need to create a
"check al that apply list."
 
If you've placed an unbound control on a continuous form, I'm afraid you
have no recourse.
 
You don't mention if your checkboxes and radioboxes are in option groups or
not.
I think you mean "all records in the recordset"

The most probable cause is that your controls are not "bound" to a table
field.
The ControlSource for a checkbox, or option group, or radiobuttons must be
set to a field in your table (that makes it a "bound" field).
If you don't bind your control to a field, that value will display will
display on all records in the active recordset.
hth
Al Camp
 
Back
Top