Jump to content

Recommended Posts

Posted (edited)

The following code does not work.

#include <GUIConstantsEx.au3>

GUICreate(" My GUI input control", 320, 120, @DesktopWidth / 2 - 160, @DesktopHeight / 2 - 45, -1)
Local $idInput = GUICtrlCreateInput("", 10, 5, 300, 20)

GUISetState(@SW_SHOW)

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop
        Case $idInput
            MsgBox(0, "", "Input control was clicked")
    EndSwitch
WEnd

Having not found a handy way to make it work, I created a label control beneath the input control and it simulates detection of click on input control.

#include <GUIConstantsEx.au3>

GUICreate(" My GUI input control", 320, 120, @DesktopWidth / 2 - 160, @DesktopHeight / 2 - 45, -1)
Local $idLabel = GUICtrlCreateLabel("", 10, 5, 300, 20)
Local $idInput = GUICtrlCreateInput("", 10, 5, 300, 20)

GUISetState(@SW_SHOW)

While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop
        Case $idLabel
            MsgBox(0, "", "Input control was clicked")
    EndSwitch
WEnd

Is this a viable way? Or is there a better way to make this happen?

Edited by CYCho
Posted

Message hook will let you do it :

#include <WinAPI.au3>
#include <GUIConstants.au3>

GUICreate(" My GUI input control", 320, 120, @DesktopWidth / 2 - 160, @DesktopHeight / 2 - 45, -1)
Local $idInput = GUICtrlCreateInput("", 10, 5, 300, 20)
$wProcHandle = DllCallbackRegister("_WindowProc", "ptr", "hwnd;uint;wparam;lparam")
$wProcOld = _WinAPI_SetWindowLong(GUICtrlGetHandle($idInput), $GWL_WNDPROC, DllCallbackGetPtr($wProcHandle))

GUISetState(@SW_SHOW)

While 1
  Switch GUIGetMsg()
    Case $GUI_EVENT_CLOSE
      ExitLoop
  EndSwitch
WEnd

DllCallbackFree($wProcHandle)

Func _WindowProc($hWnd, $Msg, $wParam, $lParam)
  If $hWnd = GUICtrlGetHandle($idInput) And $Msg = $WM_LBUTTONDOWN Then
    ConsoleWrite("-> Left mouse simple click" & @LF)
  EndIf
  Return _WinAPI_CallWindowProc($wProcOld, $hWnd, $Msg, $wParam, $lParam)
EndFunc   ;==>_WindowProc

 

Posted
#include <GUIConstantsEx.au3>

Local $GUI = GUICreate(" My GUI input control", 320, 120, @DesktopWidth / 2 - 160, @DesktopHeight / 2 - 45, -1)
Local $idInput = GUICtrlCreateInput("", 10, 5, 300, 20)
Local $CurInfo

GUISetState(@SW_SHOW)

While 1
    $CurInfo = GUIGetCursorInfo($GUI)
    If $CurInfo[4] = $idInput And $CurInfo[2] = 1 Then
        MsgBox(64 + 262144, '', '')
    EndIf
    ;=============================================================================
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop
    EndSwitch
    Sleep(100)
WEnd

Or like this

  Reveal hidden contents

IUIAutomation - Topic with framework and examples

Au3Record.exe

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
  • Recently Browsing   0 members

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