本帖最后由 lchl0588 于 2010-11-8 13:41 编辑
先运行代码,再运行‘计事本’ !
如下代码:ProcessWait("notepad.exe")
While 1
a()
If b()=0 Then ;这里是进程开关 如果关闭“计事本”同时关代码,这里设0;如果关闭“计事本”同时不关代码,这里设1
Exit ;这里当然要加选择条件才能控制!
EndIf
WEnd
Func a()
If ProcessExists("NOTEPAD.EXE") Then
$i = 1
Do
ToolTip("已用[" & $i & "]秒")
Sleep(1000)
$i = $i + 1
Until ProcessExists("NOTEPAD.EXE") = 0
ToolTip("正在关闭")
EndIf
EndFunc
Func b()
If ProcessExists("NOTEPAD.EXE") Then
$PID = Run("notepad.exe")
ProcessWaitClose($PID)
EndIf
EndFunc
-------------------------------------------------------------------
回复 4# 依旧漂泊
我在代码加注释了 |