BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Private Sub GridDataBoundGrid1_CurrentCellDeactivating(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles GridDataBoundGrid1.CurrentCellDeactivating
If Not Me.GridDataBoundGrid1.CurrentCell.IsInMoveTo And Me.GridDataBoundGrid1.CurrentCell.IsEditing Then
Me.GridDataBoundGrid1.CurrentCell.EndEdit()
Console.WriteLine("EndEdit")
End If
End Sub
in the CurrentCellDeactivating event to do this.
Other than that, I cannot think of anything.
-Clay