mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-11 07:42:45 +02:00
17 lines
364 B
ObjectPascal
17 lines
364 B
ObjectPascal
program lcldemo;
|
|
|
|
uses
|
|
udapp, fpextfuncs, regreports, rptcolumns, rptdataset, rptexpressions, rptframes,
|
|
rptgrouping, rptimages, rptmasterdetail, rptmasterdetaildataset, rptshapes,
|
|
rptsimplelist, rptttf;
|
|
|
|
Var
|
|
Application : TReportDemoApplication;
|
|
|
|
begin
|
|
Application:=TReportDemoApplication.Create(Nil);
|
|
Application.Initialize;
|
|
Application.Run;
|
|
end.
|
|
|