Zitat von
stoxx:
Delphi-Quellcode:
function IsValidWindow(wnd : HWND) : boolean;//
begin
result := false;
if wnd <> 0 then begin
result := (GetSystemMenu(Wnd, false) <>0);
end; // wnd <> 0
end; // IsValidWindow
Eine Anwendung mit einem Fenster ohne Systemmenü ist für dich also kein gültiges Fenster?