用脚本判断指定程序是否运行
用脚本判断指定程序是否运行,若有运行就自动退出,否则继续运行[ 本帖最后由 zhao08681 于 2008-11-4 09:16 编辑 ] if progressexists("****.exe") <> 0 then
ProgressCLOSE("****.exe")
else
Run()
endif
[ 本帖最后由 netegg 于 2008-11-3 21:10 编辑 ] 两个方法
一、通过线程判断程序是否存在
二、通过判断窗口是否存在 判断线程?dllcall? 谢谢二楼啊,不过应该是ProcessExists和ProcessClose:face (33): if progressexists("****.exe")0 then
ProgressCLOSE("****.exe")
else
Run()
endif
[ 本帖最后 ...
netegg 发表于 2008-11-3 21:07 http://www.autoitx.com/images/common/back.gif
这个好使,成功了。
应当是:if ProcessExists("****.exe") <> 0 then
ProcessClose("****.exe")
else
Run()
endif
页:
[1]