vote up 5 vote down star
1

Is there a way to programmatically create PowerPoint presentations. If possible I'd like to use C# and create PowerPoint 2003 presentations.

flag

Wow. Just... wow. – Jon Limjap Jan 26 at 4:30
this has nothing to do with c# or msoffice but I once saw a presentation designed using pygame...it was amazing – Casey Jan 26 at 4:48
2  
@Jon Limjap: I don't see the point of your comment just like mine. – Sung Meister Jul 15 at 14:06

4 Answers

vote up 7 vote down check

Yes you can.

You will want to look into MSDN which has a pretty good introduction to it.

I might give you a word of warning, microsoft office interop is compatible with an API which is now more than 10 years old. Because of this, it is downright nasty to use sometimes. If you have the money to invest in a good book or two, I think it would be money well spent.

Heres a starting point for you. Use the search feature on MSDN MSDN Webpage its good for any microsoft C# .net style stuff.

Specifically in regards to your question, this link should help: Automate Powerpoint from C#

Finally, to whoever downvoted this: We were all learning one day, howto do something as a beginner is most definately programming related, regardless of how new someone might be.

link|flag
vote up 1 vote down

If you don't really need PowerPoint compatible output, consider using a markup language such as LaTeX with the Beamer package to produce a PDF of the presentation, or use HTML and javascript in a manner similar to Slidy. If you need fancy effects, it might still be easier to use SVG, and you'd have the benefit of getting output that can be reliably viewed with free software.

link|flag
Valid points, but it's also true that MS makes a viewer-only version of Powerpoint available for free download. Only works on Windows mind you. – j_random_hacker Jan 26 at 5:03
vote up 1 vote down

http://msdn.microsoft.com/hi-in/magazine/cc163471(en-us).aspx

use this link although this is in vb.net but c# also supports the same

link|flag
vote up 3 vote down

You can also look at Aspose Slides, a component for .NET and Java that makes it easy to generate powerpoint documents.

link|flag
It's a bit expensive ($600), but that is a good option. – epotter Jan 26 at 11:10

Your Answer

Get an OpenID
or

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