-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.

4

1 回答 1

0

在你的 datagridview 验证事件中添加这个

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

    e.Cancel = False

End Sub
于 2013-06-07T10:35:01.433 回答