Delphi-Quellcode:
program Autocaster;
uses
Forms,
Haupt in 'Haupt.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
Bei Application.CreateForm(TForm1, Form1); kommt die Fehlermeldung:
[Fehler] Autocaster.dpr(11): Undefinierter Bezeichner: 'Form1'
Delphi hat das doch automatisch erstellt, warum kommt da eine Fehlermeldung?