private void TxtID_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (e.KeyChar == 13)
     {
         if (TxtDV.Visible)
         {
             TxtDV.Focus();
         }
         else
         {
             TxtExpedida.Focus();
         }
     }
 }
 private void TxtNumID_KeyPress(object sender, KeyPressEventArgs e)
 {
     Func.ValidaNumeros(ref e);
     if (e.KeyChar == 13)
     {
         if (TxtDV.Visible)
         {
             TxtDV.Focus();
         }
         else
         {
             TxtDescripcion.Focus();
         }
     }
 }
示例#3
0
 private void TxtNumID_KeyPress(object sender, KeyPressEventArgs e)
 {
     Funciones.ValidaNumeros(ref e);
     if (e.KeyChar == 13)
     {
         if (TxtDV.Visible)
         {
             TxtDV.Focus();
         }
         else
         {
             //Program.MensajeEstado("Generando Liquidación propietario");
             CargarDatos();
             TxtDescripcion.Focus();
         }
     }
 }