DEBUG:在 Hook 过程调用期间,显示 vsjitdebugger.exe 错误
我的应用程序包含 ole 小部件。为了处理 ole 小部件,我使用鼠标挂钩程序来跟踪鼠标单击事件。关闭应用程序时,它会出现一些闪烁,有时会显示以下错误
- 无法使用位置 explorer.exe
- C: \Windows\System32\vsjitdebugger.exe(运行时错误)
问候,
karthik
My Application contains ole widgets.To handle ole widgets , I use mouse hook procedure to keep track the mouse click events.while closing the application , it provides some flickering and sometimes it shows the following errors
- Unable to use the location explorer.exe
- C:\Windows\System32\vsjitdebugger.exe (Runtime error)
Regards,
karthik
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该问题的解决方法如下:
SetWindowsHookEx()
中,SetWindowsHookEx()
中将threadID设置为NULL。当您将 NULL 替换为 currentthreadID 时,运行时错误就解决了。
The Solution for this problem is as follows:
SetWindowsHookEx()
,SetWindowsHookEx()
.When you replace the NULL as currentthreadID, the runtimeerror is solved.