BIRT导出PPT有问题:How to create powerpoint and excel exports

http://www.eclipse.org/forums/index.php/m/635982/

You need to remove these four plugins:
org.eclipse.birt.report.engine.emitter.prototype.excel_2.6.1 .v20100812
org.eclipse.birt.report.engine.emitter.excel.config_2.6.1.v2 0100812
org.eclipse.birt.report.engine.emitter.ppt.config_2.6.1.v201 00812
org.eclipse.birt.report.engine.emitter.ppt_2.6.1.v20100909

The Tribix ppt emitter is on this page:
http://sourceforge.net/projects/tribix/files/

If you want to use the standard ppt emitter it should work with:

RenderOption options = new RenderOption();
options.setOutputFormat("ppt");
options.setOutputFileName("output/resample/customers.ppt");
task.setRenderOption(options);
==================================

Originally posted by: vm.vm.com

Thanks for the suggestions! Regarding the standard (NOT using the Tribix
emitters) .ppt exporter I have now tried:

RenderOption options = new RenderOption();
options.setOutputFormat("ppt");
options.setOutputFileName(c:\\test\\myout.ppt);
task.setRenderOption(options);
task.run();

but when I open the file myout.ppt in microsoft power point 2010 nothing
shows. Does the birt 2.6.1 api not support microsoft powerpoint 2010?
=========================================


I do not have 2010 but I know it opens in 2007. Can you open a bug?



你可能感兴趣的:(create)