Mega Code Archive

 
Categories / Delphi / Examples
 

How to save a quickreport custom preview to text

Add QREXTRA to your uses clause and use the following code: procedure TFPreview.ToolButton3Click(Sender: TObject); begin FReport.QuickRep1.ExportToFilter (TQRAsciiExportFilter.Create('c:\report.txt')); end;