单击一次和 ActiveX
除了安装 com“ActiveX”元素之外,我的“clickonce”Windows 窗体应用程序可以正常工作。用户的机器几乎没有权限,即他们无法安装甚至无法导航到机器之外的网站。我对如何在不注册或安装的情况下包含 activex 控件感到有点困惑。还有其他人遇到过这个问题吗?
I have my "clickonce" windows form app working except for the installation of a com "ActiveX" element. The users machines have almost no permissions ie they cannot install or even navigate to a website outside one. I am a little stumped as to how include the activex control without registering or installing it. Has anyone else ran into this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用清单文件对 COM DLL 进行免注册加载。请参阅 http://msdn.microsoft.com/en-us/magazine /cc188708.aspx#S1 了解更多信息。
编辑:
该链接似乎已失效。这里是COM组件的免注册激活MSDN 演练。
还有免注册激活基于.NET的组件 MSDN 演练。
You can do a registration-free load of your COM DLL using a manifest file. See http://msdn.microsoft.com/en-us/magazine/cc188708.aspx#S1 for more info.
Edit:
The link seems to be dead. Here is a registration-free activation of COM components MSDN walk-through.
There is also registration-free activation of .NET-based components MSDN walk-through.