private void x_tasas_interes_KeyPress(object sender, KeyPressEventArgs e) { //Validates.SoloNumerosDecimales(e, x_tasas_interes.Text); Validates.SoloNumeros(e); }
private void x_anio_cheque_KeyPress(object sender, KeyPressEventArgs e) { Validates.DesactivaTeclado(e); }
private void x_nombre_completo_cheque_KeyPress(object sender, KeyPressEventArgs e) { Validates.SoloLetras(e); }
private void x_cod_auth_cheque_KeyPress(object sender, KeyPressEventArgs e) { Validates.SoloNumeros(e); }
private void nro_cta_corriente_KeyPress(object sender, KeyPressEventArgs e) { Validates.SoloNumeros(e); }
private void x_monto_KeyPress(object sender, KeyPressEventArgs e) { Validates.SoloNumeros(e); }
private void monto_KeyPress(object sender, KeyPressEventArgs e) { //Validates.SoloNumerosDecimales(e,x_monto.Text); Validates.SoloNumeros(e); }