如何判断 VSTO 外接程序是否已加载?

发布于 2024-12-09 06:18:17 字数 100 浏览 0 评论 0原文

我正在为 Outlook 开发一个 VSTO 加载项,如果加载另一个自定义 VSTO,它将执行特定操作。我如何确定 VSTO 是否已加载?除了编写一些插件之外,我还没有深入研究 COM。

I'm working on a VSTO add-in for Outlook that, if another custom VSTO is loaded, will perform a specific action. How would I determine if that VSTO is loaded? I've not delved too far into COM as of yet other than writing a number of add-ins.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

£噩梦荏苒 2024-12-16 06:18:17

注册表项:

“HKLM\Software\Microsoft\Office\Outlook\Addins[YourAddInName]”

您可以检查注册表中的

。该密钥存在意味着插件已安装。
您还可以读取上面键下的值LoadBehaviour,值3表示插件已加载/将正常加载。值 2 表示该插件有问题。

You can check the key:

"HKLM\Software\Microsoft\Office\Outlook\Addins[YourAddInName]"

in the registry.

Existence of the key means that the AddIn is installed.
You can also read the value LoadBehaviour under the above key, the value 3 means that the addin is loaded/to be loaded normally. The value 2 means that the addin has problems.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文