Example #1
0
        private void TxtNomina_KeyPress(object sender, KeyPressEventArgs e)
        {
            Soporte.ValidarNumeros(TxtNomina, e);

            if (e.KeyChar == (Char)Keys.Enter)
            {
                BtnBuscarNomina.PerformClick();
            }
        }
Example #2
0
 private void TxtPin_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtPin, e);
     Soporte.EventoPresKeyTxt(sender, e, TxtPalabraSeguridad);
 }
Example #3
0
 private void TxtNumComprobante_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtNumComprobante, e);
     Soporte.EventoPresKeyCmbx(sender, e, CmbProveedores);
 }
 private void TxtNomina_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtNomina, e);
 }
Example #5
0
 private void TxtCodigoPostal_KeyPress(object sender, KeyPressEventArgs e)
 {
     Soporte.ValidarNumeros(TxtCodigoPostal, e);
 }