SpandexBobcat
Technical User
Hi folks,
I have a form with a Print button (to print the current form data) Once the record is printed I want a 'Printed?' checkbox to show yes (ticked) I have been trying doing this via an update query, triggered in the vb code. The problem I have is it sets 'yes' for EVERY record, not just the one in question.
The SQL for the query is:
How can I specify that only the currently displayed record on the form is set to 'Yes' and not the entire table...
Thanks in advance,
SpandexBobcat
I have a form with a Print button (to print the current form data) Once the record is printed I want a 'Printed?' checkbox to show yes (ticked) I have been trying doing this via an update query, triggered in the vb code. The problem I have is it sets 'yes' for EVERY record, not just the one in question.
The SQL for the query is:
Code:
UPDATE ContactInfo SET ContactInfo.Printed = Yes;
How can I specify that only the currently displayed record on the form is set to 'Yes' and not the entire table...
Thanks in advance,
SpandexBobcat