private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if(char.IsDigit(e.KeyChar)) { MessageBox.Show("is digit"); } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)