// private void FinalizarRecoleccion() { //Finalizamos el proceso de recolección de claves. repositorio.FinalizarRecoleccion(Recoleccion.ID, Recoleccion.LocalizacionPkg); try { this.Close(); Abastecer fAbastecer = new Abastecer(); fAbastecer.Show(); } catch (Exception) { } }
// private void btnAbastecer_Click(object sender, EventArgs e) { //Si existe alguna recolección pendiente, se manda a finalizarla //Habilitamos el botón de abastecer y inabilitamos el botón de Recolectar btnAbastecer.Enabled = true; btnRecolectar.Enabled = false; try { this.Close(); Abastecer fAbastecer = new Abastecer(); fAbastecer.Show(); } catch (Exception) { } }