Using lotus script, I am looking for a more efficient way to copy/move attachment(s) from one notes database to anouther. What I can make work is to extract to file then embed same file in new database. Everything else i can copy with code like: doc.=uidoc.FieldGetText( “” )
Subject: ? What is most efficient method (script) to move attachments between notes databases
Why not just copy the NotesRichTextItem from the source document to the target document? You avoid detaching and re-attaching in code then, which is a very expensive operation.
–
Subject: RE: ? What is most efficient method (script) to move attachments between notes databases
Thank you, that worked well on copying attachments.