hytos / DTI_PID / ID2PSN / Program.cs @ 6b9e7a56
이력 | 보기 | 이력해설 | 다운로드 (967 Bytes)
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 |
if (DB.ConnTestAndCreateTable()) |
26 |
{ |
27 |
Application.EnableVisualStyles(); |
28 |
Application.SetCompatibleTextRenderingDefault(false); |
29 |
Application.Run(new MainForm()); |
30 |
} |
31 |
else |
32 |
MessageBox.Show("fail"); |
33 |
} |
34 |
} |
35 |
} |