Hi
I need to extract the image from lotus notes email(not as attachment). Image is in body of email. I am receiving i count when I run the following code
public int GetElementCount(NotesRichTextNavigator rtNav, RT_ELEM eType) { int cntEmlements = 0;
if(rtNav.FindFirstElement(eType)== true)
{
do
{
cntEmlements++;
} while (rtNav.FindNextElement(eType,10) == true);
}
return cntEmlements;
}
NotesRichTextItem rItem1 = (NotesRichTextItem)nDoc.GetFirstItem("Body");
NotesRichTextNavigator rtNav = rItem1.CreateNavigator();
MessageBox.Show(GetElementCount(rtNav, RT_ELEM.RTELEM_TYPE_OLE).ToString());
But when I try ti extract it I always received null value.. the code for extract is following
if (notesItem.type == IT_TYPE.EMBEDDEDOBJECT) {
string fileName = ((object[])notesItem.Values)[0].ToString(); // ERROR HERE AS NULL VALUE
NotesEmbeddedObject emObj = nDoc.GetAttachment(notesItem.Values[0]);
emObj.ExtractFile(emObj.Name);
}
Can anybody please tell me what is the wrong I am doing?
Thanks
