Fire Posted March 29, 2010 Posted March 29, 2010 (edited) Hi to all Great Auto IT commnunity. Some days ago i searched on forum about custom Cursor For GUI and i found it(sorry i didnt remember URL). It works like Charm.(Thanks to author) BTW i have another question. Is it Possible use some .cur or .ani cursor for controlID`s? For example for list view or for Editbox and etc. Here is For GUI it works cool(But for CONTROLIDs it didn`t work) So My question is it possible use Custom Cursors(not system standart cursors) for CONTROLID`S? Thanks in advance. #include <GuiConstants.au3> #include <WindowsConstants.au3> $Gui = GuiCreate("Test", 300, 200,750) GUISetState() GUIRegisterMsg($WM_SETCURSOR, 'WM_SETCURSOR') $Cur = DllCall("user32.dll", "int", "LoadCursorFromFile", "str",@ScriptDir&"\11.ani") if @error Then MsgBox(0,"dd","whoopsie!") While 1 $Msg = GUIGetMsg(1) Select Case $Msg[0] = $GUI_EVENT_CLOSE Exit EndSelect WEnd Func WM_SETCURSOR($hWnd, $iMsg, $iWParam, $iLParam) If $hWnd = $Gui Then DllCall("user32.dll", "int", "SetCursor", "int", $Cur[0]) Return 0 EndIf EndFunc 11.7z (Cursor) Edited March 30, 2010 by Sh3llC043r [size="5"] [/size]
Andreik Posted March 29, 2010 Posted March 29, 2010 It should be possible to do that with GUICtrlSetOnHover UDF.
Fire Posted March 29, 2010 Author Posted March 29, 2010 Thank you very much Andreik.I will check it. [size="5"] [/size]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now