프로젝트

일반

사용자정보

통계
| 개정판:

hytos / DTI_PID / ID2PSN / Program.cs @ 8487ecb2

이력 | 보기 | 이력해설 | 다운로드 (1.15 KB)

1
using System;
2
using System.Collections.Generic;
3
using System.IO;
4
using System.Linq;
5
using System.Threading.Tasks;
6
using System.Windows.Forms;
7

    
8
namespace ID2PSN
9
{
10
    static class Program
11
    {
12
        /// <summary>
13
        /// 해당 애플리케이션의 주 진입점입니다.
14
        /// </summary>
15
        [STAThread]
16
        static void Main(string[] args)
17
        {
18
            //string path = Application.StartupPath + @"\project.txt";
19
            //if (System.IO.File.Exists(path))
20
            //{
21
            //    ID2Info info = ID2Info.GetInstance();
22
            //    info.DefaultPath = File.ReadAllLines(path)[0];
23
            //}
24

    
25
            ID2Info info = ID2Info.GetInstance();
26
            if (args.Length > 0)
27
                info.DefaultPath = args[0];
28
#if DEBUG
29
            info.DefaultPath = @"D:\Projects\SampleProject";
30
#endif
31

    
32
            if (DB.ConnTestAndCreateTable())
33
            {
34
                Application.EnableVisualStyles();
35
                Application.SetCompatibleTextRenderingDefault(false);
36
                Application.Run(new MainForm()); 
37
            }
38
            else
39
                MessageBox.Show("fail");
40
        }
41
    }
42
}
클립보드 이미지 추가 (최대 크기: 500 MB)