Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mark Record as Printed - Any ideas? 2

Status
Not open for further replies.

pdldavis

Technical User
Oct 29, 2001
522
US
Hi,

I have a table where records are printed out as individual forms for circuit installation. The records come from a combobox selection and print after update.

I need to prevent these forms from being reprinted. I have a yes/no field in the table to indicate whether or not a form has been issued and I can do this manually, one at a time prior to print. This is cumbersome however, and there are several thousand records.

Is there a method for automatically updating a field in underlying table after print or is there some other way to accomplish this?

Thanks, Dan
 
Just run a query after your process prints something like

Update YourTable
Set Printed = True
Where YourTable.RecordID = YourForm.RecordID

Regards
Warwick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top