将 OCX 与 .NET EXE 合并
是否有任何工具(商业或免费软件)可以将 OCX 文件与 .NET 可执行文件合并? 我知道可以制作一个独立的 OCX 参考,但这对我来说还不够,我需要获得一个没有安装要求的 exe。
谢谢。
Is there any tool, commercial or freeware, that allows merging OCX files with .NET executable?
I know it's possible to make an isolated OCX reference, but that's not sufficient in my case, I need to get a single exe without installation requirement.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.ocx 是一种非托管 DLL,其中包含 COM 服务器(通常是 ActiveX 控件)。它无法合并到 .NET 程序集中。您必须将这些控件替换为自定义 Windows 窗体控件,才能顺利实施您的计划。
A .ocx is an unmanaged DLL that contains COM servers, ActiveX controls typically. It cannot be merged into a .NET assembly. You will have to replace those controls with, say, custom Windows Forms controls to get ahead on your plan.
显然,VMware ThinApp 允许这样做。
Apparently, VMware ThinApp allows this.