code for frxBuiltinExports
According to the FastReports help, frxReport/IfrxBuiltinExports has a function called "ExportToXLS". This is the text from the help file: "These methods implemented as additional interface of TfrxReport co-class". However, the .pas file (Delphi 2009) (called frxClass) does not have this function as part of frxReport.
Is this only available for .NET? Is it possible for someone to provide the code for this, if so I also need "ExportToPDF".
Thank you!
Is this only available for .NET? Is it possible for someone to provide the code for this, if so I also need "ExportToPDF".
Thank you!
Comments
what product are you trying to work with
Fr4.# for delphi ?
Using FastReport v. 4.8.41. The goal is to export to Excel and PDF.
Thank you!
then the exports are available in the preview menu bar.
if you are trying to run from code no dialogs
typicaly
frxreport1.loadfromfile('path&filename");
frxreport1.preparereport;
//set all properties for export filter component here
frxpdfexport1.propertyname:= value;
frxreport1.export(frxpdfexport1);
fr4 programmers manual, users manual, and developers manual, are located on the page where the demo version can be downloaded.