Check Box

  • Thread starter Thread starter Golfinray
  • Start date Start date
G

Golfinray

I would like to have a box on a form for users to click if they have finished
an update on one important record in the form. Just a box to click that stays
there when the form is closed. I stuck a checkbox on the form and when anyone
clicks it it is clicked on every record in the form, all 300 or so of them. I
have looked at all the properties again and again. What am I missing?
Thanks!!!!
 
Sounds like you're using an unbound checkbox, possibly on a continous form,
which won't work (afaik). You'll probably have to add a boolean field to your
underlying table/query, and bind your checkbox to that.
 
Back
Top