I created an instance of DataGridView
to display a dataset. I made the 8th column editable. However, when I edit this column and go to another column/cell, the value has not changed.
Can anyone help me solve this problem. I am a new to VB.NET.
I created an instance of DataGridView
to display a dataset. I made the 8th column editable. However, when I edit this column and go to another column/cell, the value has not changed.
Can anyone help me solve this problem. I am a new to VB.NET.
In your datagridview validating event add this
Private Sub DataGridView1_Validating( .... ) Handler ....
e.Cancel = False
End Sub