How to export?
If I drop one of the export components on a form, I see the export prompt in preview mode. Good.
How can I select any export function programmatically?
I see no documentation on these components anywhere. Have I missed somewhere to look...?
Thank you
How can I select any export function programmatically?
I see no documentation on these components anywhere. Have I missed somewhere to look...?
Thank you
Comments
Exporting a report
It can be performed from a preview window.
The operation can also be executed manually,
via the ???TfrxReport.Export??? method.
In the parameter of this method you should specify the export filter
you want to use:
frxReport1.Export(frxHTMLExport1);
The export filter component must be available
(you must put it on the form of your project)
and be adjusted correctly.
after loading report call prepare report before trying to export.