Example code:
UltraGrid ug = new UltraGrid();ug.DataSource = dt;UltraGridExcelExporter ux = new UltraGridExcelExporter();ux.Export(ug, "C:\\Temp\\ExportGrids\\x.xls");
Try adding "ug.BindingContext = new BindingContext()". The grid won't be able to get any data through the .NET BindingManager without a binding context (which it usually acquires from its parent, usually a form or user control).
-Matt
Thank you!
That works. I am not familiar with the .Net BindingManager. I need to research that.