fpc/packages/fcl-report/demos/fcldemo.pp
2018-05-08 07:27:05 +00:00

15 lines
234 B
ObjectPascal

program fcldemo;
uses
udapp, regreports, fpreportbarcode;
Var
Application : TReportDemoApplication;
begin
Application:=TReportDemoApplication.Create(Nil);
Application.Initialize;
Application.Run;
Application.Free;
end.