private void textBox6_KeyPress(object sender, KeyPressEventArgs e) { validaciones numero = new validaciones(); numero.SoloNumeros(e); //e.Handled = char.IsWhiteSpace(e.KeyChar); }
private void registro_KeyPress(object sender, KeyPressEventArgs e) { validaciones numero = new validaciones(); numero.SoloNumeros(e); validaciones vali = new validaciones(); vali.ParaLoginSinEspacios(e); }
private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { validaciones numero = new validaciones(); numero.SoloNumeros(e); }