programmatic conversion of PPTX into PPT

  • Thread starter Nataliya Yevdoshenko
  • Start date
N

Nataliya Yevdoshenko

I need to convert PPTX files into PPT using microsoft office object library.
Does anyone have a piece of code doing this trick in VB6 or C#?
 
C

Chirag

The presentation object has a SaveAs method that can do this. For instance,
for saving the active presentation as a .ppt file, the following code would
do the job:

ActivePresentation.SaveAs "FileName.ppt", ppSaveAsPresentation

- Chirag

PowerShow - View multiple PowerPoint slide shows simultaneously
http://officeone.mvps.org/powershow/powershow.html
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top