hi,

I have a DGV control on my form that is populated with 2 columns (one is just a text column and the other is a checkbox column)
What I am trying to do is invoke a procedure when an action is performed on any given checkbox in the DGV.
The problem is that I am checking which row was changed and I am having troubles finding the DGV event that happens AFTER the checkbox state has changed.

sofar I tried CELLLEAVE,CELLCLICK,CELLENDEDIT etc. to no avail

so the question is which EVENT happens AFTER the content of the cell has been modified?

thanx

Below is an example which did NOT work

VB Code:
  1. Private Sub DGFormTypes_CellLeave(ByVal sender As Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DGFormTypes.CellLeave
  2.         Try
  3.             If Me.DGFormTypes.RowCount > 0 Then
  4.                 If DGFormTypes.CurrentCell.ColumnIndex = 1 Then
  5.                     PopulateDGV()
  6.                 End If
  7.             End If
  8.         Catch ex As Exception
  9.             Debug.WriteLine(ex.Message)
  10.         End Try
  11.     End Sub