Hi all I'm using datagridview with vb.net, I have a CHECKBOX COLUMN then I fill it I use CellContentClick event that when the user change the CHECKBOX COLUMN vlue then do ......... something what is happened, when the user change CHECKBOX COLUMN value the CellContentClick is firing , for eg: CHECKBOX COLUMN value before click = true after click will be = false when I go to get it's value
Dim chk As Boolean
chk = MyDataGridView.CurrentRow.Cells("Col_Check").Value)
it's still keeping its orginal value (True) it's saving the new value after you change the row if any one can help thank you
jooooo