I have a form with 2 rich text fields. They both store pictures. I have 1 text field to store the name of the second rich text field. For this I'm using : @Subset(@AttachmentNames;1) but the problem is that in this way I don't have control from which rich text field the attachmentname is comming. Any idea ?
get the attachmentname from 1 out of 2 rich text fields
499 Views Asked by Marc Jonkers At
2
There are 2 best solutions below
0

You can use Lotusscript. RichTextItem
can contain an EmbeddedObject
, which has property Source
. For attachments, this contains the file name.
Quote from help file:
Dim doc As NotesDocument
Dim rtitem As Variant
Dim object As NotesEmbeddedObject
Dim sourceName As String
'...set value of doc...
Set rtitem = doc.GetFirstItem( "Body" )
If ( rtitem.Type = RICHTEXT ) Then
Set object = rtitem.GetEmbeddedObject( "City picture" )
sourceName = object.Source
End If
Unfortunately there is no way to do this with Formula. In LotusScript you can do something like:
Take care: The attachments in LotusScript are only current after a save of the document...