InputBox对话框怎么退出脚本
下面这脚本,我点InputBox框的取消和右上角的X都不能退出脚本还是继续执行下面的脚本
要加什么语句才能退出啊? 麻烦大家帮我看下,谢
而且脚本启动的时候会导致机器变卡,是什么原因啊?
#NoTrayIcon
$RunTime = "测试" ;==>防止2次运行
If WinExists($RunTime) Then
MsgBox(32,"","程序已运行,请返回。")
Exit
EndIf
;>>>>>>>>>>>>>===============================
$jine=InputBox ( "测试", "测试", "" , "" , 176, 144)
$name=InputBox ( "测试", "测试", "" , "" , 176, 144)
sleep (300)
send ("{HOME}")
sleep (500)
send ($jine)
[ 本帖最后由 landays 于 2009-2-8 20:51 编辑 ] $jine=InputBox ( "测试", "测试", "" , "" , 176, 144)
if @error=1 Then Exit
$name=InputBox ( "测试", "测试", "" , "" , 176, 144)
if @error=1 Then Exit
MsgBox(0,0,$jine&" "&$name) 没看出有什么问题。
测试是可行的。 多谢楼上2位,问题解决了。
页:
[1]