Developer Tools
|
Office Productivity Applications
|
Platform-Agnostic APIs
|
Home | Online Demos | Downloads | Buy Now | Support | About Us | News | Working Together | Contact Us
eDocEngine has "report-export interface components" for providing multiple output format support for Delphi reporting tools. For Quickreport, eDocEngine has the TgtQRExportInterface
interface component.
You can either let the end-user of the Quickreport application to choose the output provided by eDocEngine in an interactive report "Save" dialog box or you could export the report programmatically in Object Pascal.
On an application built with Quickreport, an instance of this interface component needs to be paired up with an eDocEngine document-creation engine component. For example, to output a Quickreport report to a PDF document, a TgtQRExportInterface
instance needs to be paired with a TgtPDFEngine
instance on the same form as a Quickreport report component.
QRPQuickrep1.Preview;
You can make eDocEngine run the report and export the output using a
TgtQRExportInterface.RenderDocument()
overload.
procedure TForm9.Button3Click(Sender: TObject); begin // Export report to a PDF document gtPDFEngine1.FileName := 'eDoc_Quickreport_Demo.pdf'; gtPDFEngine1.Preferences.ShowSetupDialog := false; gtQRExportInterface1.Engine := gtPDFEngine1; gtQRExportInterface1.RenderDocument(QRPQuickrep1, false); // Export report to a Excel workbook gtExcelEngine1.FileName := 'eDoc_Quickreport_Demo.xls'; gtExcelEngine1.Preferences.ShowSetupDialog := false; gtQRExportInterface2.Engine := gtExcelEngine1; gtQRExportInterface2.RenderDocument(QRPQuickrep1, false); end;
You can also export a report from a QRP file. There is another
TgtQRExportInterface.RenderDocument()
overload for
this.
procedure TForm9.Button2Click(Sender: TObject); begin gtPDFEngine1.FileName := 'eDoc_QuickReport_Demo.pdf'; gtPDFEngine1.Preferences.ShowSetupDialog := false; gtQRExportInterface1.Engine := gtPDFEngine1; gtQRExportInterface1.RenderDocument('eDoc_QuickReport.QRP'); end;
---o0O0o---
Our .NET Developer Tools | |
---|---|
Gnostice Document Studio .NETMulti-format document-processing component suite for .NET developers. |
PDFOne .NETA .NET PDF component suite to create, edit, view, print, reorganize, encrypt, annotate, and bookmark PDF documents in .NET applications. |
Our Delphi/C++Builder developer tools | |
---|---|
Gnostice Document Studio DelphiMulti-format document-processing component suite for Delphi/C++Builder developers, covering both VCL and FireMonkey platforms. |
eDocEngine VCLA Delphi/C++Builder component suite for creating documents in over 20 formats and also export reports from popular Delphi reporting tools. |
PDFtoolkit VCLA Delphi/C++Builder component suite to edit, enhance, view, print, merge, split, encrypt, annotate, and bookmark PDF documents. |
Our Java developer tools | |
---|---|
Gnostice Document Studio JavaMulti-format document-processing component suite for Java developers. |
PDFOne (for Java)A Java PDF component suite to create, edit, view, print, reorganize, encrypt, annotate, bookmark PDF documents in Java applications. |
Our Platform-Agnostic Cloud and On-Premises APIs | |
---|---|
StarDocsCloud-hosted and On-Premises REST-based document-processing and document-viewing APIs |
Privacy | Legal | Feedback | Newsletter | Blog | Resellers | © 2002-2024 Gnostice Information Technologies Private Limited. All rights reserved. |