其他的我就不再举例了,大家帮看下代码,到底是哪里出了错,麻烦帮修改一下。(代码 + 截图)
set a=createobject("scripting.filesystemobject")
a=inputbox("","请输入你要提醒的时间...(以分钟计算)","请输入大于0的数字")
set b=createobject("wscript.shell")
if a="" then
wscript.quit
else
if a="0" then
msgbox "数值不能为0,请重新操作...",16,"错误的请求!"
else
if a<"1" then
msgbox "还有 " & 60*a & " 秒钟的时间...",6,"提示..."
else
if a<"60" then
b.popup "你已经设置好时间倒计时,请在 " & a & " 分钟后结束游戏...",10,"提示..."
wscript.sleep 60000*a
msgbox a & " 分钟已经过去,游戏时间已到...",64,"注意了..."
else
if a>"60" or a="60" then
b.popup "你已经设置好时间倒计时,请在 " & a/60 & " 小时后停止玩游戏...",10,"提示..."
wscript.sleep 60000*a
msgbox a/60 & " 小时已经过去,请立即停止游戏...",48,"注意了..."
else
end if
end if
end if
end if
end if