本帖最后由 xyhqqaa 于 2012-5-17 10:35 编辑
新手求助简单读取时间。得到返回值为h:mm:ss....但是我想得到的返回值希望是hh:mm:ss 也就是比如09:10:11
#include <ButtonConstants.au3>
#include <DateTimeConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <GuiDateTimePicker.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 321, 217, 192, 114)
$Date1 = GUICtrlGetHandle(GUICtrlCreateDate("", 64, 24, 210, 21,$DTS_TIMEFORMAT))
_GUICTRLDTP_SETFORMAT ( $DATE1 , "HH:mm:ss" )
$Button1 = GUICtrlCreateButton("Button1", 112, 64, 75, 25)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
MsgBox("","",GUICtrlRead($DATE1))
EndSwitch
WEnd
如此的话得到的返回值不正确。
或者寻求设置时间格式。。并得到想要的返回值。。。。我不知道我哪错了 |