private void textBox4_KeyPress(object sender, KeyPressEventArgs e) { Validacion numero = new Validacion(); numero.soloNumeros(e); }
private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { Validacion letra = new Validacion(); letra.soloLetras(e); }