I need to display a picture in open document from backend document, I do not want to save open document because it is just for navigation.
I try this :
Set item = CurrentTestDoc.GetFirstItem( "Attach" )
Dim newItem As NotesRichTextItem
Call doc.RemoveItem("Attach")
Set newItem = New NotesRichTextItem(Doc, "Attach")
If ( item.Type = RICHTEXT And newItem.Type = RICHTEXT ) Then
Call newItem.AddNewLine(1)
Call newItem.AppendRTItem( item )
newItem.Update
End If
any idea!!!
-Mohammad Ashfaq