Columns in datagridview

  • Thread starter Thread starter Cdude
  • Start date Start date
C

Cdude

How would one catch the event generated when one leaves a column and
moves to the next column in a datagridview? thanks in advance
 
I'd hazard a guess at CurrentCellChanged? Either via the IDE, or:

grid.CurrentCellChanged += SomeHandler;
....
void SomeHandler(object sender, EventArgs args) {
// do something fun
}

Marc
 
Back
Top