I am building a C# ActiveX DLL… do I use REGASM or REGSVR32 to register it?
How do I register the 64-bit interface vs the 32-bit interface?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to use
regasm.exeto register both the 32 bit and 64 bit interfaces I believe you need to run each of theregasm.exe‘s in:and
So… in your case you need to run the
regasm.exein theFramework64\v2.0.50727folder.Here’s an example we use to register a COM interop DLL for one of our legacy ASP apps: