Hi
under this event
Private Sub dgSO_CellContentClick(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles dgSO.CellContentClick
if user click the checkbox in datagridview, a window pops up and ask data
when user press escape (no data input), the popup form will dispose and the checkbox should be unchecked
This code doesn't work
dgSO.CurrentRow.Cells(14).Value = False
I also tried this
Dim chk As DataGridViewCheckBoxCell = CType(dgSO.Rows(e.RowIndex).Cells(14), DataGridViewCheckBoxCell)
chk.Value = 0 (or false)