Exemplo n.º 1
0
 private void btnStat_Click(object sender, EventArgs e)
 {
     if (comboBoxVisiteur.SelectedItem != null)
     {
         FormStatistique statistique = new FormStatistique((Utilisateur)comboBoxVisiteur.SelectedItem);
         statistique.Show();
     }
     else
     {
         MessageBox.Show("Aucun visiteur séléctionné");
     }
 }
Exemplo n.º 2
0
        private void statistiquesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormStatistique stat = new FormStatistique(Passerelle.Passerelle.getVisiteurSession());

            OUVRE_UNE_MDI_FILLE(stat, this);
        }