UDF > GUI > GuiMenu >


_GUICtrlMenu_FindParent

Obtient la fenêtre à laquelle appartient un menu

#include <GuiMenu.au3>
_GUICtrlMenu_FindParent ( $hMenu )

Paramètre

$hMenu Handle du contrôle Menu

Valeur de retour

Succès: Retourne le handle de la fenêtre.
Échec: Retourne 0.

En relation

_GUICtrlMenu_GetMenu

Exemple

#include <GuiMenu.au3>

Example()

Func Example()
    Local $hWnd, $hMain

    Run("notepad.exe")
    WinWaitActive("[CLASS:Notepad]")
    $hWnd = WinGetHandle("[CLASS:Notepad]")
    $hMain = _GUICtrlMenu_GetMenu($hWnd)

    ; Affiche que le handle du Menu appartient à Notepad
    Writeln("Notepad handle: 0x" & Hex($hWnd))
    Writeln("Menu Parent ..: 0x" & Hex(_GUICtrlMenu_FindParent($hMain)))
EndFunc   ;==>Example

; Ecrit une ligne de texte dans Notepad
Func Writeln($sText)
    ControlSend("[CLASS:Notepad]", "", "Edit1", $sText & @CRLF)
EndFunc   ;==>Writeln