Home > database >  Ask a child how to obtain this window this information in Chinese
Ask a child how to obtain this window this information in Chinese

Time:10-02

Others written in PB data query applications, began to run the program in the parent window is empty, when input keywords and select query, shows a lot of information in the parent window of the small window (or control), I need to get these child Windows in the text, by spy++ to grasp information window, can only get the title of the parent window and class information, moved to the corresponding child window all have no reaction, a natural child window information also can't catch,

Also, the method of programmed to iterate through the child window nature also can't find the child window, could you tell me what this seed window of the nature of things? The contents of the how to obtain them?

Thank you for your comment,

CodePudding user response:

[function]
FindWindowEx

[operating system]
Win9x: Y
WinNT: N

[the statement]
The Function ulong FindWindowEx (ulong hWnd1, ulong hWnd2, ref string lpsz1, ref string lpsz2) LIBRARY "user32. DLL" ALIAS FOR "FindWindowExA
"
[that]

In the window list for the first child window associated with the specified conditions
Functions: the function to obtain a handle to the window, the window class name and window name match the given string, the function to find the child Windows, from behind a given child window under a child window, in the search is case-insensitive,

CodePudding user response:

Thanks to the LS reply, but this method there's no way.
  • Related