TextChanged like event

Oops!

You'll need to add an event handler to the EditingControlShowing event.

VB.NET:
Add Handler e.Control.KeyPress, AddressOf CellKeyPressed

VB.NET:
Private Sub CellKeyPressed(ByVal sender As Object, ByVal e As KeyPressEventArgs_
     MessageBox.Show("Key Pressed")
End Sub
 
Back
Top