views:

53

answers:

2

I have to work with data in MS powerpoint file,but I don't know how to open and process data in powerpoint file.please help me!

My programming language is C# and use visual studio 2010.

+4  A: 

You need the Microsoft interop assemblies. You can then access the powerpoint files, but keep in mind you have to have powerpoint installed for it to work since it uses your powerpoint instance to access the file (Excel and Word use the same technique when accessing those types of files).

Here's another helpful link: http://msdn.microsoft.com/en-us/library/aax7sdch%28v=VS.80%29.aspx

dcp
+2  A: 

Here is a good KB on controlling PowerPoint files from C#

James