本文介绍了如何在BHO中设置发布者名称的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我在C#中为Internet Explorer编写了BHO和工具栏。它们正在安装并正常工作。在IE8的manage add-ons窗口中,我可以看到我的BHO和工具栏。但是,两者的发布者名称都设置为控件名称不可用。如何设置发布者名称?
I have written a BHO and a toolbar for Internet Explorer in C#. They are getting installed and working properly. In the manage add-ons window in IE8, I am able to see both my BHO and toolbar. But, the publisher name of both is set to "Control name is not available". How can I set the publisher name?
推荐答案
两件事:
- 您是否正在签署.dll?您需要在模块和安装包上签名。
- 确保您的.dll在.rc文件中有一个VERSIONINFO资源。 ,其中包含您可以提供的示例基本上剪切和粘贴。
- Are you signing your .dll? You need to sign your modules as well as your installation package.
- Make sure your .dll has a VERSIONINFO resource in your .rc file. Here's the documentation which has a sample you can basically cut and paste.
这篇关于如何在BHO中设置发布者名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!