Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a .Net component to allow reading and generation of powerpoint files. So far the only thing that I have been able to find is the component by Aspose. Can anyone recommend other possible tools to use for this?

share|improve this question
Related: stackoverflow.com/a/10271255/1257567 – NickHalden May 27 '12 at 22:34

2 Answers

up vote 4 down vote accepted

You can use the Microsoft Powerpoint Object Library which comes with Visual Studio. Heres an example of how to use it: How to handle PowerPoint events with Visual C# .NET

share|improve this answer

I don't know how complex can be your presentations, but using new Office 2007 Open XML File Formats you can create any Office document directly from managed code, without any other components.

Some time ago, I built an application which loads an Microsoft Project xml file and outputs its "Earned Value Analysis" (EVA) in a PPTX (Open XML PowerPoint format)

To get more informations, try this link: Sample Open XML Documents

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.