lazarus/components/fpreport/demo/lcldemo.lpr
michael 1074c2f64f * Add fpextfuncs to uses clause
git-svn-id: trunk@55732 -
2017-08-21 11:16:58 +00:00

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.