|
|
|
| |
|
| #WhiteUnicorn/ StartPage/ Documentation/DelphiFAQ > |
|
| |
How do I save a QuickReport custom preview to text?
Add QREXTRA to your uses clause and the following code to your
"Save button" in your custom preview:
procedure TfrmPreview.ToolButton3Click(Sender: TObject);
begin
frmReport.QuickRep1.ExportToFilter
(TQRAsciiExportFilter.Create('c:\report.txt'));
end;
|
| |
|
| #WhiteUnicorn/ StartPage/ Documentation/DelphiFAQ > |
|
| |
|
| ||
|
|
|
|
|
| ||