mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-07 12:57:23 +01:00
50 lines
1.0 KiB
ObjectPascal
50 lines
1.0 KiB
ObjectPascal
program reportdesign;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms,
|
|
runtimetypeinfocontrols,
|
|
fpreportdb,
|
|
// These configure various designer factories
|
|
regfpdesigner,
|
|
frmfpreportdesignermain,
|
|
// Various report data
|
|
frafpreportcsvdata,
|
|
frafpreportdbfdata,
|
|
frafpreportjsondata,
|
|
frafpreportsqldbdata,
|
|
frmideselectreportdata,
|
|
// Various forms
|
|
frmfpreportdataconnectioneditor,
|
|
frmconfigreportdata,
|
|
frmfpreportvariables,
|
|
frmfpreportproperties,
|
|
frmfpreportpreviewdata,
|
|
cfgfpreportpdfexport,
|
|
cfgfpreportimageexport,
|
|
cfgfpreporthtmlexport,
|
|
//
|
|
fpreporthtmlexport,
|
|
fpreportpreview,
|
|
fpreportformexport;
|
|
|
|
{$R *.res}
|
|
|
|
var
|
|
FPReportDesignerForm: TFPReportDesignerForm;
|
|
|
|
begin
|
|
RequireDerivedFormResource:=True;
|
|
RegisterFPReportPropEditors;
|
|
Application.Initialize;
|
|
Application.CreateForm(TFPReportDesignerForm,FPReportDesignerForm);
|
|
Application.Scaled:=False;
|
|
Application.Run;
|
|
end.
|
|
|