コード例 #1
0
        private void AfficherStats()
        {
            Form_Statistiques stats = new Form_Statistiques(oracon, maBelleConnection, "");

            this.Hide();
            stats.Text         = "Statistiques";
            stats.callBackForm = this;
            stats.ShowDialog();
        }
コード例 #2
0
        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();
        }