Hello,Is there way of recording if a document from a certain form has been printed out? So any print information is either stored on the document itself or in a log database.
I need something like an onPrint event that gets triggered when a document is printed.
Thanks in advance.
Subject: Is there way of recording if a document has been printed out?
start by setting $keepprivate=“1” then write your own print button which removes the keepprivate field and then prints and puts it back.
Subject: RE: Is there way of recording if a document has been printed out?
Nice tip - I just added it to the FAQ of FAQs.
Thanks
Doug
Subject: Think carefully on how/where you records "printed …
if you do it on the actual Document you may generate replication conflicts.
So either lock the document (not perfect)
or record the print in a new document each time
Subject: Is there way of recording if a document has been printed out?
Many thanks Alan!