Frequently Asked Questions
Q. The file I created only contains text objects. Where are my images/shapes/etc.?
A. QuickReport only supports text within filters at this time. The next release is supposed to support all objects and I will be updating my filters to support them.
Q. How do I create a file directly with code?
A. Each filter has its own class that you can use to directly export your report. The following example will export the MyReport report to a PDF file called C:\TEST.PDF. The other filters are TRTFFilter, THTMLFilter, TCSS2Filter, TBMPFilter, TWQ1Filter, TRTFFilter, TJPEGFilter, TXLSFilter & TWK1Filter.
MyReport.ExportToFilter(TPDFFilter.Create('C:\TEST.PDF'));
You do not need to free this object, QR will do that.
Q. How do I use the filters with composite reports?
A. Unfortunately, QuickReport does not support filters with composite reports. There is currently no way to do this.
|