Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. private void TextBox1_KeyPress(object sender, KeyPressEventArgs e)
  2. {
  3. e.Handled = (e.KeyChar == (char)Keys.Space);
  4.  
  5. }
  6. private void Button5_Click(object sender, EventArgs e)
  7. {
  8.  
  9. if (textBox1.Text == "" ^ textBox1.Text.Any(char.IsDigit))
  10. {
  11. MessageBox.Show("Введите имя!n1.Ваше имя не должно содержать цифр или любых других знаков!n2.Ваше имя не должно быть пустым!");
  12. }
  13.  
  14.  
  15.  
  16. else
  17. {
  18. //другие условия
  19. }
  20.  
  21.  
  22.  
  23.  
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement