Discussion:
How to save a report automaticaly by code?
(too old to reply)
Pletinckx
2008-01-09 10:10:25 UTC
Permalink
Hi,
My Delphi program creates by code a report. No problem.
But I want to save the report automaticaly by code. How to do it?
Cheers,

G. PLETINCKX
Thomas Pfister
2008-01-15 18:53:30 UTC
Permalink
"save the report" means for your into PDF, NDR or HTML and so on ?!

RvSystem1.DefaultDest := rdFile;
RvSystem1.DoNativeOutput := false;
RvSystem1.RenderObject := RvRenderPDF1;
RvSystem1.OutputFileName := 'c:\test1.pdf';
RvSystem1.SystemSetups := RvSystem1.SystemSetups - [ssAllowSetup];
RvProject1.ExecuteReport(...)
:-) thomas
Post by Pletinckx
Hi,
My Delphi program creates by code a report. No problem.
But I want to save the report automaticaly by code. How to do it?
Cheers,
G. PLETINCKX
Continue reading on narkive:
Loading...