找回密码
 立即注册
查看: 13|回复: 0

C#代码获取另一程序的错误提示,并关闭窗口防止进程假死

[复制链接]

30

主题

2

回帖

164

积分

管理员

积分
164
发表于 2025-3-26 15:43:22 | 显示全部楼层 |阅读模式
A程序报错弹框如下:
B程序捕捉到此错误消息,并关闭。B程序核心代码如下。
  1. private void timer_Click(object sender, EventArgs e)
  2. {
  3.     //查找MessageBox的弹出窗口,注意对应标题
  4.     IntPtr ptr = FindWindow(null, "提示");
  5.     if (ptr != IntPtr.Zero)
  6.     {
  7.         EnumChildWindows(ptr.ToInt32(), callBackEnumChildWindows, 0);
  8.         PostMessage(ptr, WM_CLOSE, IntPtr.Zero, IntPtr.Zero);//查找到弹窗则关闭它
  9.     }
  10. }

  11. #region api
  12. [DllImport("user32.dll", EntryPoint = "FindWindow", CharSet = CharSet.Auto)]
  13. private extern static IntPtr FindWindow(string lpClassName, string lpWindowName);

  14. [DllImport("user32.dll", CharSet = CharSet.Auto)]
  15. public static extern int PostMessage(IntPtr hWnd, int msg, IntPtr wParam, IntPtr lParam);

  16. public const int WM_CLOSE = 0x10;

  17. [DllImport("user32.dll")]
  18. public static extern int EnumChildWindows(int hWndParent, CallBack lpfn, int lParam);

  19. /// <summary>
  20. /// 子窗口回调函数代理
  21. /// </summary>
  22. public static CallBack callBackEnumChildWindows = new CallBack(ChildWindowProcess);

  23. /// <summary>
  24. /// 子窗口回调处理函数
  25. /// </summary>
  26. /// <param name="hwnd"></param>
  27. /// <param name="lParam"></param>
  28. /// <returns></returns>
  29. public static bool ChildWindowProcess(int hwnd, int lParam)
  30. {
  31.     StringBuilder text = new StringBuilder(200);
  32.     int len;
  33.     len = GetWindowText(hwnd, text, 200);
  34.     if (len > 0)
  35.     {
  36.         if (text.ToString().Contains("未将对象引用"))
  37.         {
  38.             //找到错误
  39.         }
  40.     }
  41.     return true;
  42. }
  43. [DllImport("user32.dll")]
  44. public static extern int GetWindowText(int hWnd, StringBuilder lpString, int nMaxCount);

  45. /// <summary>
  46. /// 回调函数代理
  47. /// </summary>
  48. public delegate bool CallBack(int hwnd, int lParam);

  49. [DllImport("user32.dll")]
  50. public static extern int GetWindowTextLength(IntPtr hWnd);
  51. #endregion
复制代码

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|小黑屋|软件开发编程门户 ( 陇ICP备2024013992号-1|甘公网安备62090002000130号 )

GMT+8, 2025-4-3 21:08 , Processed in 0.054163 second(s), 21 queries .

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表