After setting the UltraGrid.DataSource to a DataSet,how to get the System.Data.DataRow from a selected row of UltraGrid?
Hello,
Probably you could use the following property - ListObject from the selected row :
ultraGrid1.Selected.Rows[0].ListObject
Please let me know if you need any other assistance with this matter.
It works.Thank you.