home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / GUICtrlSendToDummy.au3 < prev    next >
Text File  |  2005-01-07  |  655b  |  28 lines

  1. #include <GUIConstants.au3>
  2. Opt("GUIOnEventMode", 1)
  3.  
  4. GUICreate("GUISendToDummy",220,200, 100,200)
  5. GUISetBkColor (0x00E0FFFF)  ; will change background color
  6. GUICtrlSetOnEvent($GUI_EVENT_CLOSE, "OnClick") ; to handle click on button
  7.  
  8. $user = GUICtrlCreateDummy()
  9. GUICtrlSetOnEvent(-1, "Onexit") ; to handle click on button
  10. $button = GUICtrlCreateButton ("event",75,170,70,20)
  11. GUICtrlSetOnEvent(-1, "OnClick") ; to handle click on button
  12. GUISetState()
  13.  
  14. While 1
  15.    Sleep (100)
  16. Wend
  17.  
  18. Exit
  19.  
  20. Func OnClick()
  21.    GUICtrlSendToDummy($user)  ; fired dummy control
  22. EndFunc
  23.  
  24. Func OnExit()
  25.    ; special action before exiting
  26.    Exit
  27. EndFunc
  28.