在不同的机器上获取 COM 异常 80040154
我遇到以下问题,有人可以帮忙吗? 我使用 Tlbimp 实用程序并将 VB6 COM DLL 转换为 RCW DLL。在我的 Visual Studio 2008 中,我使用“添加引用”并在 c# 类中使用该 DLL。在我的机器上一切正常。 但是,如果其他人在他/她的计算机上使用相同的项目,那么在该计算机上他们会收到以下错误:“由于以下错误 80040154,检索具有 CLSID {x} 的组件的 COM 类工厂失败”。我尝试在该计算机上搜索该 CLSID GUID,但在 HKCR/CLSID 位置下找不到。
有谁知道为什么它在不同的机器上出现问题以及我可以尝试解决这个问题吗?
谢谢。
I am getting following problem, can someone help please?
I used Tlbimp utility and converted VB6 COM DLL into RCW DLL. From my Visual Studio 2008, I used "Add Reference" and used that DLL in c# class. Everything works fine on my machine.
But if someone else use the same project on his/her machine then on that machine they get following error: "Retrieving the COM class factory for component with CLSID {x} failed due to the following error 80040154". I tried to search for that CLSID GUID on that machine but couldn't find under HKCR/CLSID location.
Does anyone has clue/idea why its giving problem on different machine and what I can try to resolve this problem?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您确定需要在另一台机器上安装COM对象吗?返回的错误意味着该类未注册。 tlbimp 只是创建一个包装程序集以将 COM 接口映射到 .NET,它不会转换 COM 对象本身,也不会随身携带它。
获取 VB6 COM 对象 DLL(或 .OCX),将其放在另一台计算机上并运行 regsvr32 object.ocx,它现在应该可以工作了。
You need to install the COM object on the other machine surely? The error getting returned means the class isn't registered. tlbimp just creates a wrapper assembly to map the COM interface into .NET, it does not convert the COM object itself and does not carry it with it.
Take the VB6 COM object DLL (or .OCX), put it on the other machine and run regsvr32 object.ocx and it should now work.
如果您不喜欢注册 COM 对象的想法,请查看免注册 COM。
http://msdn.microsoft.com/en-us/library/ms973913。 .aspx.
If you don't like the idea of registering the COM object, take a look at registration-free COM.
http://msdn.microsoft.com/en-us/library/ms973913.aspx.