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