GetFirstChild in win32 ?
Posted
by UK
on Stack Overflow
See other posts from Stack Overflow
or by UK
Published on 2010-05-14T15:07:14Z
Indexed on
2010/05/14
15:14 UTC
Read the original article
Hit count: 235
Hello All,
I use EnumChildWindows to get all the Child windows from the main HWND window , But i would like to get only the first child of the given HWND window.
BOOL CALLBACK EnumChildProc ( HWND hwndChild, LPARAM lParam)
{
// logic to call only once
}
Is it correct ? or any other simple way ?
~UK
© Stack Overflow or respective owner