private void Txt_CedPer_KeyDown(object sender, KeyEventArgs e)
        {
            switch (e.KeyCode)
            {
            case Keys.Enter:
                e.SuppressKeyPress = true;
                if (Txt_CedPer.Text.Trim() != "")
                {
                    if (FunPER.Existe(Convert.ToInt32(Txt_CedPer.Text)))
                    {
                        if (FunPER.StatudAI(Convert.ToInt32(Txt_CedPer.Text)))
                        {
                            Llenar_Lb(Convert.ToInt32(Txt_CedPer.Text));
                            Util.CambiarTxt(Txt_CedPer, Dat_FeiVac);
                        }
                        else
                        {
                            MessageBox.Show("El trabajador se encuentra egresado", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                            Txt_CedPer.SelectAll();
                        }
                    }
                    else
                    {
                        MessageBox.Show("El trabajador no extiste.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                        Txt_CedPer.SelectAll();
                    }
                }
                else
                {
                    FormBUSQUEDAS f = new FormBUSQUEDAS();
                    f.ListaPersonalAI();
                    f.ShowDialog();
                    if (f._CedPer != "")
                    {
                        Txt_CedPer.Text = f._CedPer;
                        Llenar_Lb(Convert.ToInt32(Txt_CedPer.Text));
                        Util.CambiarTxt(Txt_CedPer, Dat_FeiVac);
                    }
                }
                break;

            case Keys.Escape:
                e.SuppressKeyPress = true;
                Cmd_Cancelar.PerformClick();
                break;
            }
        }
        private void Txt_TipTra_KeyDown(object sender, KeyEventArgs e)
        {
            switch (e.KeyCode)
            {
            case Keys.Enter:
                e.SuppressKeyPress = true;
                if (Txt_TipTra.Text.Trim() != "")
                {
                    if (FunTIPTRA.Existe(Txt_TipTra.Text))
                    {
                        if (FunTIPTRA.StatusAI(Txt_TipTra.Text))
                        {
                            Llenar_Lb_TipTra(Txt_TipTra.Text);
                            Util.CambiarTxt(Txt_TipTra, Txt_ComMov);
                        }
                        else
                        {
                            MessageBox.Show("La transacción se encuentra inactiva", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                            Txt_TipTra.SelectAll();
                        }
                    }
                    else
                    {
                        MessageBox.Show("La transacción no existe en el sistema.", "Atención", MessageBoxButtons.OK, MessageBoxIcon.Stop);
                        Txt_TipTra.SelectAll();
                    }
                }
                else
                {
                    FormBUSQUEDAS f = new FormBUSQUEDAS();
                    f.ListaTransaccionesAI();
                    f.ShowDialog();
                    if (f._TipTra != "")
                    {
                        Txt_TipTra.Text = f._TipTra;
                        Llenar_Lb_TipTra(Txt_TipTra.Text);
                        Util.CambiarTxt(Txt_TipTra, Txt_ComMov);
                    }
                }
                break;

            case Keys.Escape:
                e.SuppressKeyPress = true;
                Cmd_Cancelar.PerformClick();
                break;
            }
        }