怎么在程序中打开PPT2007文档

如何在程序中打开PPT2007文档?
网上似乎找不到资料……

------解决方案--------------------
http://www.oracle.com/us/products/applications/autoVue/index.html

http://www.bravaviewer.com/download/download1.htm
------解决方案--------------------
如果只是要启动powerpoint,用Process打开文件就可以了:
Process.Start("xxxx.pptx")

如果打开ppt后,还需要对它进行操作,可以用office interop:
先引入两个.net组件:在项目上点右键,添加引用:
Office
Microsoft.Office.Interop.Powerpoint
添加完成后,就可以写代码操作了:
Dim app As New Microsoft.Office.Interop.PowerPoint.Application
app.Visible = True
Dim ppt As Microsoft.Office.Interop.PowerPoint.Presentation
ppt = app.Presentations.Open("xxxx.pptx")
Dim slides As Microsoft.Office.Interop.PowerPoint.Slides
slides = ppt.Slides

详细的文档msdn上有:http://msdn.microsoft.com/en-us/library/ff763170.aspx