コード例 #1
0
        private void TxtNomina_KeyPress(object sender, KeyPressEventArgs e)
        {
            Soporte.ValidarNumeros(TxtNomina, e);

            if (e.KeyChar == (Char)Keys.Enter)
            {
                BtnBuscarNomina.PerformClick();
            }
        }
コード例 #2
0
 private void TxtPin_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtPin, e);
     Soporte.EventoPresKeyTxt(sender, e, TxtPalabraSeguridad);
 }
コード例 #3
0
 private void TxtNumComprobante_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtNumComprobante, e);
     Soporte.EventoPresKeyCmbx(sender, e, CmbProveedores);
 }
コード例 #4
0
 private void TxtNomina_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtNomina, e);
 }
コード例 #5
0
ファイル: FormSucursales.cs プロジェクト: RHERNAM/SystemSales
 private void TxtCodigoPostal_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtCodigoPostal, e);
 }