如题。。。
程序如下:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
Opt("GUIOnEventMode", 1)
$Form1 = GUICreate("我的程序", 350, 223, 192, 114)
$safe = GUICtrlCreateButton("保护", 211, 192, 59, 25, 0)
$stopsafe = GUICtrlCreateButton("停止", 278, 192, 59, 25, 0)
GUICtrlSetOnEvent($safe,"safe")
GUICtrlSetOnEvent($stopsafe,"stopsafe")
GUISetOnEvent($GUI_EVENT_CLOSE, "CLOSEClicked")
GUISetState(@SW_SHOW)
While 1
Sleep(1000)
WEnd
Func CLOSEClicked()
Exit
EndFunc
Func safe()
do
If Not ProcessExists("qq.exe") Then
Run("d:\myqq\qq.exe")
EndIf
Sleep(5000)
$i=0
Until $i=1;不断地执行检测
EndFunc
Func stopsafe()
exitloop;此处为什么不能中断上面的循环?
endfunc
Func stopsafe()
exitloop;此处为什么不能中断上面的循环?要停止上面的循环非要设置热键么?有没其它办法?改成EXIT之后,依然是按停止无法退出程序!如何是好?将until $i=1改成until stopsafe() 程序运行一下就停止了。如果改成until $stopsafe。程序执行一次,不能循环了。。怎么办?望达人们指教……
[ 本帖最后由 半芯蕃茄 于 2009-1-11 01:04 编辑 ] |