8

我可以看到很多非常相似的线程,但似乎没有什么能给我一个应该非常基本的解决方案。

在我的 winforms 应用程序中,我需要关闭一个正在运行的 word 文档实例(从应用程序本身打开)。当我从应用程序中打开 word 文档时,我会在列表中对其进行跟踪。现在我怎样才能关闭同一个文档?

这是我尝试过的:

private bool CloseWord(string osPath) //here I pass the fully qualified path of the file
{
    try
    {
        Word.Application app = (Word.Application)Marshal.GetActiveObject("Word.Application");
        if (app == null)
            return true;

        foreach (Word.Document d in app.Documents)
        {
            if (d.FullName.ToLower() == osPath.ToLower())
            {
               d.What? //How to close here?
               return true;
            }
        }
        return true;
    }
    catch
    {
        return true;
    }
}

我得到了很多文档对象的方法,但只有一个.Close()to close 有这样的参数:ref object SaveChanges, ref object OriginalFormat, ref object RouteDocument我不明白。

理想的方式是什么?谢谢..

编辑:

  1. 我无法关闭整个 Word 应用程序 (WinWord),因为用户可能打开了其他 Word 文件。

  2. 我只需要终止单词实例(类似Process.Kill()),而不提示用户是否保存等。

4

4 回答 4

17

这个解决方案从这里得到解决。

Word.Application app = (Word.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application");
if (app == null)
    return true;

foreach (Word.Document d in app.Documents)
{
    if (d.FullName.ToLower() == osPath.ToLower())
    {
        object saveOption = Word.WdSaveOptions.wdDoNotSaveChanges;
        object originalFormat = Word.WdOriginalFormat.wdOriginalDocumentFormat;
        object routeDocument = false;
        d.Close(ref saveOption, ref originalFormat, ref routeDocument);
        return true;
    }
}
return true;
于 2011-09-16T15:01:30.470 回答
2

如何使用类似的东西:

修改自:http ://www.dreamincode.net/code/snippet1541.htm

public static bool KillProcess(string name)
{
    //here we're going to get a list of all running processes on
    //the computer
    foreach (Process clsProcess in Process.GetProcesses())
    {
        if (Process.GetCurrentProcess().Id == clsProcess.Id)
            continue;
        //now we're going to see if any of the running processes
        //match the currently running processes. Be sure to not
        //add the .exe to the name you provide, i.e: NOTEPAD,
        //not NOTEPAD.EXE or false is always returned even if
        //notepad is running.
        //Remember, if you have the process running more than once, 
        //say IE open 4 times the loop thr way it is now will close all 4,
        //if you want it to just close the first one it finds
        //then add a return; after the Kill
        if (clsProcess.ProcessName.Contains(name))
        {
            clsProcess.Kill();
            return true;
        }
    }
    //otherwise we return a false
    return false;
}
于 2011-09-16T14:22:59.883 回答
1

我知道为时已晚,但我发现这个话题是因为我遇到了同样的问题。

我的解决方案可能会帮助其他人。

上面的解决方案效果不佳,因为它杀死了每个正在运行的 Word 实例,尽管它不是由 c# 程序而是由用户打开的。

所以这不是那么用户友好。

我的代码Word.Application在 c# 中创建对象之前/之后检查进程,并在其中写入WINWORD进程的 ID,List<int> 然后比较两者中的值List<int>。当processID在两者中都找不到a 时,List<int>它会终止具有此 ID 的进程。

public List<int> getRunningProcesses()
{
    List<int> ProcessIDs = new List<int>();
    //here we're going to get a list of all running processes on
    //the computer
    foreach (Process clsProcess in Process.GetProcesses())
    {
        if (Process.GetCurrentProcess().Id == clsProcess.Id)
            continue;             
        if (clsProcess.ProcessName.Contains("WINWORD"))
        {
            ProcessIDs.Add(clsProcess.Id);
        }
    }
    return ProcessIDs;
}

运行两次(一次在创建 Word.Application 之前,一次之后)。

 List<int> processesbeforegen = getRunningProcesses();
 // APP CREATION/ DOCUMENT CREATION HERE...
 List<int> processesaftergen = getRunningProcesses();

然后运行killProcesses(processesbeforegen, processesaftergen);

 private void killProcesses(List<int> processesbeforegen, List<int> processesaftergen)
 {
    foreach (int pidafter in processesaftergen)
    {
        bool processfound = false;
        foreach (int pidbefore in processesbeforegen)
        {
            if (pidafter == pidbefore)
            {
                processfound = true;
            }
        }

        if (processfound == false)
        {
            Process clsProcess = Process.GetProcessById(pidafter);
            clsProcess.Kill();
        }
    }
 }
于 2012-11-14T08:53:07.217 回答
1

如果您想关闭整个单词应用程序,您可以调用:

Word.Application app = (Word.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application");
if (app == null)
    return true;
app.Quit(false);
于 2016-11-11T08:03:36.653 回答