Create ActiveX.exe using .Net 4 and VS2010

My application is a vb6 application that refers to the delphi active.exe file. I need to replace this file with C # one. How to create ActiveX exe with VS 2010 and C #?

(it goes without saying that I cannot work with files other than activeX exe)

+2
source share
1 answer

There is a tutorial from Microsoft on porting VB6 ActiveX EXE to .NET .

An alternative approach might be to convert it to a regular .NET COM Interop DLL, which is much simpler, but you might want it to run outside of a process that the DLL cannot execute.

+1
source

Source: https://habr.com/ru/post/1274742/


All Articles