How to get the list of the controls from the window, specified by "FindWindow" function? For example I have a handle to the Notepad window by
HWND Window = FindWindow(L"Notepad", L"dummy.txt - Notepad");
then I can make a handle to an "Edit" control by
HWND WindowEX = FindWindowEx(Window, NULL, L"EDIT", NULL);
but how can I get a full list of the controls and record them in the array for example?
I've done it the old way
refreshChilds() function will fill the combobox with childs classnames.