如何用VB编写一个查询进程是否在运行的程序,要简洁的,最好详细代码

 我来答
960310983
2011-07-07 · TA获得超过352个赞
知道小有建树答主
回答量:867
采纳率:0%
帮助的人:205万
展开全部
'这个简单
Function CheckApplicationIsRun(ByVal szExeFileName As String) As Boolean
On Error GoTo Err
Dim WMI
Dim Obj
Dim Objs
CheckApplicationIsRun = False
Set WMI = GetObject("WinMgmts:")
Set Objs = WMI.InstancesOf("Win32_Process")
For Each Obj In Objs
If InStr(UCase(szExeFileName), UCase(Obj.Description)) <> 0 Then
CheckApplicationIsRun = True
If Not Objs Is Nothing Then Set Objs = Nothing
If Not WMI Is Nothing Then Set WMI = Nothing
Exit Function
End If
Next
If Not Objs Is Nothing Then Set Objs = Nothing
If Not WMI Is Nothing Then Set WMI = Nothing
Exit Function
Err:
If Not Objs Is Nothing Then Set Objs = Nothing
If Not WMI Is Nothing Then Set WMI = Nothing
End Function
Private Sub Command1_Click()
If CheckApplicationIsRun("qq.exe") = True Then
MsgBox "该进程已经存在!!", , "提示"
Else
MsgBox "该进程不存在!!", , "提示"
End If
'采纳吧
End Sub
G0398
2011-07-07 · TA获得超过764个赞
知道小有建树答主
回答量:1335
采纳率:0%
帮助的人:869万
展开全部
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Dim hwd As Long

Private Sub Timer1_Timer()

hwd = FindWindow(vbNullString, "植物大战僵尸")

If hwd <> 0 Then

Label1.Caption = "游戏【植物大战僵尸】正在运行!": Label1.ForeColor = vbRed: Label1.FontSize = 16

End If

If hwd = 0 Then

Label1.Caption = "游戏【植物大战僵尸】没有运行!": Label1.ForeColor = vbRed: Label1.FontSize = 16

End If

End Sub
简洁的、、、、、、、、、、、
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
一拳轮到俩
2011-07-07 · TA获得超过1929个赞
知道小有建树答主
回答量:1732
采纳率:100%
帮助的人:942万
展开全部
这个很简单 不给分懒得给你写
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式