does anyone here have the same problem? the Notes API seems not working when exporting graphics from Rich text field, for example, the following code in .net always throws an system.runtime.interopservices.SEHException: External component has thron an exception.
…
LNRTCursor cursor1, cursor2;
LNRichText richtext = …(get rich text field);
LNGraphic graphic;
richtext.GetCursor(&cursor1);
cursor1.GotoFirst(LNRTTYPE_GRAPHIC, &graphic);
LNGRAPHICTYPE gtype = graphic.GetGraphicType();
if (gtype == LNGRAPHICTYPE_GIF){
cursor2 = cursor1;
cursor2++;
richtext.Export("c:\\t.gif", cursor1, cursor2);
}
anyone experience the same issue here?