working with check boxes

K

Ken Snell \(MVP\)

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

Similar Threads


Top