Hallo
wenn die Form keine mainform ist, dann wird das Programm neben das Windows Icon minimiert, wenn man auf das Icon[-] anklickt.
meine Lösung ist vielleicht blöd. Ich habe folgendes gemacht:
Delphi-Quellcode:
procedure TForm2.WMSyscommand(Var msg: TWmSysCommand);
begin
if (msg.cmdtype and $FFF0 = SC_MINIMIZE) then
begin
Application.Minimize;
Form2.Hide;
end;
inherited;
end;
d.h. Form2 wird versteckt und kann über das Icon neben Uhr wieder sichtbar
Es gibt bestimmt gute Lösung als meine Idee