I would like to know how this is done and in general to improve my knowledge in the field of system programming. I tried to read Jeffrey Richter, but I didn’t like it, and I didn’t find anything on topics of interest to me.

  • 2
    EnumChildWindows will iterate through all the child windows of the specified parent. But why? - mega
  • For example, I want to get the text of some Edit'a or intercept this text. Yes, it does not matter why, just wondering, I want to understand all this. Could you give a short example of the use of this function, or indicate the sources? I read MSDN, there were some questions about this feature. - Sergey1991
  • > Could you give a short example of using this function BOOL CALLBACK MyEnumChild (HWND hwndChild, LPARAM lParam) {TCHAR Buffer [255]; // :: GetWindowText (hwndChild, Buffer, 255); :: MessageBox (NULL, Buffer, TEXT (""), MB_OK); return TRUE; } ... :: EnumChildWindows (hWndParent, MyEnumChild, NULL); - mega
  • one
    Thanks for the help! - Sergey1991

0