Merge OCX with .NET EXE
Is th开发者_JAVA技巧ere 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.
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.
Apparently, VMware ThinApp allows this.
精彩评论