Hi,
I'm using Aspose.Slides in Java. I'm trying to add a picture in a slide. I'm using the following code:
OleObjectFrame oof = null;
oof = slide.getShapes().addOleObjectFrame(0, 0, pres.getSlideSize().x, pres.getSlideSize().y,"Excel.Sheet.8", theBytes);
oof.setPictureFileName(fileName);
But when I open the powerpoint slide I get a "Object Changed" slide and when I double-click on the slide I get followin error.
"The server application, source file or item cannot be found or returned an unknown error."
Can you please tell me what is causing this error? And how to resolve this issue?
Thanks in advance,
Mani