How I can get a window's descriptor if I know only a part of its title and its className?
WinApi FindWindow by a part of title
3.8k Views Asked by HelloWorld At
2
There are 2 best solutions below
0

Something like this:
BOOL CALLBACK EnumWindowsProc( HWND hwnd, LPARAM lParam ) {
wchar_t lpClassName[128] = {0};
MYSTRUCT* MS_INFO = ( MYSTRUCT* )lParam;
GetClassName( hwnd, lpClassName, _countof( lpClassName ) );
if( strstr( lpClassName, MS_INFO -> lpClassName ) ) {
wchar_t lpWindowName[128] = {0};
GetWindowText( hwnd, lpWindowName, _countof( lpWindowName ) );
if( strstr( lpWindowName, MS_INFO -> lpWindowName ) ) {
...
}
}
}
FindWindow()
requires the full title. UseEnumWindows()
, orGetWindow()
in a loop, to enumerate through all available windows, callingGetClassName()
andGetWindowText()
on each one and compare the values to your search criteria until you find a match.