0

我有一个带有 Office Word 的 Windows 窗体。我正在使用代码以编程方式打开 word 文档(_wd 的类型为 Microsoft.Office.Interop.Word.ApplicationClass - 我使用的是 VS 2012、.NET 4.5、Office 2007):

 public void LoadComponent(string path)
    {            
        if (_wd.Documents.Count != 0) _wd.ActiveDocument.Close(); 
        _wd.Documents.Add(ref path);
    }

当我想保存活动文档时,我的问题就来了。我不希望出现保存提示 - 这是我尝试过的,但无法取消提示对话框:

_wd.ActiveDocument.Saved = true;
_wd.ActiveDocument.Save();

如果我尝试:

_wd.ActiveDocument.SaveAs(_filePath,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type.Missing,Type。缺失,Type.Missing,Type.Missing,Type.Missing,Type.Missing);

我收到异常:“Word 无法保存此文件,因为它已在其他地方打开。” - 但它只在我的应用程序中打开,没有其他地方。如何以编程方式保存在没有保存提示对话框的情况下打开的 Word 文档?有趣的是,即使我尝试通过按“保存”按钮来保存文档,我也会得到保存提示对话框-> 就像之前没有在磁盘上创建文档一样。但是,文档是从光盘打开的,只能以编程方式打开。如果我用 Word 打开文档,然后按“保存”,我永远不会得到保存提示对话框。

4

2 回答 2

1

我收到异常:“Word 无法保存此文件,因为它已在其他地方打开。”

只有当您的文档在另一个Application.

以下示例适用于我,并且不会提示:

var path = @"C:\Temp\temp.docx";

Word.Application wordApp = new Word.Application();
Word.Documents documents = wordApp.Documents;
Word.Document doc = documents.Add(path);
doc.Range().Text = "Test Text";
doc.SaveAs2(path);
wordApp.Quit();

在任务管理器中检查WINWORD.EXE进程的杂散实例。如果 的实例Application未正确关闭(以编程方式),它们可能会发生。

这些杂散过程之一可能会让您保持Document开放。

于 2013-10-01T22:18:47.340 回答
0

似乎你不是唯一一个经历它的人。可能是 MSWORD 中的错误。正如这里建议的那样

·         Click on start->run.
·         Type %appdata% and click ok.
·         Go to Microsoft->templates folder and delete Normal.dotm.
·         Restart word
于 2013-10-01T22:08:54.907 回答