vote up 5 vote down star
2

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?

flag

2 Answers

vote up 7 vote down check

You need to use REGASM. To register both the 32 bit and 64 bit interfaces I believe you need to run each of the REGASM's in:

C:\Windows\Microsoft.NET\Framework\v2.0.50727>

and

C:\Windows\Microsoft.NET\Framework64\v2.0.50727>

So...in your case you need to run the REGASM in the Framework64\v2.0.50727 folder.

Here's an example we use to register a COM interop DLL for one of our legacy ASP apps:

regasm.exe Hosting.DeviceManager.Power.dll /register /codebase /tlb

HTH
Kev

link|flag
Perfect, thank you. I got it to work. – Jason Dec 16 '08 at 19:53
vote up 0 vote down

Use regasm.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.