Uncheck checkboxes

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

Guest

I have a form based on a table with checkboxes to mark which customer report
should be printed.
I would like that, after the report was printed, all checkboxes will uncheck
themselves automatically.
Is that possible and if yes, how?
Thanks
Klaus
 
I have a form based on a table with checkboxes to mark which customer report
should be printed.
I would like that, after the report was printed, all checkboxes will uncheck
themselves automatically.
Is that possible and if yes, how?
Thanks
Klaus

update the underlying record

UPDATE sourcetable
SET MyCheckField1=False,
MyCheckField2=False,
....
WHERE RecordID=Forms!MyOpenForm!txtRecordID;

or set them all to false in teh form....
 
Back
Top