Modify

#4094 new Feature Request

new function: _WinAPI_FindWindowEx

Reported by: mLipok Owned by:
Milestone: Component: Standard UDFs
Version: Severity: None
Keywords: Cc:

Description

Please add _WinAPI_FindWindowEx() to WinAPISysWin.au3

Func _WinAPI_FindWindowEx($hParent, $sClass, $sTitle = "", $hAfter = 0)
        Local $aCall = DllCall('user32.dll', "hwnd", "FindWindowExW", "hwnd", $hParent, "hwnd", $hAfter, "wstr", $sClass, "wstr", $sTitle)
        If @error Then Return SetError(@error, @extended, 0)
        Return $aCall[0]
EndFunc   ;==>_WinAPI_FindWindowEx

https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-findwindowexa

https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-findwindowexw

usage example:
https://www.autoitscript.com/forum/topic/213699-how-can-i-determine-if-tab-item-is-visible-in-tab-control/#findComment-1552569

Attachments (0)

Change History (0)

Modify Ticket

Action
as new The ticket will remain with no owner.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.