查看: 40  |  回复: 0
  VB6 代码管家-判断某程序是否未响应
楼主
发表于 2024年12月8日 21:49
Private Declare Function IsHungAppWindow Lib "user32.dll" (ByVal hWnd As Long) As Long
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Private Sub Timer1_Timer()
	If FindWindow(vbNullString, "标题") <> 0 Then                 '判断程序是否运行
		If IsHungAppWindow(FindWindow(vbNullString, "标题")) = 1 Then '如果程序未响应
			Me.Caption = "程序未响应"
		Else                                                          '如果程序运行正常
			Me.Caption = "程序运行正常"
		End If
	Else                                                          '如果程序没有运行
		Me.Caption = "程序未运行"
	End If
End Sub


您需要登录后才可以回帖 登录 | 立即注册
【本版规则】请勿发表违反国家法律的内容,否则会被冻结账号和删贴。
用户名: 立即注册
密码:
2020-2024 MaNongKu.com