#include <ButtonConstants.au3>
#include <DateTimeConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 615, 438, 192, 124)
$Group1 = GUICtrlCreateGroup("Group1", 32, 8, 561, 393)
$Input1 = GUICtrlCreateInput("Input1", 160, 160, 137, 21)
$Date1 = GUICtrlCreateDate("2014/11/19 13:48:1", 312, 160, 186, 21)
GUICtrlCreateGroup("", -99, -99, 1, 1)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Date1
$ss = GUICtrlRead($Date1)
GUICtrlSetData($Input1, $ss)
EndSwitch
WEnd
|