Example #1
0
        private void tsbOpenE_Click(object sender, EventArgs e) //Ouverture de l'html entrainement
        {
            string file = "Entrainement.htm";

            string path = Path.GetFullPath(file);

            EcranHtml f = new EcranHtml(path);

            f.FormClosed += new FormClosedEventHandler(Form_FormClosed);

            f.ShowDialog();
        }
Example #2
0
        private void tsbtnOpen_Click(object sender, EventArgs e) //Ouverture de l'html match
        {
            string file = "Programme.htm";

            string path = Path.GetFullPath(file);

            EcranHtml f = new EcranHtml(path);

            f.FormClosed += new FormClosedEventHandler(Form_FormClosed);

            f.ShowDialog();
        }