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
/
GUICtrlSetCursor.au3
< prev
next >
Wrap
Text File
|
2005-01-07
|
208b
|
12 lines
#include <GUIConstants.au3>
GUICreate("put cursor over label", 300, 100)
GUICtrlCreateLabel("label",125,40)
GUICtrlSetCursor(-1, 4)
GUISetState ()
While GUIGetMsg()<> $GUI_EVENT_CLOSE
WEnd
Exit