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é"); } }
private void statistiquesToolStripMenuItem_Click(object sender, EventArgs e) { FormStatistique stat = new FormStatistique(Passerelle.Passerelle.getVisiteurSession()); OUVRE_UNE_MDI_FILLE(stat, this); }