G
Guest
I have a class derived from DataGridTextBoxColumn. I was trying to deal
with a data entry issue, and wanted to change from using a KeyPress event to
a KeyUp event. However, while the KeyPress event was getting called the
KeyUp event is not.
Was:
TextBox.KeyPress += new KeyPressEventHandler(TextBox_KeyPress);
Want:
TextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(TextBox_KeyUp);
Any ideas?
TIA
with a data entry issue, and wanted to change from using a KeyPress event to
a KeyUp event. However, while the KeyPress event was getting called the
KeyUp event is not.
Was:
TextBox.KeyPress += new KeyPressEventHandler(TextBox_KeyPress);
Want:
TextBox.KeyUp += new System.Windows.Forms.KeyEventHandler(TextBox_KeyUp);
Any ideas?
TIA