Hi,
Appreciate help to resolve my problem here: -
Infragistics.Win.UltraWinGrid.UltraGrid ulgexport = new Infragistics.Win.UltraWinGrid.UltraGrid();ulgexport.DataSource = _presenter.GetManufacturerInfo();ExcelExporter.Export(ulgexport, dlgExcelExport.FileName);
Why the data in excel file is blank even though the DataSource is assigned with data?
Thanks a lot
Probably because the grid has not been shown yet. Try to add it to a form and show it.
It works if the grid show up at the form.
But is there any alternative? because i do not need the grid to show up at form.
Thanks