Delphi .NET (2) Database (71) Delphi IDE (89) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280)
Exchange Links About this site Links to us 
|
How to save a QuickReport custom preview to text?
This article has not been rated yet. After reading, feel free to leave comments and rate it.
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; | |  | |  |
Comments:
|
anonymous from Turkey
|
|
|
|
its not working with qr4
|
|