working with check boxes

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

Guest

I'm trying to clear check boxes when I finish printing a report... any ideas?
 
Are the checkboxes located on a form? You can use the Report's Close event
(occurs when the report closes after printing) to set the values of the
checkboxes to False, or you could do this in the form's code right after the
DoCmd.OpenReport action:

Forms!NameOfForm!CheckBoxName1.Value = False
Forms!NameOfForm!CheckBoxName21.Value = False
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top