Exemplo n.º 1
0
 private void btnAtras_Click(object sender, EventArgs e)
 {
     frmDespidos = new FrmGestionDespidos();
     frmDespidos.Show();
     this.Close();
     this.Dispose();
 }
 private void btnConsultarDespidos_Click(object sender, EventArgs e)
 {
     try
     {
         this.frmDespidos = new FrmGestionDespidos();
         this.frmDespidos.Show();
         this.Close();
         this.Dispose();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }