Hi,
The title is partially static with an variable suffix. For example *"Window Title {- user_id}"*.
How can I get the handle without knowing the exact title?
|
|
|||
|
|
|
Look through all the Processes and check the MainWindowTitle. (You can use regexps, or
|
||||
|
|
|
Hi, how to get the handle in case there is no title for the window? is there a way to use other attributes, like window contains a specific button/Text Box etc.. Also this is not the mainwindow for a process.. Any help would greatly help.. |
||
|
|
|
|
Get by class name and parent window handle. For example: get start button handle using win32api. First you know parent window class name using spyxx tool.
Usage:
|
||
|
|
|
|
This CodeProject article describes how to enumerate Top level windows (Based on Win32 API EnumWindows). You can easily modify it to filter on a partial window title: Modify EnumWindowsCallBack. HTH. |
||
|
|