Exemplo n.º 1
0
 public static void OuvrirConnexion(Form callerForm)
 {
     try
     {
         WaitSplash.Show(callerForm, "Connexion à la base de donnée...");
         Connexion.Open();
         Categories       = Categorie.ChargerToutes();
         MAX_POINTS_TOTAL = Categories.Count * Categorie.GAGNER_NBPOINTS;
         Joueurs          = Joueur.ChargerTous();
         InitPointages();
         WaitSplash.Hide();
     }
     catch (Exception exception)
     {
         MessageBox.Show(exception.Message);
     }
 }