Darksider3

gui

Jul 31st, 2010
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.71 KB | None | 0 0
  1. #include <GUIConstants.au3>
  2.  
  3. #Region
  4. ### START Koda GUI section
  5. $Form1_1 = GUICreate("Form1", 198, 276, 290, 168)
  6. $server = GUICtrlCreateInput("server", 16, 8, 169, 21)
  7. $Absender = GUICtrlCreateInput("Absender", 16, 40, 169, 21)
  8. $Betreff = GUICtrlCreateInput("Betreff", 16, 104, 169, 21)
  9. $OK = GUICtrlCreateButton("OK", 16, 224, 73, 25, 0)
  10. $Delete = GUICtrlCreateButton("Delete", 112, 224, 75, 25, 0)
  11. $inhalt = GUICtrlCreateEdit("", 16, 128, 169, 81)
  12. GUICtrlSetData(-1, "inhalt")
  13. $empfaenger = GUICtrlCreateInput("empfaenger", 16, 72, 169, 21)
  14. GUISetState(@SW_SHOW)
  15. #EndRegion ### END Koda GUI section ###
  16.  
  17. While 1
  18.     $nMsg = GUIGetMsg()
  19.     Switch $nMsg
  20.         Case $GUI_EVENT_CLOSE
  21.             Exit
  22.  
  23.     EndSwitch
  24. WEnd
Add Comment
Please, Sign In to add comment