I have created a c# winforms application that has a reportviewer. When exporting the report to Excel, the default xls file is limited to 64k rows. I have searched and found that changing the rendering to EXCELOPENXML will solve the problem, however when I inspect the array rendering extentions:
RenderingExtension[] re = reportViewer1.LocalReport.ListRenderingExtensions();
There are only 3, Excel, PDF and Word.
Without upgrading the application to vs2012? What do I have to do to get the export option to render an Excel 2007/10 format without the 64k row limit?