Du könntest entweder statt einer Form ein Panel nehmen
oder die 2. Form in die 1. Form einbinden
>
SetParent oder
Delphi-Quellcode:
Form2.Parent := Form1;
Form2.Show;
und eventuell noch Top/Left anpassen
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
begin
Form2.Parent := Self;
Form2.Left := (ClientWidth - Form2.Width) div 2;
Form2.Top := (ClientHeight - Form2.Height) div 2;
Form2.Show;
end;