c# 在虚拟机下打开 Powerpoint 演示文稿

本文关键字:Powerpoint 文稿 虚拟机 | 更新日期: 2023-09-27 17:57:25

我尝试使用以下代码

PowerPoint.Application objPPt = new PowerPoint.Application();
objPPt.Presentations.Open2007(strFileName, Core.MsoTriState.msoFalse, Core.MsoTriState.msoFalse, Core.MsoTriState.msoTrue, Core.MsoTriState.msoFalse);

objPPt.Presentations.Open(strFileName, Core.MsoTriState.msoFalse, Core.MsoTriState.msoFalse, Core.MsoTriState.msoTrue);

在Virutal PC下打开PowerPoint文件,它一直失败,但在本机PC下,没问题。

我使用VS 2010,添加了Powerpoint库12.0作为参考。

c# 在虚拟机下打开 Powerpoint 演示文稿

也许您应该在虚拟PC中将PowerPoint程序集安装到GAC中。