Componentes.Terceros.FastRe.../internal/4.2/1/Demos/ClientServer/Service/frxserv.dpr

14 lines
211 B
ObjectPascal
Raw Normal View History

program frxserv;
uses
SvcMgr,
main in 'main.pas' {FastReport: TService};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TFastReport, FastReport);
Application.Run;
end.