Advertisement
Exception_Prototype

Untitled

Oct 14th, 2017
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1.         private void textBox_TextChanged(object sender, EventArgs e)
  2.         {
  3.             if (System.Text.RegularExpressions.Regex.IsMatch(textBox.Text, "[^0-9]"))
  4.             {
  5.                 MessageBox.Show("Вводить можно только цифры!");
  6.                 textBox.Text = textBox.Text.Remove(textBox.Text.Length - 1);
  7.             }
  8.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement