zhenglei 发表于 2016-1-26 20:31:19

为什么时间怎么都修改不了。。

我想把时间修改为23:59:38秒。为什么用GUICtrlSetData怎么都修改不了啊#include <GUIConstantsEx.au3>
#include <DateTimeConstants.au3>
Local $n, $msg
        GUICreate("My GUI get time", 200, 200, 800, 200)
        $n = GUICtrlCreateDate("", 20, 20, 100, 20, $DTS_TIMEFORMAT)
        GUICtrlSetData($n,@HOUR&":"&@MIN&":"&@SEC&" 23:59:38");;;;;;;;;修改时间为23:59:38
        GUISetState()
        ; 运行界面,直到窗口被关闭
        Do
                $msg = GUIGetMsg()
        Until $msg = $GUI_EVENT_CLOSE

        MsgBox(4096, "Time", GUICtrlRead($n))
        GUIDelete()

afan 发表于 2016-1-26 21:08:37

GUICtrlSetData($n, '2016/01/26 23:59:38')

zhenglei 发表于 2016-1-26 22:02:51

回复 2# afan
我擦。。老大就是老大。分分钟搞定。谢谢!

wln 发表于 2016-1-31 11:24:11

原因是日期格式不对吗?

凡之雪 发表于 2017-8-17 00:04:02

老大就是老大。分分钟搞定。谢谢!
页: [1]
查看完整版本: 为什么时间怎么都修改不了。。