This code does not allow me to enter numeric values from a numeric keypad.
private void textBox1_KeyDown( object sender, KeyEventArgs e ) {
e.SuppressKeyPress = !( (e.KeyValue >= 48 && e.KeyValue <= 57) )
}
How can I include numerical values in general (both from regular and number keys)?