lazarus/examples/fpreport/simple/SimpleReportLCL.lpr
2018-02-27 14:31:42 +00:00

22 lines
400 B
ObjectPascal

program SimpleReportLCL;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, mainLCLReport
{ you can add units after this };
{$R *.res}
begin
RequireDerivedFormResource:=True;
Application.Initialize;
Application.CreateForm(TFrmSimpleReportLCL, FrmSimpleReportLCL);
Application.Run;
end.