예제 #1
0
        static void Main()
        {
            s_GMBD = new GMBD();
            s_GMBD.BD.SurChangementEtatConnexion += BD_SurChangementEtatConnexion;


            if (!s_GMBD.Initialiser())
            {
                MessageBox.Show("Erreur d'accès à la base de données !", "tfe_michel_maxime", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1);
                return;
            }
            else
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Application.Run(new Form_Principal());
            }
        }