vb判断进程是否存在

代码简单点就行了,最好加上注释... 代码简单点就行了,最好加上注释 展开
 我来答
牛人影视
推荐于2018-03-30 · TA获得超过1395个赞
知道大有可为答主
回答量:1491
采纳率:0%
帮助的人:1603万
展开全部
调用方法:
if checkexeisrun("VB6.EXE") then msgbox "存在"

'检查进程是否运行,exeName 参数是要检查的进程 exe 名字,比如 VB6.EXE
Private Function CheckExeIsRun(exeName As String) As Boolean
On Error GoTo Err
Dim WMI
Dim Obj
Dim Objs
CheckExeIsRun = False
Set WMI = GetObject("WinMgmts:")
Set Objs = WMI.InstancesOf("Win32_Process")
For Each Obj In Objs
If (InStr(UCase(exeName), UCase(Obj.Description)) <> 0) Then
CheckExeIsRun = 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
mdmmdm2
2011-12-07 · TA获得超过414个赞
知道小有建树答主
回答量:209
采纳率:0%
帮助的人:92.9万
展开全部
如果是判断自己是否运行比较简单,用APP对象的属性,好像是Instance。如果为真就表明已经运行了一个副本了。可以控制只启动一个程序。要判断别的进程是否启动,就要用Win32函数,好像是WinProc,具体要看帮助了。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式