Advertisement
Guest User

Untitled

a guest
Jul 12th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. PARAMETERS: paNAME TYPE c LENGTH 30,
  2.         paDATE TYPE dats.
  3.  
  4. ; Wäre in AutoIt das hier:
  5.  
  6. GUICreate("")
  7. $cName = GUICtrlCreateInput("",...)
  8. $cDatum = GUICtrlCreateDate("")
  9.  
  10. While 1
  11.     $nMsg = GUIGetMsg
  12.     Switch $nMsg
  13.             Case -3
  14.         $sName = GUICtrlRead($cName)
  15.         $sDate = GUICtrlRead($cDatum)
  16.     Endswitch
  17. WEnd
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement