Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Exporting a report to different formats

edited September 2003 in General
Hi, i have a very heavy report... takes a few minutes to generate and need
to export it to PDF, then Excel and then HTML automatically.
I'm using Waler's ExtraDevices and doing the following code:
//Genera el reporte en PDF
rptInv.DeviceType := 'PDFFile';
rptInv.TextFileName := 'PDF_Report';
rptInv.Print;
//Genera el reporte en Excel
rptInv.DeviceType := 'ExcelFile';
rptInv.TextFileName := 'XLS_Report';
rptInv.Print;

The report already has CachePages set to true but it seams that each time i
call the print method it traverses the data again. Is there a way to prevent
it and use the already cached data?
thanks
--
Guillermo Casta?o A.
www.GrupoMillennium.com

Comments

This discussion has been closed.