Zitat:
If the window is iconic, the return value is nonzero.
If the window is not iconic, the return value is zero.
Zitat:
Wenn die Anwendung minimiert ist, dann ist das Ergebnis <> 0
Wenn die Anwendung nicht minimiert ist, dann ist das Ergebnis 0
Dann müsste es ja so funktionieren:
Delphi-Quellcode:
var wnd : HWND;
i : Integer;
begin
if IsIconic(wnd) then
begin
m.Lines.Add(IntToStr(i));
inc(i);
end;
Es passiert allerdings nichts. Woran könnte es liegen ?