大家好,我正在使用互操作在 MS-Word 中打开几个文件。它工作正常。问题是当我尝试打开已经打开的文件时不起作用。任务管理器中出现正在使用的文件对话框能够只能通过在任务管理器中单击它来访问它。我怎样才能使它可见?或者你能建议任何其他方法吗?
Microsoft.Office.Interop.Word.Application WordApp = new Microsoft.Office.Interop.Word.Application();
WordApp.DisplayAlerts = WdAlertLevel.wdAlertsAll;
Microsoft.Office.Interop.Word.Document WordDoc = new Microsoft.Office.Interop.Word.Document();
WordDoc = WordApp.Documents.Open(path, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,Type.Missing);
WordApp.Visible = true;
System.Runtime.InteropServices.Marshal.ReleaseComObject(WordApp);