I am trying to append a large number of values into a RichText field.
The items are being appended as separate values, so if you view the document properties, you will see the field name listed many times. The field does display properly when viewed.
Is this normal behavior for a rich text field?
My code is
Dim rt As NotesRichTextItem
Set rt = New NotesRichTextItem(messagedoc, “EmailsSentTo”)
And then inside a loop
Call rt.AppendText(recemail & ", ")
Call MessageDoc.Save(False,False)
I anticipate having a value larger then 64k, so I wanted to avoid stringing it together and then appending it.