Hi all,
I want to move my Delphi 2 project to Lazarus and I tried converting it. Conversion stops with error in the dpr.
The error doesn't tell me anything. Please can someone help?
Here's the error :
*** Find all unit files... ***
---------------------------------------------
Bokfproj.dpr(17,4) Error: End of source not found
Conversion Aborted.
And here's the dpr :
program BokfProj;
uses
Forms,
Bokf in 'Bokf.pas' {HuvudForm},
Samm in 'Samm.pas' {Sammandrag},
VerList in 'VerList.pas' {VerLst};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(THuvudForm, HuvudForm);
Application.CreateForm(TSammandrag, Sammandrag);
Application.CreateForm(TVerLst, VerLst);
Application.Run;
end.