Hello. Long time reader, first time poster.
I'm a big noob when it comes to win32 gui apps so here's my question.
Let's say you have a handle to a window:
HWND h_wnd;
That window ultimately has a bunch of controls, list, buttons and whatnot.
Now I believe all controls inherit from CWnd (maybe that's not the right technical term in MFC...not sure). So would I be able to drill down to the controls using something like:
EnumChildWindows();
Again, I only have access to the top window handle.
Thanks !