Jump to content

WinWindowFromID: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Created page with "Searches the children of hwndParent to find a window whose identifier matches ulId. ==Syntax== WinWindowFromID (hwndParent, ulId) ;HWND hwndParent ;ULONG ulId It returns t..."
 
Ak120 (talk | contribs)
mNo edit summary
Line 4: Line 4:
  WinWindowFromID (hwndParent, ulId)
  WinWindowFromID (hwndParent, ulId)


;HWND hwndParent
==Parameters==
;ULONG ulId
;hwndParent ([[HWND]]):Parent-window handle
;ulId (ULONG):Window identifier


It returns the window handle (HWND) if found, or [[NULLHANDLE]] otherwise.
It returns the window handle (HWND) if found, or [[NULLHANDLE]] otherwise.


[[Category:Win]]
[[Category:Win]]

Revision as of 20:17, 21 November 2023

Searches the children of hwndParent to find a window whose identifier matches ulId.

Syntax

WinWindowFromID (hwndParent, ulId)

Parameters

hwndParent (HWND)
Parent-window handle
ulId (ULONG)
Window identifier

It returns the window handle (HWND) if found, or NULLHANDLE otherwise.