the backspace key code

  • Thread starter Thread starter dahuzizyd
  • Start date Start date
D

dahuzizyd

You could use this :
private void textBox1_KeyPress(object sender,
System.Windows.Forms.KeyPressEventArgs e)
{
MessageBox.Show(Convert.ToInt32(e.KeyChar).ToString());
}
 
The character is 8.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
You can lead a fish to a bicycle,
but it takes a very long time,
and the bicycle has to *want* to change.
 
Back
Top