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_NomPer(Convert.ToInt32(Txt_CedPer.Text)); Util.CambiarTxt(Txt_CedPer, Txt_ComAsd); } 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_NomPer(Convert.ToInt32(Txt_CedPer.Text)); Util.CambiarTxt(Txt_CedPer, Txt_ComAsd); } } break; case Keys.Escape: e.SuppressKeyPress = true; Cmd_Cancelar.PerformClick(); Txt_ComAsd.Text = ""; break; } }