private void AfficherStats() { Form_Statistiques stats = new Form_Statistiques(oracon, maBelleConnection, ""); this.Hide(); stats.Text = "Statistiques"; stats.callBackForm = this; stats.ShowDialog(); }
private void AjouterStats() { Form_Statistiques stats = new Form_Statistiques(oracon, connection, DGV_Joueurs.SelectedRows[0].Cells[0].Value.ToString()); this.Hide(); stats.Text = "Statistiques"; stats.callBackForm = this; //stats.numeroJoueurs = DGV_Matchs.SelectedRows[0].Cells[0].Value.ToString(); stats.ShowDialog(); }