Obtient la fenêtre à laquelle appartient un menu
#include <GuiMenu.au3>
_GUICtrlMenu_FindParent ( $hMenu )
$hMenu | Handle du contrôle Menu |
Succès: | Retourne le handle de la fenêtre. |
Échec: | Retourne 0. |
#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