Noch nie gesehen?
Delphi-Quellcode:
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
Unit2 in 'Unit2.pas' {Form2};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.Run;
end.
Application.CreateForm();
Alles das sind vorerstellte Forms.
Wobei die erste so erstellte Form das hauptformular ist...
Achso und ändern wirst du es nur im Menü können, denn bei kleinsten Änderungen erstellt Delphi den Code da neu...
Bye