private void TxtClave_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloLetras(sender, e); }
private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloNumeros(sender, e); }
private void txtApellido_KeyPress(object sender, KeyPressEventArgs e) { Validaciones.SoloLetras(sender, e); }