32 bit ActiveX Control in a 64 bit .NET App

后端 未结 2 474
广开言路
广开言路 2020-12-21 09:33

I\'m creating a C#.Net application which I want to be able to compile for \"All CPUs\". I also want to include a specific ActiveX control in the UI of this app, but the Acti

2条回答
  •  青春惊慌失措
    2020-12-21 10:05

    You can't load 32 bit components in a 64 bit application, but you can wrap the component in its own process and use IPC to leverage the features of the component. Of course this may not be feasible depending on the actual component.

提交回复
热议问题