Hello,
I’m using 2 documents ( docA and docB ) accesed by web.
2 forms have a “File upload control”.
I load a file in my docA and I want to copy the attachment in my docB
To do that, I use :
Dim SourceItem As Variant
dim DocA As NotesDocument
dim DocB As NotesDocument
Set SourceItem = DocA.GetFirstItem(“$FILE”)
Dim NewItem As New NotesItem (DocB, “$FILE”, SourceItem)
At the end of my script I do :
Call DocB.ComputeWithForm(True,False)
Call DocB.Save( True,True)
When I open DocB, I can read the attachment but the formula @Attachments
return 0 … Why???
How to update this value? , my computewithform doesn"t work?
Many thanks !!
Traz