From: newton-cn Date: Tue, 28 Jan 2025 02:26:21 +0000 (+0900) Subject: 일회용 매출, 비율 X-Git-Url: https://git.insang.kr/gitweb/?a=commitdiff_plain;h=18c0c10de3f5d6e2435065594f6612667a9dafe8;p=wevape-lu1_pos.git 일회용 매출, 비율 --- diff --git a/.vs/newton-cn/v16/.suo b/.vs/newton-cn/v16/.suo index e8eeecf..3ce2722 100644 Binary files a/.vs/newton-cn/v16/.suo and b/.vs/newton-cn/v16/.suo differ diff --git a/newton-cn/DBConnector.cs b/newton-cn/DBConnector.cs index a313725..031ed1c 100644 --- a/newton-cn/DBConnector.cs +++ b/newton-cn/DBConnector.cs @@ -10,6 +10,28 @@ namespace newton_cn { class DBConnector { + public DataTable getDisposableAnalysis(string year_month) + { + DataTable result = new DataTable(); + string procedure = "disposable_analysis"; +#if DEBUG + SqlConnection conn = new SqlConnection("Data Source=newton-cn1.iptime.org, 1818; Initial Catalog=food; User ID=newton; Password=newton123!;"); +#else + SqlConnection conn = new SqlConnection("Data Source=localhost; Initial Catalog=food; User ID=newton; Password=newton123!;"); +#endif + conn.Open(); + + + SqlCommand cmd_select = new SqlCommand(procedure, conn); + cmd_select.CommandType= CommandType.StoredProcedure; + + cmd_select.Parameters.Add(new SqlParameter("@year_month", SqlDbType.NVarChar, 50)).Value = year_month; + + SqlDataAdapter dataAdapter = new SqlDataAdapter(cmd_select); + dataAdapter.Fill(result); + + return result; + } public int updateDisposableIsEarn_log(string pe_id, string ps_no) { #if DEBUG diff --git a/newton-cn/Form1.Designer.cs b/newton-cn/Form1.Designer.cs index ffb2fa1..41417c8 100644 --- a/newton-cn/Form1.Designer.cs +++ b/newton-cn/Form1.Designer.cs @@ -34,16 +34,17 @@ namespace newton_cn this.button3 = new System.Windows.Forms.Button(); this.button4 = new System.Windows.Forms.Button(); this.eclipseControl1 = new newton_cn.EclipseControl(); + this.button5 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // button1 // - this.button1.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); - this.button1.Location = new System.Drawing.Point(213, 4); + this.button1.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.button1.Location = new System.Drawing.Point(206, 4); this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(58, 35); + this.button1.Size = new System.Drawing.Size(65, 35); this.button1.TabIndex = 0; - this.button1.Text = "상품"; + this.button1.Text = "상품 검색"; this.button1.UseVisualStyleBackColor = true; this.button1.Click += new System.EventHandler(this.button1_Click_1); // @@ -60,10 +61,10 @@ namespace newton_cn // // button3 // - this.button3.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); - this.button3.Location = new System.Drawing.Point(111, 4); + this.button3.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.button3.Location = new System.Drawing.Point(137, 4); this.button3.Name = "button3"; - this.button3.Size = new System.Drawing.Size(96, 35); + this.button3.Size = new System.Drawing.Size(63, 35); this.button3.TabIndex = 2; this.button3.Text = "포인트사용"; this.button3.UseVisualStyleBackColor = true; @@ -71,10 +72,10 @@ namespace newton_cn // // button4 // - this.button4.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); - this.button4.Location = new System.Drawing.Point(9, 4); + this.button4.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.button4.Location = new System.Drawing.Point(72, 4); this.button4.Name = "button4"; - this.button4.Size = new System.Drawing.Size(96, 35); + this.button4.Size = new System.Drawing.Size(59, 35); this.button4.TabIndex = 3; this.button4.Text = "일회용적립"; this.button4.UseVisualStyleBackColor = true; @@ -85,6 +86,17 @@ namespace newton_cn this.eclipseControl1.CornerRadius = 20; this.eclipseControl1.TargetControl = this; // + // button5 + // + this.button5.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.button5.Location = new System.Drawing.Point(12, 4); + this.button5.Name = "button5"; + this.button5.Size = new System.Drawing.Size(54, 35); + this.button5.TabIndex = 4; + this.button5.Text = "매출정보"; + this.button5.UseVisualStyleBackColor = true; + this.button5.Click += new System.EventHandler(this.button5_Click); + // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); @@ -92,6 +104,7 @@ namespace newton_cn this.BackColor = System.Drawing.SystemColors.ActiveCaption; this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ClientSize = new System.Drawing.Size(313, 44); + this.Controls.Add(this.button5); this.Controls.Add(this.button4); this.Controls.Add(this.button3); this.Controls.Add(this.button2); @@ -113,6 +126,7 @@ namespace newton_cn private System.Windows.Forms.Button button2; private System.Windows.Forms.Button button3; private System.Windows.Forms.Button button4; + private System.Windows.Forms.Button button5; } } diff --git a/newton-cn/Form1.cs b/newton-cn/Form1.cs index 4e82998..939978b 100644 --- a/newton-cn/Form1.cs +++ b/newton-cn/Form1.cs @@ -31,7 +31,7 @@ namespace newton_cn } private void Form1_Load(object sender, EventArgs e) { - + } private void button1_Click_1(object sender, EventArgs e) @@ -74,6 +74,13 @@ namespace newton_cn dlg.ShowDialog(); } + + private void button5_Click(object sender, EventArgs e) + { + Form6 dlg = new Form6(); + + dlg.ShowDialog(); + } } diff --git a/newton-cn/Form6.Designer.cs b/newton-cn/Form6.Designer.cs new file mode 100644 index 0000000..07b7e18 --- /dev/null +++ b/newton-cn/Form6.Designer.cs @@ -0,0 +1,132 @@ + +namespace newton_cn +{ + partial class Form6 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.button1 = new System.Windows.Forms.Button(); + this.dataGridView1 = new System.Windows.Forms.DataGridView(); + this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker(); + this.button2 = new System.Windows.Forms.Button(); + this.button3 = new System.Windows.Forms.Button(); + this.button4 = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); + this.SuspendLayout(); + // + // button1 + // + this.button1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.button1.Location = new System.Drawing.Point(437, 2); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(31, 30); + this.button1.TabIndex = 0; + this.button1.Text = "X"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // dataGridView1 + // + this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dataGridView1.Location = new System.Drawing.Point(3, 38); + this.dataGridView1.Name = "dataGridView1"; + this.dataGridView1.RowTemplate.Height = 23; + this.dataGridView1.Size = new System.Drawing.Size(465, 400); + this.dataGridView1.TabIndex = 1; + this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); + // + // dateTimePicker1 + // + this.dateTimePicker1.Location = new System.Drawing.Point(12, 5); + this.dateTimePicker1.Name = "dateTimePicker1"; + this.dateTimePicker1.Size = new System.Drawing.Size(149, 21); + this.dateTimePicker1.TabIndex = 2; + this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged); + // + // button2 + // + this.button2.Location = new System.Drawing.Point(335, 5); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(58, 23); + this.button2.TabIndex = 3; + this.button2.Text = "다음달"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // button3 + // + this.button3.Location = new System.Drawing.Point(173, 6); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(61, 23); + this.button3.TabIndex = 4; + this.button3.Text = "저번달"; + this.button3.UseVisualStyleBackColor = true; + this.button3.Click += new System.EventHandler(this.button3_Click); + // + // button4 + // + this.button4.Location = new System.Drawing.Point(251, 6); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(62, 23); + this.button4.TabIndex = 5; + this.button4.Text = "이번달"; + this.button4.UseVisualStyleBackColor = true; + this.button4.Click += new System.EventHandler(this.button4_Click); + // + // Form6 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(469, 450); + this.ControlBox = false; + this.Controls.Add(this.button4); + this.Controls.Add(this.button3); + this.Controls.Add(this.button2); + this.Controls.Add(this.dateTimePicker1); + this.Controls.Add(this.dataGridView1); + this.Controls.Add(this.button1); + this.Name = "Form6"; + this.ShowIcon = false; + this.ShowInTaskbar = false; + this.Text = "Form6"; + this.TopMost = true; + this.Load += new System.EventHandler(this.Form6_Load); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Button button1; + private System.Windows.Forms.DataGridView dataGridView1; + private System.Windows.Forms.DateTimePicker dateTimePicker1; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.Button button4; + } +} \ No newline at end of file diff --git a/newton-cn/Form6.cs b/newton-cn/Form6.cs new file mode 100644 index 0000000..3a1cfb0 --- /dev/null +++ b/newton-cn/Form6.cs @@ -0,0 +1,96 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Windows.Forms; + +namespace newton_cn +{ + public partial class Form6 : Form + { + public Form6() + { + InitializeComponent(); + } + + private void button1_Click(object sender, EventArgs e) + { + Application.OpenForms["Form6"].Close(); + } + + private void Form6_Load(object sender, EventArgs e) + { + dateTimePicker1.Height = 150; + // DateTimePicker의 Format을 Custom으로 설정 + dateTimePicker1.Format = DateTimePickerFormat.Custom; + + // CustomFormat을 "yyyy-MM"으로 설정하여 월 단위만 표시 + dateTimePicker1.CustomFormat = "yyyy-MM"; + + // 날짜 선택을 월 단위로 제한 (up-down 방식) + dateTimePicker1.ShowUpDown = true; + dateTimePicker1.Width = 150; // 넓이 조정 + dateTimePicker1.Height = 150; // 높이 조정 + + + string todayFormatted = DateTime.Today.ToString("yyyy-MM"); + + DBConnector dbc = new DBConnector(); + dataGridView1.DefaultCellStyle.BackColor = System.Drawing.Color.FromArgb(240, 240, 240); + dataGridView1.DataSource = dbc.getDisposableAnalysis(todayFormatted); + dataGridView1.Columns["상품명"].Width = 200; + } + + private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) + { + + } + + private void dateTimePicker1_ValueChanged(object sender, EventArgs e) + { + DateTime selectedDate = dateTimePicker1.Value; + string result = selectedDate.ToString("yyyy-MM"); + + // 선택된 날짜 출력 (예: 콘솔에 출력) + + DBConnector dbc = new DBConnector(); + dataGridView1.DefaultCellStyle.BackColor = System.Drawing.Color.FromArgb(240, 240, 240); + dataGridView1.DataSource = dbc.getDisposableAnalysis(result); + dataGridView1.Columns["상품명"].Width = 200; + } + + private void button4_Click(object sender, EventArgs e) + { + dateTimePicker1.Value = DateTime.Today; + } + + private void button2_Click(object sender, EventArgs e) + { + // 현재 DateTimePicker 값에서 한 달 뒤의 날짜 계산 + DateTime nextMonthDate = dateTimePicker1.Value.AddMonths(1); + + // 오늘 날짜 (현재 연도와 월) + DateTime today = DateTime.Today; + + // 한 달 뒤의 날짜가 오늘 날짜의 연도와 월을 넘기지 않도록 체크 + if (nextMonthDate.Year > today.Year || (nextMonthDate.Year == today.Year && nextMonthDate.Month > today.Month)) + { + // 한 달 뒤의 날짜가 오늘 날짜의 연도와 월을 넘기면, 오늘 날짜의 연도와 월로 설정 + dateTimePicker1.Value = new DateTime(today.Year, today.Month, DateTime.DaysInMonth(today.Year, today.Month)); + } + else + { + // 그렇지 않으면 한 달 뒤의 날짜로 설정 + dateTimePicker1.Value = nextMonthDate; + } + } + + private void button3_Click(object sender, EventArgs e) + { + dateTimePicker1.Value = dateTimePicker1.Value.AddMonths(-1); + } + } +} diff --git a/newton-cn/Form6.resx b/newton-cn/Form6.resx new file mode 100644 index 0000000..7080a7d --- /dev/null +++ b/newton-cn/Form6.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/newton-cn/USBControl.cs b/newton-cn/USBControl.cs new file mode 100644 index 0000000..b06c540 --- /dev/null +++ b/newton-cn/USBControl.cs @@ -0,0 +1,63 @@ +using System; +using System.Management; + +// ##### 유기중.... 언젠가 해야지 + +class USBControl +{ + public static void test() + { + Console.WriteLine("현재 연결된 USB 장치 목록:"); + Console.WriteLine("-----------------------------------"); + string result = ""; + try + { + // Win32_PnPEntity 클래스에서 USB 관련 장치 검색 + string query = "SELECT * FROM Win32_PnPEntity WHERE DeviceID LIKE '%046D%' and Name= 'HID 규격 마우스'"; + using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(query)) + { + foreach (ManagementObject device in searcher.Get()) + { + Console.WriteLine($"이름: {device["Name"]}"); + Console.WriteLine($"장치 ID: {device["DeviceID"]}"); + Console.WriteLine($"설명: {device["Description"]}"); + Console.WriteLine("-----------------------------------"); + + ManagementBaseObject disabled = device.InvokeMethod("Disable", null, null); + + System.Threading.Thread.Sleep(5000); + + ManagementBaseObject enabled = device.InvokeMethod("Enable", null, null); + } + } + } + catch (Exception ex) + { + Console.WriteLine($"USB 장치 정보를 가져오는 중 오류 발생: {ex.Message}"); + } + } + + // 장치 비활성화 + public static void DisableDevice(string deviceId) + { + string query = $"SELECT * FROM Win32_PnPEntity WHERE DeviceID = '{deviceId}'"; + ManagementObjectSearcher searcher = new ManagementObjectSearcher(query); + foreach (ManagementObject device in searcher.Get()) + { + ManagementBaseObject outParams = device.InvokeMethod("Disable", null, null); + Console.WriteLine($"장치 {deviceId}가 비활성화되었습니다."); + } + } + + // 장치 활성화 + public static void EnableDevice(string deviceId) + { + string query = $"SELECT * FROM Win32_PnPEntity WHERE DeviceID = '{deviceId}'"; + ManagementObjectSearcher searcher = new ManagementObjectSearcher(query); + foreach (ManagementObject device in searcher.Get()) + { + ManagementBaseObject outParams = device.InvokeMethod("Enable", null, null); + Console.WriteLine($"장치 {deviceId}가 활성화되었습니다."); + } + } +} \ No newline at end of file diff --git a/newton-cn/bin/Debug/newton-cn.exe b/newton-cn/bin/Debug/newton-cn.exe index 5aae992..a69d1f7 100644 Binary files a/newton-cn/bin/Debug/newton-cn.exe and b/newton-cn/bin/Debug/newton-cn.exe differ diff --git a/newton-cn/bin/Debug/newton-cn.pdb b/newton-cn/bin/Debug/newton-cn.pdb index 7952fa6..cc2f412 100644 Binary files a/newton-cn/bin/Debug/newton-cn.pdb and b/newton-cn/bin/Debug/newton-cn.pdb differ diff --git a/newton-cn/bin/Release/newton-cn.exe b/newton-cn/bin/Release/newton-cn.exe index fda79b3..9dad505 100644 Binary files a/newton-cn/bin/Release/newton-cn.exe and b/newton-cn/bin/Release/newton-cn.exe differ diff --git a/newton-cn/bin/Release/newton-cn.pdb b/newton-cn/bin/Release/newton-cn.pdb index 39e9d37..9462d7c 100644 Binary files a/newton-cn/bin/Release/newton-cn.pdb and b/newton-cn/bin/Release/newton-cn.pdb differ diff --git a/newton-cn/newton-cn.csproj b/newton-cn/newton-cn.csproj index bd6bac9..dd3b963 100644 --- a/newton-cn/newton-cn.csproj +++ b/newton-cn/newton-cn.csproj @@ -51,6 +51,7 @@ + @@ -64,6 +65,13 @@ + + Form + + + Form6.cs + + Component @@ -117,6 +125,9 @@ Form5.cs + + Form6.cs + ResXFileCodeGenerator Resources.Designer.cs diff --git a/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache index bcd5701..16804eb 100644 Binary files a/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 6fcb73d..6e6e6e5 100644 Binary files a/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/newton-cn/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/newton-cn/obj/Debug/newton-cn.csproj.AssemblyReference.cache b/newton-cn/obj/Debug/newton-cn.csproj.AssemblyReference.cache index 2261fee..654fe63 100644 Binary files a/newton-cn/obj/Debug/newton-cn.csproj.AssemblyReference.cache and b/newton-cn/obj/Debug/newton-cn.csproj.AssemblyReference.cache differ diff --git a/newton-cn/obj/Debug/newton-cn.csproj.CoreCompileInputs.cache b/newton-cn/obj/Debug/newton-cn.csproj.CoreCompileInputs.cache index f4ffa1c..2c3bfcf 100644 --- a/newton-cn/obj/Debug/newton-cn.csproj.CoreCompileInputs.cache +++ b/newton-cn/obj/Debug/newton-cn.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -9c927f7136556afac3ccb2fe06ffe7b69bd3cafc +77becbbe38540d75bcab8131eb90cecf1ed49f05 diff --git a/newton-cn/obj/Debug/newton-cn.csproj.FileListAbsolute.txt b/newton-cn/obj/Debug/newton-cn.csproj.FileListAbsolute.txt index 4d5bac0..2684ab1 100644 --- a/newton-cn/obj/Debug/newton-cn.csproj.FileListAbsolute.txt +++ b/newton-cn/obj/Debug/newton-cn.csproj.FileListAbsolute.txt @@ -34,3 +34,4 @@ z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Debug\newton-cn.ex z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Debug\newton-cn.pdb z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Debug\newton_cn.Form5.resources z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Debug\newton-cn.csproj.AssemblyReference.cache +z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Debug\newton_cn.Form6.resources diff --git a/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache b/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache index 1fabc86..1d4883f 100644 Binary files a/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache and b/newton-cn/obj/Debug/newton-cn.csproj.GenerateResource.cache differ diff --git a/newton-cn/obj/Debug/newton-cn.exe b/newton-cn/obj/Debug/newton-cn.exe index 5aae992..a69d1f7 100644 Binary files a/newton-cn/obj/Debug/newton-cn.exe and b/newton-cn/obj/Debug/newton-cn.exe differ diff --git a/newton-cn/obj/Debug/newton-cn.pdb b/newton-cn/obj/Debug/newton-cn.pdb index 7952fa6..cc2f412 100644 Binary files a/newton-cn/obj/Debug/newton-cn.pdb and b/newton-cn/obj/Debug/newton-cn.pdb differ diff --git a/newton-cn/obj/Debug/newton_cn.Form6.resources b/newton-cn/obj/Debug/newton_cn.Form6.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/newton-cn/obj/Debug/newton_cn.Form6.resources differ diff --git a/newton-cn/obj/Release/newton-cn.csproj.CoreCompileInputs.cache b/newton-cn/obj/Release/newton-cn.csproj.CoreCompileInputs.cache index 6493184..5a34011 100644 --- a/newton-cn/obj/Release/newton-cn.csproj.CoreCompileInputs.cache +++ b/newton-cn/obj/Release/newton-cn.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -4315477b5f16310b27f3cb468e963765dec56f29 +429a19c000682c0a0625c1880a6c3805ece4a6fe diff --git a/newton-cn/obj/Release/newton-cn.csproj.FileListAbsolute.txt b/newton-cn/obj/Release/newton-cn.csproj.FileListAbsolute.txt index 61349cd..f9abb88 100644 --- a/newton-cn/obj/Release/newton-cn.csproj.FileListAbsolute.txt +++ b/newton-cn/obj/Release/newton-cn.csproj.FileListAbsolute.txt @@ -33,3 +33,4 @@ z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton-cn. z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.Form3.resources z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.Form4.resources z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.Form5.resources +z:\바탕 화면\insang\workspace\newton-cn_pos\newton-cn\obj\Release\newton_cn.Form6.resources diff --git a/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache b/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache index 3d4625f..1d4883f 100644 Binary files a/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache and b/newton-cn/obj/Release/newton-cn.csproj.GenerateResource.cache differ diff --git a/newton-cn/obj/Release/newton-cn.exe b/newton-cn/obj/Release/newton-cn.exe index fda79b3..9dad505 100644 Binary files a/newton-cn/obj/Release/newton-cn.exe and b/newton-cn/obj/Release/newton-cn.exe differ diff --git a/newton-cn/obj/Release/newton-cn.pdb b/newton-cn/obj/Release/newton-cn.pdb index 39e9d37..9462d7c 100644 Binary files a/newton-cn/obj/Release/newton-cn.pdb and b/newton-cn/obj/Release/newton-cn.pdb differ diff --git a/newton-cn/obj/Release/newton_cn.Form6.resources b/newton-cn/obj/Release/newton_cn.Form6.resources new file mode 100644 index 0000000..06c24d0 Binary files /dev/null and b/newton-cn/obj/Release/newton_cn.Form6.resources differ