DEBUG:在 Hook 过程调用期间,显示 vsjitdebugger.exe 错误

发布于 2024-10-17 22:06:06 字数 208 浏览 5 评论 0原文

我的应用程序包含 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心碎的声音 2024-10-24 22:06:06

该问题的解决方法如下:

  • 问题可能出现在函数SetWindowsHookEx()中,
  • 您可以在函数SetWindowsHookEx()中将threadID设置为NULL。
    当您将 NULL 替换为 currentthreadID 时,运行时错误就解决了。

The Solution for this problem is as follows:

  • problem may occur in the function SetWindowsHookEx(),
  • you may made threadID as NULL in the function SetWindowsHookEx().
    When you replace the NULL as currentthreadID, the runtimeerror is solved.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文