A
Ade
Hi everyone,
I tried using this:
PowerPoint.Application app = new PowerPoint.Application();
PowerPoint.Presentation pPpx;
pPpx = app.Presentations.Open("C\\temp\temp.ppt",
Microsoft.Office.Core.MsoTriState.msoFalse,
Microsoft.Office.Core.MsoTriState.msoFalse,
Microsoft.Office.Core.MsoTriState.msoFalse);
for (int i = 0; i < pPpx.Slides.Count; i++)
{
pPpx.Slides.Export("C:\\temp\\ + "lslide" + i + ".JPG", "JPG", 800, 600);
}
But it won't work...anyone can enlighten me??
ade
I tried using this:
PowerPoint.Application app = new PowerPoint.Application();
PowerPoint.Presentation pPpx;
pPpx = app.Presentations.Open("C\\temp\temp.ppt",
Microsoft.Office.Core.MsoTriState.msoFalse,
Microsoft.Office.Core.MsoTriState.msoFalse,
Microsoft.Office.Core.MsoTriState.msoFalse);
for (int i = 0; i < pPpx.Slides.Count; i++)
{
pPpx.Slides.Export("C:\\temp\\ + "lslide" + i + ".JPG", "JPG", 800, 600);
}
But it won't work...anyone can enlighten me??
ade