Register 32 bit COM DLL to 64 bit Windows 7

后端 未结 10 1358
小蘑菇
小蘑菇 2020-11-27 05:27

I have a 32 bit COM component DLL and this DLL is written in Delphi. It\'s a Win32 DLL. I want to use this DLL in my Visual C# project on .NET platform.

I can\'t add

10条回答
  •  独厮守ぢ
    2020-11-27 05:54

    The problem is likely you try to register a 32-bit library with 64-bit version of regsvr32. See this KB article - you need to run regsvr32 from windows\SysWOW64 for 32-bit libraries.

提交回复
热议问题