private void TxtId_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }
private void TxtNombre_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloLetras(e); }
private void TxtPorcientoComision_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }
private void TxtLimiteCredito_KeyPress(object sender, KeyPressEventArgs e) { Validar.SoloNumeros(e); }