Below is the code that exports report to xml:
using (FastReport.Export.Xml.XMLExport export = new FastReport.Export.Xml.XMLExport())
{
if (export.ShowDialog())
export.Export(report1, @"result.xml");
}
but how to export report to xls-file?
I don't think FastReport.Net can export to .xls file. But it can export to .xlsx files. Try the following code: