为什么时间怎么都修改不了。。
我想把时间修改为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() GUICtrlSetData($n, '2016/01/26 23:59:38') 回复 2# afan
我擦。。老大就是老大。分分钟搞定。谢谢! 原因是日期格式不对吗? 老大就是老大。分分钟搞定。谢谢!
页:
[1]