예제 #1
0
파일: Program.cs 프로젝트: weimingtom/pap2
        static void Main(string[] args)
        {
            //Application.EnableVisualStyles();
            //Application.SetCompatibleTextRenderingDefault(false);
            //Application.Run(new Form1());

            if (args.Length == 0)
            {
                GSTEP = 0;
            }
            else if (args[0] == "-step1")
            {
                GSTEP = 1;
            }
            else if (args[0] == "-step2")
            {
                GSTEP = 2;
            }
            else
            {
                GSTEP = 0;
            }

            ExportManager exportManager = new ExportManager();

            exportManager.Export();
        }
예제 #2
0
파일: Program.cs 프로젝트: viticm/pap2
        static void Main()
        {
            //Application.EnableVisualStyles();
            //Application.SetCompatibleTextRenderingDefault(false);
            //Application.Run(new Form1());

            EV ev = new EV();
            ev.evPath(Path.GetDirectoryName(Application.ExecutablePath));

            ExportManager exportManager = new ExportManager();
            exportManager.Export();
        }
예제 #3
0
파일: Program.cs 프로젝트: weimingtom/pap2
        static void Main()
        {
            //Application.EnableVisualStyles();
            //Application.SetCompatibleTextRenderingDefault(false);
            //Application.Run(new Form1());

            EV ev = new EV();

            ev.evPath(Path.GetDirectoryName(Application.ExecutablePath));

            ExportManager exportManager = new ExportManager();

            exportManager.Export();
        }
예제 #4
0
파일: Program.cs 프로젝트: viticm/pap2
        static void Main(string[] args)
        {
            //Application.EnableVisualStyles();
            //Application.SetCompatibleTextRenderingDefault(false);
            //Application.Run(new Form1());

            if (args.Length == 0)
                GSTEP = 0;
            else if (args[0] == "-step1")
                GSTEP = 1;
            else if (args[0] == "-step2")
                GSTEP = 2;
            else
                GSTEP = 0;

            ExportManager exportManager = new ExportManager();
            exportManager.Export();
        }