Hi,
I installed 2011 Q3 Telerik reporting framework. I tried to render my report in to XLSX it threw an exception "Telerik.Reporting.Processing.RendererNotAvailableException: XLSX rendering format is not available."
The code:
It worked for "XSL" extension not "XSLX".
Many Thanks
Joseph
I installed 2011 Q3 Telerik reporting framework. I tried to render my report in to XLSX it threw an exception "Telerik.Reporting.Processing.RendererNotAvailableException: XLSX rendering format is not available."
The code:
var reportProcessor =
new
ReportProcessor();
RenderingResult result = reportProcessor.RenderReport(
"XLSX"
, report,
null
);
string
reportFileName = @
"C:\report"
+ DateTime.Now.Ticks +
".xslx"
;
FileStream fs =
new
FileStream(reportFileName, FileMode.Create);
fs.Write(result.DocumentBytes, 0, result.DocumentBytes.Length);
fs.Flush();
fs.Close();
It worked for "XSL" extension not "XSLX".
Many Thanks
Joseph