
Zitat von
toms:
Genau. Der FindWindowEx() Funktion sollte für lpszWindow nil übergeben, wenn sie
Childfenster in einem anderen Prozess (ausser explorer.exe) sucht.
Grund: FindWindowEx vergleicht bei Angabge von lpszWindow die Übereinstimmung des FensterNamens (lpszWindow) mittels GetWindowText, welche aber nicht zuverlässig ChildFenster Text in einem anderen Prozess ermitteln kann
Genau genommen nicht nur FindWindowEx, sondern auch FindWindow:

Zitat von
PSDK:
If the lpWindowName parameter is not NULL, FindWindow calls the GetWindowText function to retrieve the window name for comparison. For a description of a potential problem that can arise, see the Remarks for GetWindowText.
Daher werd ich wohl bei meinem FindWindow(Ex)-Ersatz bleiben, auch wenn der Code dadurch länger wird..