Wenn ich bei Delphi7 'neue Form' clicke, muss ich sie immer selbst eintragen. Bei Delphi5 ging das automatisch. Kann man das einstellen?
Delphi-Quellcode:
program Test;
uses
Forms,
U_Main in 'Test1.pas' {Form1},
Tabelle in 'Test2.pas' {Form2},
Feldeingabe in 'Test3.pas' {Form3};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TForm3, Form3);
Application.Run;
end.