Home › Forums › WinForms controls › Xceed Grid for WinForms › Forcing the datagrid to save edited data › Reply To: Forcing the datagrid to save edited data
Here’s the same thing in VB, which worked for me.
For Each row As Xceed.Grid.DataRow In gcAccountDetail.DataRows
If row.IsBeingEdited Then
row.EndEdit()
End If
Next
Imported from legacy forums. Posted by Dwight (had 8913 views)