Was soll TFormular2 denn sein?
Delphi-Quellcode:
F2 : TForm
//.............
F2 := TForm.Create(nil);
F2.Show;
bt2:= TButton.Create(F2);
bt2.SetBounds(20,20,160,100);
bt2.Parent:= F2;
bt2.Caption:= 'Formular schließen';
bt2.Visible := True; //<< warum soll das nicht gehen?
gruss