C Cdude Jul 4, 2008 #1 How would one catch the event generated when one leaves a column and moves to the next column in a datagridview? thanks in advance
How would one catch the event generated when one leaves a column and moves to the next column in a datagridview? thanks in advance
M Marc Gravell Jul 4, 2008 #2 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
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