lazarus/components/tachart/demo/lazreport/lazreportdemo.lpr
ask c2b096f44c TAChart: Add LazReport demo
git-svn-id: trunk@36660 -
2012-04-08 08:19:34 +00:00

22 lines
395 B
ObjectPascal

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