Sorry, probably not me! My Professional needs don't
include using POI with powerpoint.

----- Original Message ----- From: <[email protected]>
To: <[email protected]>
Sent: Wednesday, September 30, 2009 6:12 PM
Subject: Embed HSSF into HSLF


Hello all,
I am trying to create PPT slide which will contain excel workbook. What
I can do is that I create the excel object in the Powerpoint template
and then I can read it like this:

OLEShape ole = (OLEShape) sh[i];
ObjectData od=ole.getObjectData();
HSSFWorkbook wb=new HSSFWorkbook(od.getData());
HSSFSheet excelSheet=wb.getSheetAt(0);
HSSFRow row=excelSheet.getRow(0);
HSSFCell cell=row.getCell(0);

Everything works well up to now. Then I would like to write some new
data: cell.setCellValue("hello"); which works as well.

But now I would like to write the excel workbook back to the powerpoint
slide.

Could you please help me? I don't have any idea how to do it.

Thank you,
Roman



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to