Modify

#4094 closed Feature Request (Fixed)

new function: _WinAPI_FindWindowEx

Reported by: mLipok Owned by: Jpm
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 (1)

comment:1 by Jpm, on May 25, 2026 at 6:08:37 PM

Owner: set to Jpm
Resolution: Fixed
Status: newclosed

Fixed by revision [13408]

Added #4094: _WinAPI_FindWindowEx()

Modify Ticket

Action
as closed The owner will remain Jpm.

Add Comment


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