CComPtr CoCreateInstance 返回 0x80070582(类已存在。)
我有一个 StartComObjects 函数,当用户按下“登录”按钮时调用,一个 StopComObjects 函数,当用户按下“取消”按钮时调用。 StartComObjects 函数使用 CComPtr.CoCreateInstance 创建 COM 对象并使用 AfxConnectionAdvise 设置一些连接点。当用户按下 Cancel 按钮时,将使用 AfxConnectionUnadvise 断开连接点,并且在调用 CComPtr 上的 Release 之前停止 COM 对象。
当我第二次按下登录按钮时,CComPtr.CoCreateInstance 返回 0x80070582 (类已存在)。这可以防止在第二次调用 StartComObjects 时创建 COM 对象。我不知道为什么这不起作用。难道 CComPtr::Release 不应该释放 COM 对象并允许我在旧对象停止后创建一个新对象吗?有什么办法可以解决这个问题吗?
I have a StartComObjects function called when the user presses the Login button and a StopComObjects function called when the user presses the Cancel button. The StartComObjects function uses CComPtr.CoCreateInstance to create the COM object and sets up some connection points using AfxConnectionAdvise. When the user presses the Cancel button the connection points are disconnected using AfxConnectionUnadvise and the COM object is stopped before calling Release on the CComPtr.
When I press the login button a second time the CComPtr.CoCreateInstance returns 0x80070582 (Class already exists). This prevents the COM object from being created on the second call to StartComObjects. I am not sure why this isn't working. Shouldn't CComPtr::Release free the COM object and allow me to create a new one after the old one was stopped? Is there any way to get around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是由 RegisterClass(Ex) 引起的 Windows 错误(设施 7,错误代码 1410)。此示例代码重现了它:
查看代码以查找 coclass 使用 RegisterClass(Ex) 的位置。当实例被销毁时,它必须使用UnregisterClass。或者避免再次注册窗口类。或者忽略具体的错误代码。
It is a Windows error (facility 7, error code 1410), caused by RegisterClass(Ex). This sample code reproduces it:
Look through your code for places where the coclass uses RegisterClass(Ex). It must use UnregisterClass when the instance is destroyed. Or avoid registering the window class again. Or ignore the specific error code.