コード例 #1
0
ファイル: frmCliente.cs プロジェクト: HTomasH/LasVentas
 private void txtNumeroDocu_KeyPress(object sender, KeyPressEventArgs e)
 {
     DValidator.ValiEnter(e);
 }
コード例 #2
0
ファイル: frmImpuestos.cs プロジェクト: HTomasH/LasVentas
 private void txtnPorReq_KeyPress(object sender, KeyPressEventArgs e)
 {
     DValidator.NumerosDecimales(e);
     DValidator.ValiEnter(e);
 }
コード例 #3
0
ファイル: frmCliente.cs プロジェクト: HTomasH/LasVentas
 private void cbTipo_Documento_KeyPress(object sender, KeyPressEventArgs e)
 {
     DValidator.ValiEnter(e);
 }
コード例 #4
0
ファイル: frmCliente.cs プロジェクト: HTomasH/LasVentas
 private void txtEmail_KeyPress(object sender, KeyPressEventArgs e)
 {
     DValidator.ValiEnter(e);
 }
コード例 #5
0
ファイル: frmCliente.cs プロジェクト: HTomasH/LasVentas
 private void dtFechaNac_KeyPress(object sender, KeyPressEventArgs e)
 {
     DValidator.ValiEnter(e);
 }
コード例 #6
0
ファイル: frmCliente.cs プロジェクト: HTomasH/LasVentas
 private void txtPoblacion_KeyPress(object sender, KeyPressEventArgs e)
 {
     DValidator.ValiEnter(e);
 }
コード例 #7
0
ファイル: frmCliente.cs プロジェクト: HTomasH/LasVentas
 private void txtCuenta_KeyPress(object sender, KeyPressEventArgs e)
 {
     DValidator.SoloNumeros(e);
     DValidator.ValiEnter(e);
 }