Alfredo
thanks -=Den=-.
I have been able to create a graph by code.
now I have another dilemma. I need to export the graph (report) to image (GIF).
I have been proving:
Dim Exportar As FastReport.IfrxCustomExportFilter
Set Exportar = report.CreateReportObjectEx(report, "TfrxCustomExportFilter", "Export")
report.ExportReport (Exportar)
It gives an error me that does not recognize the object.
Thanks
I have been able to create a graph by code.
now I have another dilemma. I need to export the graph (report) to image (GIF).
I have been proving:
Dim Exportar As FastReport.IfrxCustomExportFilter
Set Exportar = report.CreateReportObjectEx(report, "TfrxCustomExportFilter", "Export")
report.ExportReport (Exportar)
It gives an error me that does not recognize the object.
Thanks
Comments
Dim frxExport As IfrxBuiltinExports
Set frx = New TfrxReport
Set frxExport = frx
frxExport.ExportToGIF "PATH\FILENAME.GIF", Resulution, Monochrome, CropPages, SeparatePages
it has worked. Thanks.