在 64 位 Windows 7 上的 .net 桌面应用程序中使用 vb6 dll
我在 Desktop .net 3.5 应用程序中使用的旧 vb dll 出现问题。我最近买了一台运行 64 位 Windows 7 的新计算机,而旧计算机是 32 位。从 dll 创建类实例时出现此异常。
dll 的名称以 Interop.DllName 开头。
这是例外情况:
由于以下错误,检索具有 CLSID {C198B362-6AE8-4DC3-A3E9-5DA5E60B326F} 的组件的 COM 类工厂失败:80040154。
使用 regsvr32 在注册表上注册 dll 没有问题,但是当我我正在尝试使用 RegDllView 查找 dll,但找不到它。
感谢您的帮助!
I got a problem with old vb dll that I use in my Desktop .net 3.5 application. I recently got a new computer that runs 64 bit windows 7 while the old one was 32. And I'm getting this exception when creating instance of class from the dll.
The name of the dll starts with Interop.DllName.
This is the exception:
Retrieving the COM class factory for component with CLSID {C198B362-6AE8-4DC3-A3E9-5DA5E60B326F} failed due to the following error: 80040154.
There is no problem with registering the dll on the registry using regsvr32 but when I'm trying to find the dll using RegDllView I can't find it.
Thanx for the assistance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要确保 .Net 应用程序目标平台设置为 x86,否则程序将在 64 位进程中运行,并且将无法加载 32 位 dll
You will need to ensure that you .Net application target platform is set to x86 or the program will run in a 64bit process and will not be able to load a 32bit dll