如何判断 VSTO 外接程序是否已加载?
我正在为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注册表项:
“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.