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