Einzelnen Beitrag anzeigen

IckyWolf

Registriert seit: 20. Dez 2018
10 Beiträge
 
#5

AW: Komponenten in Prozedur nicht erkannt

  Alt 20. Dez 2018, 19:11
Vielen Dank, dass ihr euch die Zeit nehmt mir zu helfen

Delphi-Quellcode:
program project1;

{$mode objfpc}{$H+}

uses
  {$IFDEF UNIX}{$IFDEF UseCThreads}
  cthreads,
  {$ENDIF}{$ENDIF}
  Interfaces, // this includes the LCL widgetset
  Forms, Unit1
  { you can add units after this };

{$R *.res}

begin
  RequireDerivedFormResource:=True;
  Application.Initialize;
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.
}
  Mit Zitat antworten Zitat