请问如何让程序在10分钟后运行?(已解决)
本帖最后由 mtvtop 于 2011-11-4 11:08 编辑我要怎么写程序才能让$Input1里的4:59分的时间实时倒数,当为00:00秒的时候运行程序?#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 446, 217, 192, 124)
$Input1 = GUICtrlCreateInput("Input1", 136, 40, 153, 21)
GUICtrlSetData($Input1 ,"9:59",1)
$Label1 = GUICtrlCreateLabel("开始运行时间倒数", 24, 40, 108, 17)
$Button1 = GUICtrlCreateButton("运行", 120, 88, 105, 41)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0,"错误","时间到了" )
EndSwitch
WEnd
本帖最后由 gzh888666 于 2011-11-4 02:31 编辑
请问如何让程序在10分钟后运行?
sleep(100*1000)
想显示到gui控件中,循环规定时间内不断改写控件的值就可以了! 楼上你那个是10分钟吗{:face (356):}
sleep(10*60*1000)
又学到新东西了.{:face (125):} 回复 2# gzh888666
哈哈 你这时间不对啊~drunk写的才是~!~ 谢谢大家,认真学了 也不是很懂。刚学 回复 2# gzh888666
其实这个问题的难点是倒计时显示,我认为的 回复 8# xms77
倒计时显示
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#include <Date.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 446, 217, 192, 124)
$Input1 = GUICtrlCreateInput("", 136, 40, 153, 21)
$Label1 = GUICtrlCreateLabel("开始运行时间倒数", 24, 40, 108, 17)
$Button1 = GUICtrlCreateButton("运行", 120, 88, 105, 41)
GUISetState(@SW_SHOW)
Global $Sec, $Min, $Hour, $Time,$iTicks ;定义变量
$StartTicks = _TimeToTicks(@HOUR, @MIN, @SEC) ;将当前时间转化为毫秒数
$EndTicks = $StartTicks + 5 * 60 * 1000 ;增加5分钟的毫秒数
#EndRegion ### END Koda GUI section ###
While 1
_jishi()
If $iTicks = 0 Then MsgBox(0, "错误", "时间到了");为0 说明时间到了,执行操作
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox(0, "错误", "时间到了")
EndSwitch
WEnd
Func _jishi() ;倒计时显示,虽然用SLEEP也可以,但是我觉得这样好像准点
$nowTicks = _TimeToTicks(@HOUR, @MIN, @SEC) ;将当前时间转化为毫秒数
$iTicks = $EndTicks - $nowTicks ;算差的毫秒数
_TicksToTime($iTicks, $Hour, $Min, $Sec) ;转为时分秒
$Time = StringFormat("%02i:%02i:%02i", $Hour, $Min, $Sec) ;格式
GUICtrlSetData($Input1, $Time) ;显示
EndFunc ;==>_jishi
回复 9# 骗子
学习了,多谢啊! 厉害,学习了
页:
[1]