Jump to content

How to get MouseOver Event for GUICtrlCreatePic???


Recommended Posts

Hi guyz Is there anybody who know how to Get 'Hover' event notification from GUIPic??

For Buttons, I found this code in helpfile:

#include 
#include 
#include 
Global $btn, $rdo, $chk, $iMemo
; Note the controlId from these buttons can NOT be read with GuiCtrlRead
_Main()
Func _Main()
Local $hGUI
$hGUI = GUICreate("Buttons", 400, 400)
$iMemo = GUICtrlCreateEdit("", 119, 10, 276, 374, $WS_VSCROLL)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
$btn = _GUICtrlButton_Create($hGUI, "Button1", 10, 10, 90, 50)
$rdo = _GUICtrlButton_Create($hGUI, "Radio1", 10, 60, 90, 50, $BS_AUTORADIOBUTTON)
$chk = _GUICtrlButton_Create($hGUI, "Check1", 10, 120, 90, 50, $BS_AUTO3STATE)
GUIRegisterMsg($WM_COMMAND, "WM_COMMAND")
GUIRegisterMsg($WM_NOTIFY, "WM_NOTIFY")
GUISetState()
MemoWrite("$btn handle: " & $btn)
MemoWrite("$rdo handle: " & $rdo)
MemoWrite("$chk handle: " & $chk & @CRLF)
While 1
  Switch GUIGetMsg()
   Case $GUI_EVENT_CLOSE
    ExitLoop
  EndSwitch
WEnd
Exit
EndFunc   ;==>_Main

; Write a line to the memo control
Func MemoWrite($sMessage)
GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite
Func WM_NOTIFY($hWnd, $Msg, $wParam, $lParam)
#forceref $hWnd, $Msg, $wParam
Local Const $BCN_HOTITEMCHANGE = -1249
Local $tNMBHOTITEM = DllStructCreate("hwnd hWndFrom;int IDFrom;int Code;dword dwFlags", $lParam)
Local $nNotifyCode = DllStructGetData($tNMBHOTITEM, "Code")
Local $nID = DllStructGetData($tNMBHOTITEM, "IDFrom")
Local $hCtrl = DllStructGetData($tNMBHOTITEM, "hWndFrom")
Local $dwFlags = DllStructGetData($tNMBHOTITEM, "dwFlags")
Local $sText = ""
Switch $nNotifyCode
  Case $BCN_HOTITEMCHANGE ; Win XP and Above
   If BitAND($dwFlags, 0x10) = 0x10 Then
    $sText = "$BCN_HOTITEMCHANGE - Entering: " & @CRLF
   ElseIf BitAND($dwFlags, 0x20) = 0x20 Then
    $sText = "$BCN_HOTITEMCHANGE - Leaving: " & @CRLF
   EndIf
   MemoWrite($sText & _
     "-----------------------------" & @CRLF & _
     "WM_NOTIFY - Infos:" & @CRLF & _
     "-----------------------------" & @CRLF & _
     "Code" & @TAB & ":" & $nNotifyCode & @CRLF & _
     "CtrlID" & @TAB & ":" & $nID & @CRLF & _
     "CtrlHWnd:" & $hCtrl & @CRLF & _
     _GUICtrlButton_GetText($hCtrl) & @CRLF)
EndSwitch
Return $GUI_RUNDEFMSG
EndFunc   ;==>WM_NOTIFY
; React on a button click
Func WM_COMMAND($hWnd, $Msg, $wParam, $lParam)
#forceref $hWnd, $Msg
Local $nNotifyCode = BitShift($wParam, 16)
Local $nID = BitAND($wParam, 0x0000FFFF)
Local $hCtrl = $lParam
Local $sText = ""
Switch $hCtrl
  Case $btn, $rdo, $chk
   Switch $nNotifyCode
    Case $BN_CLICKED
     $sText = "$BN_CLICKED" & @CRLF
    Case $BN_PAINT
     $sText = "$BN_PAINT" & @CRLF
    Case $BN_PUSHED, $BN_HILITE
     $sText = "$BN_PUSHED, $BN_HILITE" & @CRLF
    Case $BN_UNPUSHED, $BN_UNHILITE
     $sText = "$BN_UNPUSHED" & @CRLF
    Case $BN_DISABLE
     $sText = "$BN_DISABLE" & @CRLF
    Case $BN_DBLCLK, $BN_DOUBLECLICKED
     $sText = "$BN_DBLCLK, $BN_DOUBLECLICKED" & @CRLF
    Case $BN_SETFOCUS
     $sText = "$BN_SETFOCUS" & @CRLF
    Case $BN_KILLFOCUS
     $sText = "$BN_KILLFOCUS" & @CRLF
   EndSwitch
   MemoWrite($sText & _
     "-----------------------------" & @CRLF & _
     "WM_COMMAND - Infos:" & @CRLF & _
     "-----------------------------" & @CRLF & _
     "Code" & @TAB & ":" & $nNotifyCode & @CRLF & _
     "CtrlID" & @TAB & ":" & $nID & @CRLF & _
     "CtrlHWnd:" & $hCtrl & @CRLF & _
     _GUICtrlButton_GetText($hCtrl) & @CRLF)
   Return 0 ; Only workout clicking on the button
EndSwitch

Return $GUI_RUNDEFMSG
EndFunc   ;==>WM_COMMAND

Actually I just want to change the Pic on MouseOver

Edited by prakashgp
Link to comment
Share on other sites

maybe by MrCreator will help you.

Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...