本文介绍了如何在ActiveX EXE中包装ActiveX DLL?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个32位的ActiveX dll.我有一个C#用户控制项目,该项目包装ActiveX dll以在WPF应用程序中使用.现在的问题是我们想将应用程序更改为64位.我们创建了一个64位构建目标,但由于它是32位,因此无法使用ActiveX dll.我正在考虑将ActiveX dll包装在ActiveX exe(输出COM)中,并在C#用户控件中引用ActiveX exe.有人可以提供一些在ActiveX exe中包装ActiveX dll的指南/演练吗?谢谢.

I have an ActiveX dll which is 32bit. I have a C# user control project which wraps the ActiveX dll for use in a WPF application. Now the problem is we want to change the application to 64bit. We created a 64bit building target, but we were unable to use the ActiveX dll because it is 32bit. I am considering wrapping the ActiveX dll in an ActiveX exe (out-proc COM), and reference the ActiveX exe in my C# user control. Could somebody provide some guide/walkthrough for wrapping an ActiveX dll in an ActiveX exe? Thanks.

推荐答案


这篇关于如何在ActiveX EXE中包装ActiveX DLL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 12:34