我正在使用word模板创建word文档
下面是代码

  Word.Document wordDoc = new Word.Document();
 wordDoc = wordApp.Documents.Add(ref oTemplatePath, ref oMissing, ref oMissing, ref oMissing);

我得到错误无法打开宏存储。我应用DCOM安全权限和所有读/写权限。
我的服务器是Windows 2008 Professional&IIS 7

最佳答案

模板可能包含宏。应在word的宏设置中设置对vba工程对象模型的信任访问。
参见http://support.microsoft.com/kb/282830/en-ushttp://support.microsoft.com/kb/303872/en-us
请注意,有可能从DCOM更改此设置,但我还没有成功。

关于c# - MS Word 2010无法打开宏存储,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16056655/

10-17 02:26