|
本帖最后由 qq82015930 于 2010-9-15 23:59 编辑
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 418, 203, 192, 114)
$Button1 = GUICtrlCreateButton("执行", 72, 56, 75, 25)
$Button2 = GUICtrlCreateButton("Button2", 280, 88, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
$ok1 = FileExists("d:\123.exe")
IF $ok1 = 0 Then
MsgBox(4096, "提示","路径错误!", 10)
;在这点这么让它回到GUI 用EXIT 会退出GUI 不用又会运行下面的
Else
EndIF
MsgBox(4096, "提示","怎么还在运行!", 10)
Run ("d:\123.exe")
EndSwitch
WEnd[/code]终止脚本返回GUI 的问题,怎么让他返回GUI同时停止执行后面的脚本内容 |
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有账号?加入
×
评分
-
查看全部评分
|