Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
670
WinGridExcelExporter 2009.2 issues/questions
posted

Hello

1) I'm getting "Out-of-memory" error (no matter what the number of items in the grid is) when I try to export using the following code. If I don't specify Excel2007 option, it works fine. Do we need Excel installed on the machine to export in excel2007 format?:

 

 

SaveFileDialog1.Filter =

"Excel Worksheet|*.xlsx"

 

 

If SaveFileDialog1.ShowDialog = DialogResult.OK Then

UltraGridExcelExporter1.Export(UltraGrid1, SaveFileDialog1.FileName, Infragistics.Excel.WorkbookFormat.Excel2007)

 

 

End If

2) Do we have a chance to export only filtered items in the grid?