Componentes.Terceros.FastRe.../official/4.8.11/Demos/ClientServer/Service/frxserv.dpr
2009-10-21 13:40:53 +00:00

14 lines
211 B
ObjectPascal

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