Advertisement
Guest User

AutoIt Datetime Control

a guest
Nov 4th, 2016
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.25 KB | None | 0 0
  1. #include <GUIConstantsEx.au3>
  2.  
  3. Local $hGUI = GUICreate("Window", 600, 500, -1, -1)
  4. Local $hDater = GUICtrlCreateDate ( "DateTest", 190, 50)
  5. GUISetState()
  6.  
  7. While 1
  8.     $hMsg = GUIGetMsg()
  9.     Switch $hMsg
  10.         Case $GUI_EVENT_CLOSE
  11.             Exit
  12.     EndSwitch
  13. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement