I'm struggling with a coding problem. I wondered if some of you guys could help me on that issue.
Here it is:
I have a Tbl1 which is updated by a Frm1 (record ID by record ID). Both of them include a SelectionBox Y/N type std value=0.
There is also a Qry1 which is based on the Tbl1. This Qry1 generates a Rpt1 for each specific record ID. The Rpt1 also includes that SelectionBox as well as a PrintButton.
My final goal is:
By the time the user clicks the Rpt1 PrintButton I want the SelectionBox of that particular record ID of the Master Table to be updated (flagged) with -1 value. By doing that, the Qry1 will also flag -1, so do the Rpt1, meaning in case the user try to print the Rpt1 again, he'll get a message box advising him the Rpt1 has already been printed.
In other words, I need to update a specific recordID of my Tbl1 from a Click event in the Rpt1 PrintButton.
I did not manage to make it work. Do you know how to get it done, please? Thank you in advance.