Keep the check marks?

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

Guest

I created simple forms with check boxes just to use as a list of
instructions, so as the user goes through the steps (ex: run query #1) he
checks the box. The problem is if the database is closed and then opened
later all the check marks are lost. Is there a check box property I can set
in form design view so the check marks are retained when the database is
closed and then reopened?
 
Bill_S said:
I created simple forms with check boxes just to use as a list of
instructions, so as the user goes through the steps (ex: run query #1) he
checks the box. The problem is if the database is closed and then opened
later all the check marks are lost. Is there a check box property I can set
in form design view so the check marks are retained when the database is
closed and then reopened?

Forms don't save anything, tables do. If you want *data* saved then you need a
table with Yes/No fields in it and then you bind the form to the table.
 
Back
Top