Back
Application.Minimize:
(Minimize the Form to the TaskBar)
procedure TForm1.Button2Click(Sender: TObject);
begin
Application.Minimize;
end;
Back