如何从powerpoint中读取数据
我必须处理 MS powerpoint 文件中的数据,但我不知道如何打开和处理 powerpoint 文件中的数据。请帮我!
我的编程语言是C#,使用的是Visual Studio 2010。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 Microsoft 互操作程序集。然后,您可以访问 powerpoint 文件,但请记住,您必须安装 powerpoint 才能工作,因为它使用您的 powerpoint 实例来访问文件(Excel 和 Word 在访问这些类型的文件时使用相同的技术)。
这是另一个有用的链接: http://msdn .microsoft.com/en-us/library/aax7sdch%28v=VS.80%29.aspx
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
这里是关于从 C# 控制 PowerPoint 文件的好知识库
Here is a good KB on controlling PowerPoint files from C#