home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2006 January
/
PCWELT_1_2006.ISO
/
pcwsoft
/
autoit-v3-setup.exe
/
Examples
/
GUICtrlSetCursor.au3
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2005-01-07
|
208 b
|
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