Hi!
I have an if statement in Querydocumentdelete sub and Continue is set on False if true.
How can I get field values from a document so I can complete my if statement?
Thanks!
Hi!
I have an if statement in Querydocumentdelete sub and Continue is set on False if true.
How can I get field values from a document so I can complete my if statement?
Thanks!
Subject: How to get document field values during Querydocumentdelete?
Use Source.Documents to get the collection of documents marked for deletion.
rg
Rakesh
Subject: How to get document field values during Querydocumentdelete?
Hi,
first catch the document using NotesDocumentCollection:
Set dc = source.Documents
Set doc = dc.GetFirstDocument()
source is the property of Querydocumentdelete event.
I hope it is helpful
Regards,
Marcin
Subject: RE: How to get document field values during Querydocumentdelete?
Thank you both Marcin and Rakesh! Works fine!