srhack 发表于 2012-4-5 14:33:02

关于定时关机重启的小东东求助,。???

本帖最后由 srhack 于 2012-4-5 16:09 编辑

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <DateTimeConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 295, 140, 192, 114)
$Date1 = GUICtrlCreateDate("", 40, 48, 80, 20, BitOR($DTS_UPDOWN,$DTS_TIMEFORMAT))
$Combo1 = GUICtrlCreateCombo("", 176, 48, 49, 25, BitOR($CBS_DROPDOWN,$CBS_AUTOHSCROLL))
GUICtrlSetData(-1,"关机|重启", "重启")
$Button1 = GUICtrlCreateButton("执行", 40, 88, 81, 33)
$Button2 = GUICtrlCreateButton("退出", 160, 88, 81, 33)
$Label1 = GUICtrlCreateLabel("当前时间:", 48, 8,170, 17)
GUICtrlSetData($Label1,"当前时间: "&@HOUR&":"&@MIN&":"&@SEC&""&@MON&"月"&@MDAY&"日")
GUICtrlSetColor(-1, 0xFF0000)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
$t1 = ""
$t2 = ""
While 1
       
       
        $nMsg = GUIGetMsg()
       
       
        Switch $nMsg
               
                Case -3
                        Exit
                       
                       
                       
                case $Button2
                        exit
                case $Button1
                       
                       
                       
                       

        EndSwitch

        $t1=@HOUR&":"&@MIN&":"&@SEC;$T3等于当前时间
      If $t1 <> $t2 then
               
                GUICtrlSetData($Label1,"当前时间: "&@HOUR&":"&@MIN&":"&@SEC&""&@MON&"月"&@MDAY&"日")
                               
                 $t2=$t1
                           EndIf

       
WEnd


请教下如果当我点执行时。。,怎么才能在指定的时候呢,,关机或启起呢,,也就是定时关机重起。。。。

lixiaolong 发表于 2012-4-5 14:58:51

提问标题不明确,问题描述一句话等类似提问直接删除主题!
http://www.autoitx.com/thread-573-1-1.html
http://www.autoitx.com/thread-18544-1-1.html
http://www.autoitx.com/thread-16803-1-1.html
http://www.autoitx.com/thread-10945-1-1.html

不改标题,提问内容,这个贴还是被关闭.

afan 发表于 2012-4-5 14:59:33

标题能叙述问题吗?
本帖也即将被删除。
老会员还犯这种错误… 置顶帖中就有三个主题帖专门强调。
http://www.autoitx.com/thread-10945-1-1.html

srhack 发表于 2012-4-5 15:00:44

回复 3# afan


    不好意思老大。。我改了

srhack 发表于 2012-4-5 15:01:02

回复 2# lixiaolong


    谢谢提醒失误

user3000 发表于 2012-4-5 15:58:15

回复 4# srhack

我是楼主修改后进来的, 但似乎还是不知道楼主要想得到什么帮助.
一堆代码, 一张图, 然后说: 这样一个判断接下来怎么写.
楼主你到底想做什么? 我可是判断不出你想做什么, 非玩笑话!

srhack 发表于 2012-4-5 16:08:24

回复 6# user3000


    我是说当然点执行时。所选的时间多少,,然后选关机或重启,就是一个定时关机或重启啊

user3000 发表于 2012-4-5 16:21:09

回复 7# srhack

无语, 把这些话加到顶楼不就好了?
这类时间判断, 首先应该判断'点' , 其次判断'分', 最后是'秒'吧?; T1 : 14:26:29
If @hour = 14 and @min = 26 And @Sec >= 29 Then ShutDown(6); 强制重启 最后判断计秒是用 大于等于, 是因为担心别的代码中有 Sleep 之类累计到秒的延迟, 如果只是等于, 就有可能造成该语句不执行.

srhack 发表于 2012-4-5 17:44:34

回复 8# user3000


    非常感谢!/没怎么弄明白

xyhqqaa 发表于 2012-4-10 16:21:29

看看瞧一瞧、、、
页: [1]
查看完整版本: 关于定时关机重启的小东东求助,。???