-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
38 lines (35 loc) · 997 Bytes
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace FTP_Downloader
{
public struct ProcessInfo
{
public string strServer_ip;
public string strUser_id;
public string strPassword;
public string strDownloadPath;
public string strProgram_name;
public string strWorkDir;
public string strCorcd;
public string strBizcd;
public string strCompanyName;
public string strPlantName;
public string strBackUpPath;
public bool bBackupHist;
}
static class Program
{
/// <summary>
/// 해당 응용 프로그램의 주 진입점입니다.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
}
}
}