Hi
Ich habe einProblem: Wenn ich mein Projekt testen will, kommt ein fehler, weil angeblich das "end" am nede des codes nicht stimmt.
Falls es etwas hilft, der gesamte code von project1.dpr lautet:
Delphi-Quellcode:
program Project1;
uses
Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
danke im voraus