Hello,
How would I get the value of columns from a selected row in the grid.
On doubleclick of row in the grid, I need to take the values from the selected row for each column and pass it to the other form.
I want to put the values in different variables.
This is my code:
''Check if the user has selected the row
If Me.ugrdImportDetails.Selected.Rows.Count > 0 Then
Next
End If
Thanks
just enumerate cells in your row:
foreach (UltraGridCell cell in rowSelected.Cells)
{
cell.Value - gives you value object in row at column: cell.Column.Key (column name)
}
Can I have a VB.net code please??