Zitat von
Delphi Star:
Bei Delphi 7
Pe gibt es OnRestore nicht, jedenfalls hab ich es nicht gefunden
OnRestore findest du bei TApplicationEvents.
Delphi-Quellcode:
var BlockRestore: boolean = False;
procedure TForm1.ApplicationEvents1Restore(Sender: TObject);
begin
if BlockRestore then Application.Minimize;
end;