gpt4 book ai didi

c# - 查找 Office 应用程序的现有实例

转载 作者:行者123 更新时间:2023-11-30 20:22:30 26 4
gpt4 key购买 nike

有什么方法可以将现有的 MS Publisher 实例获取为 Microsoft.Office.Interop.Publisher.Application

我发现了这个:

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

所以我可以检查它是否已经在运行,但是如何将它转换为 MS Publisher 应用程序?所以我可以调用 Microsoft.Office.Interop.Publisher.Application.Open 例如?

最佳答案

你可以试试这个 Microsoft getActiveObject .这是一个例子。

    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);
}

希望我有所帮助!

关于c# - 查找 Office 应用程序的现有实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31361795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com