Hi,
when i try to start the program this errormessage is shown:
project1.lpr(21,1) Error: Can't create object file: C:\Dokumente und Einstellungen\Thorbj?rn\Desktop\Neuer Ordner\project1.exe
Here is projekt1.lpr:
program project1;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, Unit1, LResources, Unit2, Unit3;
{$IFDEF WINDOWS}{$R project1.rc}{$ENDIF}
begin
{$I project1.lrs}
Application.Initialize;
Application.CreateForm(TLevel1, Level1);
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TLevel2, Level2);
Application.Run;
end.
Does anyone know what that means?
Thanks.