Zitat von
storm1988:
Könnt ihr mir vielleicht nochmal weiter helfen!!!
SetWindowLong(
Handle, WS_ICONIC,
???(und hier fehlt mir der letzte Parameter));
end;
Da fehlt Dir nicht nur der Parameter.
Erst musst Du mit GetWindowLong den aktuellen Fensterstil holen. Dann das WS_ICONIC Bit entfernen und dann erst mit SetWindowLong den neuen Wert setzen:
Delphi-Quellcode:
WindowStyle := GetWindowLong(
handle, GWL_STYLE);
WindowStyle := WindowStyle-WS_ICONIC;
SetWindowLong(
handle, GWL_STYLE, WindowStyle) ;