Attachment Properites

I’d like to know if there’s any way to access the File Modified or File Created values for an attachment to a Memo in LotusScript. I can see the values for these properties in the Document Properties window for any $FILE item in the memo, but there does not seem to be a method or property to access it via a NotesEmbeddedobject or NotesDocument

Subject: Attachment Properites

If you export the document as DXL, you can extract these timestamps from the $FILE item. Or you can use the C API – there is sample code for Windows in the Notes/Domino 4 and 5 Forum, here.

Subject: Attachment Properites

You could extract the file(s) in the Body-RTField to the temp folder, then use the FileDateTime(strFullNameOfFileExtractedToTemp) function (s.Designer Help) to get the date…

Don