How to get value from UltraDataSource row
You wasn't very descriptive in your question, so I went the generic route and maybe you'll figure out the rest.
UltraGridRow gridrow = ultraGrid1.ActiveRow; MessageBox.Show(gridrow.Cells["ColumnName"].Text);
I mean like in BindingSource we can use BindingSource.Current["Column"]
So, How to get value like that from UltraDatasource, not using UltraGrid.