コード例 #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);
        }