public static void LoadPatience(bool _fin, bool _vide) { if (PBAR_WAIT != null) { ObjectThread o = new ObjectThread(PBAR_WAIT); if (!_fin) { o.UpdateBar(1); } else { if (_vide) { o._UpdateBar(PBAR_WAIT.Maximum, "Aucun resultat"); } else { o.UpdateBar(PBAR_WAIT.Maximum - PBAR_WAIT.Value); PBAR_WAIT = null; } } } }
public static void LoadPatience(bool _fin) { try { if (PBAR_WAIT != null) { ObjectThread o = new ObjectThread(PBAR_WAIT); if (!_fin) { o.UpdateBar(1); } else { o.UpdateBar(PBAR_WAIT.Maximum - PBAR_WAIT.Value); PBAR_WAIT = null; } } } catch (Exception ex) { Utils.Exception(ex); } }