Find existing instance of Office Application

…衆ロ難τιáo~ 提交于 2019-11-28 09:46:59

问题


Is there any way to get existing instance of MS Publisher as Microsoft.Office.Interop.Publisher.Application?

I've found this:

System.Diagnostics.Process.GetProcessesByName("Microsoft Publisher")

So I can check if this is already running, but how to convert it to MS Publisher application? So I can call Microsoft.Office.Interop.Publisher.Application.Open for e.g.?


回答1:


You could try this Microsoft getActiveObject. Here's an example.

    object word;
    try
    {
        word = System.Runtime.InteropServices.Marshal.GetActiveObject("Word.Application");
//If there is a running Word instance, it gets saved into the word variable
    }
    catch (COMException)
    {
//If there is no running instance, it creates a new one
        Type type = Type.GetTypeFromProgID("Word.Application");
        word = System.Activator.CreateInstance(type);
    }

Hope i helped!



来源:https://stackoverflow.com/questions/31361795/find-existing-instance-of-office-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!