Home › Forums › WinForms controls › Xceed Grid for WinForms › Updating another column of the current row › Reply To: Updating another column of the current row
Try this:<code>Private Sub cell0_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles grdCharges.DataRowTemplate.Cells(0).ValueChanged
Dim cell As Xceed.Grid.Cell = CType(sender, Xceed.Grid.Cell)
Dim row As Xceed.Grid.CellRow = cell.ParentRow
row.Cells(1).Value = cell.Value
End Sub</code>
Imported from legacy forums. Posted by Tommy (had 3736 views)