예제 #1
0
파일: Program.cs 프로젝트: CS499Group6/PIMS
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            myForm = new PimsForm();
            myForm.splitContainer1.Panel1.Controls.Add(new LoginLeftSideButtons());
            leftSideButton = new LeftSideButtons();
            officeStaffLeftSideButton = new OfficeStaffLeftSideButtons();
            newPatientLeftSideButton = new NewPatientLeftSideButtons();

            PIMSController.SQLcommands.initValues();

            Application.Run(myForm);
        }
예제 #2
0
파일: Program.cs 프로젝트: Maxwell20/PIMS
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            myForm = new PimsForm();
            myForm.splitContainer1.Panel1.Controls.Add(new LoginLeftSideButtons());
            leftSideButton            = new LeftSideButtons();
            officeStaffLeftSideButton = new OfficeStaffLeftSideButtons();
            newPatientLeftSideButton  = new NewPatientLeftSideButtons();

            PIMSController.SQLcommands.initValues();

            Application.Run(myForm);
        }