diff --git a/psychorientation/psychorientation/Form1.cs b/psychorientation/psychorientation/Form1.cs
index d04a56b0b5a307ae7310ba33da6a6d69c70c4dd4..baf4f85c4c2c2695ec38bb3efdcda6588afc5536 100644
--- a/psychorientation/psychorientation/Form1.cs
+++ b/psychorientation/psychorientation/Form1.cs
@@ -43,17 +43,21 @@ namespace psychorientation
         private void Form1_Load(object sender, EventArgs e)
         {
             InitialiserTableau();
+            CreerEleve(nombreEleve);
+
             TypeMessage tm = TypeMessage.INFORMATION;
             Message m = new Message(-1,"Bonjour apprenti prof, vous allez apprendre à éduquer des joueurs !! ","Début",tm);
             m.ShowDialog();
             
-            CreerEleve(nombreEleve);
+            
             InterfaceInfoEleve ii = new InterfaceInfoEleve();
             ii.setParam(listEleve[0],listClasse);
             ii.Left = 0;
             ii.Top = 0;
             ii.BorderStyle = BorderStyle.Fixed3D;
             this.Controls.Add(ii);
+
+
         }
     }
 }