-1

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.

Leigh
  • 28,765
  • 10
  • 55
  • 103

1 Answers1

0

In your datagridview validating event add this

Private Sub DataGridView1_Validating( .... ) Handler ....

    e.Cancel = False

End Sub
matzone
  • 5,703
  • 3
  • 17
  • 20
  • @user2463128 : There's no param .. just add **e.Cancel = False** in your Datagridview Validating Event ... – matzone Jun 12 '13 at 03:56