diff --git a/.gitignore b/.gitignore index ee1087c..87fd836 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,5 @@ Skill.cs ## 폴더 무시 unimarc/Factory_Client/ -ISBN_Client/ \ No newline at end of file +ISBN_Client/ +Test_Project/ \ No newline at end of file diff --git a/ISBN_Check_test/.vs/ISBN_Check_test/v16/.suo b/ISBN_Check_test/.vs/ISBN_Check_test/v16/.suo index c448fef..9fa010c 100644 Binary files a/ISBN_Check_test/.vs/ISBN_Check_test/v16/.suo and b/ISBN_Check_test/.vs/ISBN_Check_test/v16/.suo differ diff --git a/Test_Project/.vs/Test_Project/v16/.suo b/Test_Project/.vs/Test_Project/v16/.suo index 7a39ab0..5a6c0f2 100644 Binary files a/Test_Project/.vs/Test_Project/v16/.suo and b/Test_Project/.vs/Test_Project/v16/.suo differ diff --git a/Test_Project/Form1.Designer.cs b/Test_Project/Form1.Designer.cs deleted file mode 100644 index fd1b244..0000000 --- a/Test_Project/Form1.Designer.cs +++ /dev/null @@ -1,62 +0,0 @@ - -namespace Test_Project -{ - partial class Form1 - { - /// - /// 필수 디자이너 변수입니다. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// 사용 중인 모든 리소스를 정리합니다. - /// - /// 관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form 디자이너에서 생성한 코드 - - /// - /// 디자이너 지원에 필요한 메서드입니다. - /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요. - /// - private void InitializeComponent() - { - this.richTextBox1 = new System.Windows.Forms.RichTextBox(); - this.SuspendLayout(); - // - // richTextBox1 - // - this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill; - this.richTextBox1.Location = new System.Drawing.Point(0, 0); - this.richTextBox1.Name = "richTextBox1"; - this.richTextBox1.Size = new System.Drawing.Size(1056, 450); - this.richTextBox1.TabIndex = 0; - this.richTextBox1.Text = ""; - // - // Form1 - // - this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(1056, 450); - this.Controls.Add(this.richTextBox1); - this.Name = "Form1"; - this.Text = "Form1"; - this.Load += new System.EventHandler(this.Form1_Load); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.RichTextBox richTextBox1; - } -} - diff --git a/Test_Project/Form1.cs b/Test_Project/Form1.cs deleted file mode 100644 index e39ffcf..0000000 --- a/Test_Project/Form1.cs +++ /dev/null @@ -1,65 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using System.Management; - - -namespace Test_Project -{ - public partial class Form1 : Form - { - public Form1() - { - InitializeComponent(); - } - private void Form1_Load(object sender, EventArgs e) - { - var usbDevices = GetUSBDevices(); - - foreach(var usbDevice in usbDevices) - { - string msg = string.Format("Device ID: {0}, PNP Device ID: {1}, Description: {2}\n", - usbDevice.DeviceID, usbDevice.PnpDeviceID, usbDevice.Description); - richTextBox1.Text += msg; - } - } - - static List GetUSBDevices() - { - List devices = new List(); - - ManagementObjectCollection collection; - using (var searcher = new ManagementObjectSearcher(@"Select * From Win32_USBHub")) - collection = searcher.Get(); - - foreach(var device in collection) - { - devices.Add(new USBDeviceInfo( - (string)device.GetPropertyValue("DeviceID"), - (string)device.GetPropertyValue("PNPDeviceID"), - (string)device.GetPropertyValue("Description") - )); - } - collection.Dispose(); - return devices; - } - } - class USBDeviceInfo - { - public USBDeviceInfo(string deviceID, string pnpDeviceID, string description) - { - this.DeviceID = deviceID; - this.PnpDeviceID = pnpDeviceID; - this.Description = description; - } - public string DeviceID { get; private set; } - public string PnpDeviceID { get; private set; } - public string Description { get; private set; } - } -} diff --git a/Test_Project/Program.cs b/Test_Project/Program.cs index a243649..8fe002c 100644 --- a/Test_Project/Program.cs +++ b/Test_Project/Program.cs @@ -16,7 +16,7 @@ namespace Test_Project { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); - Application.Run(new Form1()); + Application.Run(new Test()); } } } diff --git a/Test_Project/bin/Debug/Test_Project.pdb b/Test_Project/bin/Debug/Test_Project.pdb index bd0da28..cd55e00 100644 Binary files a/Test_Project/bin/Debug/Test_Project.pdb and b/Test_Project/bin/Debug/Test_Project.pdb differ diff --git a/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferences.cache index dee716d..3bbe158 100644 Binary files a/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 9329ee4..bd24273 100644 Binary files a/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Test_Project/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Test_Project/obj/Debug/Test_Project.csproj.CoreCompileInputs.cache b/Test_Project/obj/Debug/Test_Project.csproj.CoreCompileInputs.cache index b1ecf07..3a0a90c 100644 --- a/Test_Project/obj/Debug/Test_Project.csproj.CoreCompileInputs.cache +++ b/Test_Project/obj/Debug/Test_Project.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -fdefe9bfdc3ac6442df724e1b8b8d8f6ce92a914 +aed5a697ba539078456cd1085bbdd23ab52c0666 diff --git a/Test_Project/obj/Debug/Test_Project.csproj.FileListAbsolute.txt b/Test_Project/obj/Debug/Test_Project.csproj.FileListAbsolute.txt index b310fa2..39bd345 100644 --- a/Test_Project/obj/Debug/Test_Project.csproj.FileListAbsolute.txt +++ b/Test_Project/obj/Debug/Test_Project.csproj.FileListAbsolute.txt @@ -2,9 +2,9 @@ C:\Users\Administrator\Desktop\unimarc\Test_Project\bin\Debug\Test_Project.exe.c C:\Users\Administrator\Desktop\unimarc\Test_Project\bin\Debug\Test_Project.exe C:\Users\Administrator\Desktop\unimarc\Test_Project\bin\Debug\Test_Project.pdb C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.csproj.AssemblyReference.cache -C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.Form1.resources C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.Properties.Resources.resources C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.csproj.GenerateResource.cache C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.csproj.CoreCompileInputs.cache C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.exe C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.pdb +C:\Users\Administrator\Desktop\unimarc\Test_Project\obj\Debug\Test_Project.Test.resources diff --git a/Test_Project/obj/Debug/Test_Project.csproj.GenerateResource.cache b/Test_Project/obj/Debug/Test_Project.csproj.GenerateResource.cache index d24e563..a7bf308 100644 Binary files a/Test_Project/obj/Debug/Test_Project.csproj.GenerateResource.cache and b/Test_Project/obj/Debug/Test_Project.csproj.GenerateResource.cache differ diff --git a/Test_Project/obj/Debug/Test_Project.pdb b/Test_Project/obj/Debug/Test_Project.pdb index bd0da28..cd55e00 100644 Binary files a/Test_Project/obj/Debug/Test_Project.pdb and b/Test_Project/obj/Debug/Test_Project.pdb differ diff --git a/unimarc/.vs/unimarc/v16/.suo b/unimarc/.vs/unimarc/v16/.suo index 6f64807..28b66ae 100644 Binary files a/unimarc/.vs/unimarc/v16/.suo and b/unimarc/.vs/unimarc/v16/.suo differ diff --git a/unimarc/Setup_UniMarc/Debug/Setup_UniMarc.msi b/unimarc/Setup_UniMarc/Debug/Setup_UniMarc.msi index eb43855..e211a26 100644 Binary files a/unimarc/Setup_UniMarc/Debug/Setup_UniMarc.msi and b/unimarc/Setup_UniMarc/Debug/Setup_UniMarc.msi differ diff --git a/unimarc/Setup_UniMarc/Debug/setup.exe b/unimarc/Setup_UniMarc/Debug/setup.exe index e6e7cd4..29091de 100644 Binary files a/unimarc/Setup_UniMarc/Debug/setup.exe and b/unimarc/Setup_UniMarc/Debug/setup.exe differ diff --git a/unimarc/Setup_UniMarc/Debug/unimarc.zip b/unimarc/Setup_UniMarc/Debug/unimarc.zip new file mode 100644 index 0000000..6cb1ce8 Binary files /dev/null and b/unimarc/Setup_UniMarc/Debug/unimarc.zip differ diff --git a/unimarc/Setup_UniMarc/Setup_UniMarc.vdproj b/unimarc/Setup_UniMarc/Setup_UniMarc.vdproj index 14330cb..e17d9e1 100644 --- a/unimarc/Setup_UniMarc/Setup_UniMarc.vdproj +++ b/unimarc/Setup_UniMarc/Setup_UniMarc.vdproj @@ -15,26 +15,26 @@ { "Entry" { - "MsmKey" = "8:_753344FE1F09410C9D0F442B1279C21F" + "MsmKey" = "8:_C0D91E30A1E44E66A4EEA4BF161D7237" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_E78196A0B332402DB05AB7FEB1E4F799" + "MsmKey" = "8:_C9E9660E517B4B2EBF42BDAD9C6DB38D" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_F0CD886B86254771BEA61BF625DE2CE1" + "MsmKey" = "8:_EC6E313CD6974E298DD274D14C737326" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_753344FE1F09410C9D0F442B1279C21F" + "OwnerKey" = "8:_C9E9660E517B4B2EBF42BDAD9C6DB38D" "MsmSig" = "8:_UNDEFINED" } } @@ -132,9 +132,9 @@ } "File" { - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E78196A0B332402DB05AB7FEB1E4F799" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C0D91E30A1E44E66A4EEA4BF161D7237" { - "SourcePath" = "8:C:\\Update\\Update.inf" + "SourcePath" = "8:..\\UniMarc\\Update.inf" "TargetName" = "8:Update.inf" "Tag" = "8:" "Folder" = "8:_5AFD85B9101B47DB9537A694229E7941" @@ -152,10 +152,10 @@ "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F0CD886B86254771BEA61BF625DE2CE1" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_EC6E313CD6974E298DD274D14C737326" { - "SourcePath" = "8:..\\..\\..\\..\\Downloads\\UniMarcIcon.ico" - "TargetName" = "8:UniMarcIcon.ico" + "SourcePath" = "8:..\\..\\..\\..\\Downloads\\3700474-address-agenda-book-bookmark-business-interface-notebook_108749.ico" + "TargetName" = "8:3700474-address-agenda-book-bookmark-business-interface-notebook_108749.ico" "Tag" = "8:" "Folder" = "8:_5AFD85B9101B47DB9537A694229E7941" "Condition" = "8:" @@ -349,7 +349,7 @@ } "Shortcut" { - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_1D92A7BDFE934874B5946396343F58EA" + "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_4E728D6345A04482BB3C40FF8A5FC5DD" { "Name" = "8:UniMarc" "Arguments" = "8:" @@ -357,24 +357,24 @@ "ShowCmd" = "3:1" "IconIndex" = "3:0" "Transitive" = "11:FALSE" - "Target" = "8:_753344FE1F09410C9D0F442B1279C21F" - "Folder" = "8:_C702D9CCA84A4CB990260A30151CE064" - "WorkingFolder" = "8:_5AFD85B9101B47DB9537A694229E7941" - "Icon" = "8:_F0CD886B86254771BEA61BF625DE2CE1" - "Feature" = "8:" - } - "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_C05FDEA084D04D1A859017F1814945E5" - { - "Name" = "8:UniMarc" - "Arguments" = "8:" - "Description" = "8:" - "ShowCmd" = "3:1" - "IconIndex" = "3:0" - "Transitive" = "11:FALSE" - "Target" = "8:_753344FE1F09410C9D0F442B1279C21F" + "Target" = "8:_C9E9660E517B4B2EBF42BDAD9C6DB38D" "Folder" = "8:_74D25C29FA384AD0AAE9D733594F6B6A" "WorkingFolder" = "8:_5AFD85B9101B47DB9537A694229E7941" - "Icon" = "8:_F0CD886B86254771BEA61BF625DE2CE1" + "Icon" = "8:_EC6E313CD6974E298DD274D14C737326" + "Feature" = "8:" + } + "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_8596342268F74CD084556BCA65072910" + { + "Name" = "8:UniMarc" + "Arguments" = "8:" + "Description" = "8:" + "ShowCmd" = "3:1" + "IconIndex" = "3:0" + "Transitive" = "11:FALSE" + "Target" = "8:_C9E9660E517B4B2EBF42BDAD9C6DB38D" + "Folder" = "8:_C702D9CCA84A4CB990260A30151CE064" + "WorkingFolder" = "8:_5AFD85B9101B47DB9537A694229E7941" + "Icon" = "8:_EC6E313CD6974E298DD274D14C737326" "Feature" = "8:" } } @@ -776,7 +776,7 @@ } "ProjectOutput" { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_753344FE1F09410C9D0F442B1279C21F" + "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_C9E9660E517B4B2EBF42BDAD9C6DB38D" { "SourcePath" = "8:..\\Factory_Client\\obj\\Debug\\Factory_Client.exe" "TargetName" = "8:" diff --git a/unimarc/unimarc/App.config b/unimarc/unimarc/App.config index 01d393c..1b9e7c6 100644 --- a/unimarc/unimarc/App.config +++ b/unimarc/unimarc/App.config @@ -1,7 +1,6 @@ - @@ -10,7 +9,7 @@ - + diff --git a/unimarc/unimarc/Main.Designer.cs b/unimarc/unimarc/Main.Designer.cs index 2f2684f..c7df075 100644 --- a/unimarc/unimarc/Main.Designer.cs +++ b/unimarc/unimarc/Main.Designer.cs @@ -119,9 +119,10 @@ this.button2 = new System.Windows.Forms.Button(); this.button1 = new System.Windows.Forms.Button(); this.toolStrip1 = new System.Windows.Forms.ToolStrip(); + this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel(); this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); - this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel(); + this.파트타임관리ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip1.SuspendLayout(); this.panel1.SuspendLayout(); this.toolStrip1.SuspendLayout(); @@ -225,49 +226,49 @@ // 물품등록ToolStripMenuItem // this.물품등록ToolStripMenuItem.Name = "물품등록ToolStripMenuItem"; - this.물품등록ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); + this.물품등록ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.물품등록ToolStripMenuItem.Text = "물품등록"; this.물품등록ToolStripMenuItem.Click += new System.EventHandler(this.물품등록ToolStripMenuItem_Click); // // 목록등록편의ToolStripMenuItem // this.목록등록편의ToolStripMenuItem.Name = "목록등록편의ToolStripMenuItem"; - this.목록등록편의ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); + this.목록등록편의ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.목록등록편의ToolStripMenuItem.Text = "목록조회"; this.목록등록편의ToolStripMenuItem.Click += new System.EventHandler(this.목록등록편의ToolStripMenuItem_Click); // // 목록집계ToolStripMenuItem // this.목록집계ToolStripMenuItem.Name = "목록집계ToolStripMenuItem"; - this.목록집계ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); + this.목록집계ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.목록집계ToolStripMenuItem.Text = "목록집계"; this.목록집계ToolStripMenuItem.Click += new System.EventHandler(this.목록집계ToolStripMenuItem_Click); // // 주문입력ToolStripMenuItem // this.주문입력ToolStripMenuItem.Name = "주문입력ToolStripMenuItem"; - this.주문입력ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); + this.주문입력ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.주문입력ToolStripMenuItem.Text = "주문입력"; this.주문입력ToolStripMenuItem.Click += new System.EventHandler(this.주문입력ToolStripMenuItem_Click); // // 매입ToolStripMenuItem // this.매입ToolStripMenuItem.Name = "매입ToolStripMenuItem"; - this.매입ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); + this.매입ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.매입ToolStripMenuItem.Text = "입고작업"; this.매입ToolStripMenuItem.Click += new System.EventHandler(this.매입ToolStripMenuItem_Click); // // 재고입력및조회ToolStripMenuItem // this.재고입력및조회ToolStripMenuItem.Name = "재고입력및조회ToolStripMenuItem"; - this.재고입력및조회ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); + this.재고입력및조회ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.재고입력및조회ToolStripMenuItem.Text = "재고입력 및 조회"; this.재고입력및조회ToolStripMenuItem.Click += new System.EventHandler(this.재고입력및조회ToolStripMenuItem_Click); // // 반품처리ToolStripMenuItem // this.반품처리ToolStripMenuItem.Name = "반품처리ToolStripMenuItem"; - this.반품처리ToolStripMenuItem.Size = new System.Drawing.Size(166, 22); + this.반품처리ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.반품처리ToolStripMenuItem.Text = "반품처리"; this.반품처리ToolStripMenuItem.Click += new System.EventHandler(this.반품처리ToolStripMenuItem_Click); // @@ -277,7 +278,8 @@ this.송금내역조회ToolStripMenuItem, this.송금등록ToolStripMenuItem, this.매입장부ToolStripMenuItem, - this.매출입력ToolStripMenuItem}); + this.매출입력ToolStripMenuItem, + this.파트타임관리ToolStripMenuItem}); this.회계ToolStripMenuItem.Name = "회계ToolStripMenuItem"; this.회계ToolStripMenuItem.Size = new System.Drawing.Size(59, 20); this.회계ToolStripMenuItem.Text = "회계(&A)"; @@ -285,14 +287,14 @@ // 송금내역조회ToolStripMenuItem // this.송금내역조회ToolStripMenuItem.Name = "송금내역조회ToolStripMenuItem"; - this.송금내역조회ToolStripMenuItem.Size = new System.Drawing.Size(154, 22); + this.송금내역조회ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.송금내역조회ToolStripMenuItem.Text = "송금 내역 조회"; this.송금내역조회ToolStripMenuItem.Click += new System.EventHandler(this.송금내역조회ToolStripMenuItem_Click); // // 송금등록ToolStripMenuItem // this.송금등록ToolStripMenuItem.Name = "송금등록ToolStripMenuItem"; - this.송금등록ToolStripMenuItem.Size = new System.Drawing.Size(154, 22); + this.송금등록ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.송금등록ToolStripMenuItem.Text = "송금 등록"; this.송금등록ToolStripMenuItem.Click += new System.EventHandler(this.송금등록ToolStripMenuItem_Click); // @@ -303,7 +305,7 @@ this.매입장부ToolStripMenuItem1, this.매입미결제ToolStripMenuItem}); this.매입장부ToolStripMenuItem.Name = "매입장부ToolStripMenuItem"; - this.매입장부ToolStripMenuItem.Size = new System.Drawing.Size(154, 22); + this.매입장부ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.매입장부ToolStripMenuItem.Text = "매입"; // // 매입집계ToolStripMenuItem @@ -336,7 +338,7 @@ this.매출조회ToolStripMenuItem, this.매출집계ToolStripMenuItem1}); this.매출입력ToolStripMenuItem.Name = "매출입력ToolStripMenuItem"; - this.매출입력ToolStripMenuItem.Size = new System.Drawing.Size(154, 22); + this.매출입력ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.매출입력ToolStripMenuItem.Text = "매출"; // // 매출입력ToolStripMenuItem1 @@ -389,34 +391,34 @@ this.불용어ToolStripMenuItem, this.작업지시서ToolStripMenuItem}); this.설정ToolStripMenuItem.Name = "설정ToolStripMenuItem"; - this.설정ToolStripMenuItem.Size = new System.Drawing.Size(142, 22); + this.설정ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.설정ToolStripMenuItem.Text = "설정"; // // 단축키설정ToolStripMenuItem // this.단축키설정ToolStripMenuItem.Name = "단축키설정ToolStripMenuItem"; - this.단축키설정ToolStripMenuItem.Size = new System.Drawing.Size(138, 22); + this.단축키설정ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.단축키설정ToolStripMenuItem.Text = "단축키"; this.단축키설정ToolStripMenuItem.Click += new System.EventHandler(this.단축키설정ToolStripMenuItem_Click); // // 매크로문구설정ToolStripMenuItem // this.매크로문구설정ToolStripMenuItem.Name = "매크로문구설정ToolStripMenuItem"; - this.매크로문구설정ToolStripMenuItem.Size = new System.Drawing.Size(138, 22); + this.매크로문구설정ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.매크로문구설정ToolStripMenuItem.Text = "매크로 문구"; this.매크로문구설정ToolStripMenuItem.Click += new System.EventHandler(this.매크로문구설정ToolStripMenuItem_Click); // // 불용어ToolStripMenuItem // this.불용어ToolStripMenuItem.Name = "불용어ToolStripMenuItem"; - this.불용어ToolStripMenuItem.Size = new System.Drawing.Size(138, 22); + this.불용어ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.불용어ToolStripMenuItem.Text = "불용어"; this.불용어ToolStripMenuItem.Click += new System.EventHandler(this.불용어ToolStripMenuItem_Click); // // 작업지시서ToolStripMenuItem // this.작업지시서ToolStripMenuItem.Name = "작업지시서ToolStripMenuItem"; - this.작업지시서ToolStripMenuItem.Size = new System.Drawing.Size(138, 22); + this.작업지시서ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.작업지시서ToolStripMenuItem.Text = "작업지시서"; this.작업지시서ToolStripMenuItem.Click += new System.EventHandler(this.작업지시서ToolStripMenuItem_Click); // @@ -428,34 +430,34 @@ this.엑셀작성ToolStripMenuItem, this.iSBN조회ToolStripMenuItem}); this.마크작업ToolStripMenuItem.Name = "마크작업ToolStripMenuItem"; - this.마크작업ToolStripMenuItem.Size = new System.Drawing.Size(142, 22); + this.마크작업ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.마크작업ToolStripMenuItem.Text = "마크 작업"; // // 마크목록ToolStripMenuItem // this.마크목록ToolStripMenuItem.Name = "마크목록ToolStripMenuItem"; - this.마크목록ToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.마크목록ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.마크목록ToolStripMenuItem.Text = "마크 목록"; this.마크목록ToolStripMenuItem.Click += new System.EventHandler(this.마크목록ToolStripMenuItem_Click); // // 소장자료검색ToolStripMenuItem // this.소장자료검색ToolStripMenuItem.Name = "소장자료검색ToolStripMenuItem"; - this.소장자료검색ToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.소장자료검색ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.소장자료검색ToolStripMenuItem.Text = "소장자료검색"; this.소장자료검색ToolStripMenuItem.Click += new System.EventHandler(this.소장자료검색ToolStripMenuItem_Click); // // 엑셀작성ToolStripMenuItem // this.엑셀작성ToolStripMenuItem.Name = "엑셀작성ToolStripMenuItem"; - this.엑셀작성ToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.엑셀작성ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.엑셀작성ToolStripMenuItem.Text = "엑셀 작성"; this.엑셀작성ToolStripMenuItem.Click += new System.EventHandler(this.엑셀작성ToolStripMenuItem_Click); // // iSBN조회ToolStripMenuItem // this.iSBN조회ToolStripMenuItem.Name = "iSBN조회ToolStripMenuItem"; - this.iSBN조회ToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.iSBN조회ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.iSBN조회ToolStripMenuItem.Text = "ISBN 조회"; this.iSBN조회ToolStripMenuItem.Click += new System.EventHandler(this.iSBN조회ToolStripMenuItem_Click); // @@ -465,20 +467,20 @@ this.반입ToolStripMenuItem, this.반출ToolStripMenuItem}); this.반입및반출ToolStripMenuItem.Name = "반입및반출ToolStripMenuItem"; - this.반입및반출ToolStripMenuItem.Size = new System.Drawing.Size(142, 22); + this.반입및반출ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.반입및반출ToolStripMenuItem.Text = "반입 및 반출"; // // 반입ToolStripMenuItem // this.반입ToolStripMenuItem.Name = "반입ToolStripMenuItem"; - this.반입ToolStripMenuItem.Size = new System.Drawing.Size(98, 22); + this.반입ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.반입ToolStripMenuItem.Text = "반입"; this.반입ToolStripMenuItem.Click += new System.EventHandler(this.반입ToolStripMenuItem_Click); // // 반출ToolStripMenuItem // this.반출ToolStripMenuItem.Name = "반출ToolStripMenuItem"; - this.반출ToolStripMenuItem.Size = new System.Drawing.Size(98, 22); + this.반출ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.반출ToolStripMenuItem.Text = "반출"; this.반출ToolStripMenuItem.Click += new System.EventHandler(this.반출ToolStripMenuItem_Click); // @@ -488,20 +490,20 @@ this.복본조사ToolStripMenuItem1, this.dLS복본조사ToolStripMenuItem}); this.복본조사ToolStripMenuItem.Name = "복본조사ToolStripMenuItem"; - this.복본조사ToolStripMenuItem.Size = new System.Drawing.Size(142, 22); + this.복본조사ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.복본조사ToolStripMenuItem.Text = "복본 조사"; // // 복본조사ToolStripMenuItem1 // this.복본조사ToolStripMenuItem1.Name = "복본조사ToolStripMenuItem1"; - this.복본조사ToolStripMenuItem1.Size = new System.Drawing.Size(148, 22); + this.복본조사ToolStripMenuItem1.Size = new System.Drawing.Size(180, 22); this.복본조사ToolStripMenuItem1.Text = "복본조사"; this.복본조사ToolStripMenuItem1.Click += new System.EventHandler(this.복본조사ToolStripMenuItem1_Click); // // dLS복본조사ToolStripMenuItem // this.dLS복본조사ToolStripMenuItem.Name = "dLS복본조사ToolStripMenuItem"; - this.dLS복본조사ToolStripMenuItem.Size = new System.Drawing.Size(148, 22); + this.dLS복본조사ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.dLS복본조사ToolStripMenuItem.Text = "DLS 복본조사"; this.dLS복본조사ToolStripMenuItem.Click += new System.EventHandler(this.dLS복본조사ToolStripMenuItem_Click); // @@ -513,34 +515,34 @@ this.검수ToolStripMenuItem, this.저자기호ToolStripMenuItem}); this.부가기능ToolStripMenuItem.Name = "부가기능ToolStripMenuItem"; - this.부가기능ToolStripMenuItem.Size = new System.Drawing.Size(142, 22); + this.부가기능ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.부가기능ToolStripMenuItem.Text = "부가기능"; // // 마크수집ToolStripMenuItem // this.마크수집ToolStripMenuItem.Name = "마크수집ToolStripMenuItem"; - this.마크수집ToolStripMenuItem.Size = new System.Drawing.Size(122, 22); + this.마크수집ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.마크수집ToolStripMenuItem.Text = "마크수집"; this.마크수집ToolStripMenuItem.Click += new System.EventHandler(this.마크수집ToolStripMenuItem_Click); // // 전집관리ToolStripMenuItem1 // this.전집관리ToolStripMenuItem1.Name = "전집관리ToolStripMenuItem1"; - this.전집관리ToolStripMenuItem1.Size = new System.Drawing.Size(122, 22); + this.전집관리ToolStripMenuItem1.Size = new System.Drawing.Size(180, 22); this.전집관리ToolStripMenuItem1.Text = "전집관리"; this.전집관리ToolStripMenuItem1.Click += new System.EventHandler(this.전집관리ToolStripMenuItem1_Click); // // 검수ToolStripMenuItem // this.검수ToolStripMenuItem.Name = "검수ToolStripMenuItem"; - this.검수ToolStripMenuItem.Size = new System.Drawing.Size(122, 22); + this.검수ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.검수ToolStripMenuItem.Text = "검수"; this.검수ToolStripMenuItem.Click += new System.EventHandler(this.검수ToolStripMenuItem_Click); // // 저자기호ToolStripMenuItem // this.저자기호ToolStripMenuItem.Name = "저자기호ToolStripMenuItem"; - this.저자기호ToolStripMenuItem.Size = new System.Drawing.Size(122, 22); + this.저자기호ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.저자기호ToolStripMenuItem.Text = "저자기호"; this.저자기호ToolStripMenuItem.Click += new System.EventHandler(this.저자기호ToolStripMenuItem_Click); // @@ -550,7 +552,7 @@ this.dLS조회ToolStripMenuItem, this.dLS입력ToolStripMenuItem}); this.dLSToolStripMenuItem.Name = "dLSToolStripMenuItem"; - this.dLSToolStripMenuItem.Size = new System.Drawing.Size(142, 22); + this.dLSToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.dLSToolStripMenuItem.Text = "DLS"; // // dLS조회ToolStripMenuItem @@ -574,7 +576,7 @@ this.마크통계ToolStripMenuItem, this.장비관리ToolStripMenuItem1}); this.기타ToolStripMenuItem.Name = "기타ToolStripMenuItem"; - this.기타ToolStripMenuItem.Size = new System.Drawing.Size(142, 22); + this.기타ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); this.기타ToolStripMenuItem.Text = "기타"; // // 서류작성ToolStripMenuItem @@ -890,17 +892,24 @@ this.toolStrip1.TabIndex = 4; this.toolStrip1.Text = "toolStrip1"; // + // toolStripLabel2 + // + this.toolStripLabel2.Name = "toolStripLabel2"; + this.toolStripLabel2.Size = new System.Drawing.Size(43, 22); + this.toolStripLabel2.Text = "회사명"; + // // toolStripLabel1 // this.toolStripLabel1.Name = "toolStripLabel1"; this.toolStripLabel1.Size = new System.Drawing.Size(43, 22); this.toolStripLabel1.Text = "이용자"; // - // toolStripLabel2 + // 파트타임관리ToolStripMenuItem // - this.toolStripLabel2.Name = "toolStripLabel2"; - this.toolStripLabel2.Size = new System.Drawing.Size(43, 22); - this.toolStripLabel2.Text = "회사명"; + this.파트타임관리ToolStripMenuItem.Name = "파트타임관리ToolStripMenuItem"; + this.파트타임관리ToolStripMenuItem.Size = new System.Drawing.Size(180, 22); + this.파트타임관리ToolStripMenuItem.Text = "파트타임 관리"; + this.파트타임관리ToolStripMenuItem.Click += new System.EventHandler(this.파트타임관리ToolStripMenuItem_Click); // // Main // @@ -1022,5 +1031,6 @@ private System.Windows.Forms.ToolStripMenuItem 매출입금toolStripMenuItem1; private System.Windows.Forms.ToolStripMenuItem 반품처리ToolStripMenuItem; public System.Windows.Forms.ToolStripLabel toolStripLabel2; + private System.Windows.Forms.ToolStripMenuItem 파트타임관리ToolStripMenuItem; } } \ No newline at end of file diff --git a/unimarc/unimarc/Main.cs b/unimarc/unimarc/Main.cs index 70f2155..1410856 100644 --- a/unimarc/unimarc/Main.cs +++ b/unimarc/unimarc/Main.cs @@ -21,6 +21,7 @@ using WindowsFormsApp1.Work_log; using WindowsFormsApp1.마크; using WindowsFormsApp1.회계; using WindowsFormsApp1.납품관리; +using UniMarc.회계; namespace WindowsFormsApp1 { @@ -328,8 +329,24 @@ namespace WindowsFormsApp1 Sales_Not_Pay Acc_sales_Not_Pay; Sales_Book Acc_sales_book; Bill_manage Acc_bill_Manage; + Part_time Acc_part_time; + private void 파트타임관리ToolStripMenuItem_Click(object sender, EventArgs e) + { + if (Acc_part_time != null) + { + Acc_part_time.Focus(); + } + else + { + Acc_part_time = new Part_time(this); + Acc_part_time.MdiParent = this; + // Acc_part_time.WindowState = FormWindowState.Maximized; + Acc_part_time.FormClosed += (o, ea) => Acc_part_time = null; + Acc_part_time.Show(); + } + } private void 송금등록ToolStripMenuItem_Click(object sender, EventArgs e) { if (Acc_remit_Reg2 != null) @@ -1118,5 +1135,6 @@ namespace WindowsFormsApp1 } } #endregion + } } \ No newline at end of file diff --git a/unimarc/unimarc/UniMarc.csproj b/unimarc/unimarc/UniMarc.csproj index c2e35c7..5712bd3 100644 --- a/unimarc/unimarc/UniMarc.csproj +++ b/unimarc/unimarc/UniMarc.csproj @@ -193,6 +193,12 @@ Bill_manage.cs + + Form + + + Part_time.cs + Form @@ -666,6 +672,9 @@ Bill_manage.cs + + Part_time.cs + Purchase_Aggregation.cs diff --git a/unimarc/unimarc/bin/Debug/UniMarc.exe b/unimarc/unimarc/bin/Debug/UniMarc.exe index 3e19579..b93dd8f 100644 Binary files a/unimarc/unimarc/bin/Debug/UniMarc.exe and b/unimarc/unimarc/bin/Debug/UniMarc.exe differ diff --git a/unimarc/unimarc/bin/Debug/UniMarc.exe.config b/unimarc/unimarc/bin/Debug/UniMarc.exe.config index 01d393c..1b9e7c6 100644 --- a/unimarc/unimarc/bin/Debug/UniMarc.exe.config +++ b/unimarc/unimarc/bin/Debug/UniMarc.exe.config @@ -1,7 +1,6 @@ - @@ -10,7 +9,7 @@ - + diff --git a/unimarc/unimarc/bin/Debug/UniMarc.pdb b/unimarc/unimarc/bin/Debug/UniMarc.pdb index 97c1138..08a111c 100644 Binary files a/unimarc/unimarc/bin/Debug/UniMarc.pdb and b/unimarc/unimarc/bin/Debug/UniMarc.pdb differ diff --git a/unimarc/unimarc/bin/Debug/ko/UniMarc.resources.dll b/unimarc/unimarc/bin/Debug/ko/UniMarc.resources.dll index d274a55..4c25906 100644 Binary files a/unimarc/unimarc/bin/Debug/ko/UniMarc.resources.dll and b/unimarc/unimarc/bin/Debug/ko/UniMarc.resources.dll differ diff --git a/unimarc/unimarc/obj/Debug/UniMarc.csproj.AssemblyReference.cache b/unimarc/unimarc/obj/Debug/UniMarc.csproj.AssemblyReference.cache index 7461d7e..48fc6ee 100644 Binary files a/unimarc/unimarc/obj/Debug/UniMarc.csproj.AssemblyReference.cache and b/unimarc/unimarc/obj/Debug/UniMarc.csproj.AssemblyReference.cache differ diff --git a/unimarc/unimarc/obj/Debug/UniMarc.csproj.CoreCompileInputs.cache b/unimarc/unimarc/obj/Debug/UniMarc.csproj.CoreCompileInputs.cache index 5adee8d..25e9420 100644 --- a/unimarc/unimarc/obj/Debug/UniMarc.csproj.CoreCompileInputs.cache +++ b/unimarc/unimarc/obj/Debug/UniMarc.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -5a3001620e15fcaa616989d7d1f184f6088a5007 +d2731517ce60a3dc8b8c6b18b3ba868b48ad75db diff --git a/unimarc/unimarc/obj/Debug/UniMarc.csproj.FileListAbsolute.txt b/unimarc/unimarc/obj/Debug/UniMarc.csproj.FileListAbsolute.txt index 72cc314..e98dcfc 100644 --- a/unimarc/unimarc/obj/Debug/UniMarc.csproj.FileListAbsolute.txt +++ b/unimarc/unimarc/obj/Debug/UniMarc.csproj.FileListAbsolute.txt @@ -113,5 +113,6 @@ C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.pdb C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.마크.Marc_memo.resources C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.마크.Zoom_Picture.resources C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.마크.Mac_Preview.resources -C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.csproj.AssemblyReference.cache C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.마크.Check_ISBN_Yes24.resources +C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.csproj.AssemblyReference.cache +C:\Users\Administrator\Desktop\unimarc\unimarc\UniMarc\obj\Debug\UniMarc.회계.Part_time.resources diff --git a/unimarc/unimarc/obj/Debug/UniMarc.csproj.GenerateResource.cache b/unimarc/unimarc/obj/Debug/UniMarc.csproj.GenerateResource.cache index dd8680a..648d34a 100644 Binary files a/unimarc/unimarc/obj/Debug/UniMarc.csproj.GenerateResource.cache and b/unimarc/unimarc/obj/Debug/UniMarc.csproj.GenerateResource.cache differ diff --git a/unimarc/unimarc/obj/Debug/UniMarc.exe b/unimarc/unimarc/obj/Debug/UniMarc.exe index 3e19579..b93dd8f 100644 Binary files a/unimarc/unimarc/obj/Debug/UniMarc.exe and b/unimarc/unimarc/obj/Debug/UniMarc.exe differ diff --git a/unimarc/unimarc/obj/Debug/UniMarc.pdb b/unimarc/unimarc/obj/Debug/UniMarc.pdb index 97c1138..08a111c 100644 Binary files a/unimarc/unimarc/obj/Debug/UniMarc.pdb and b/unimarc/unimarc/obj/Debug/UniMarc.pdb differ diff --git a/Test_Project/obj/Debug/Test_Project.Form1.resources b/unimarc/unimarc/obj/Debug/UniMarc.회계.Part_time.resources similarity index 100% rename from Test_Project/obj/Debug/Test_Project.Form1.resources rename to unimarc/unimarc/obj/Debug/UniMarc.회계.Part_time.resources diff --git a/unimarc/unimarc/obj/Debug/ko/UniMarc.resources.dll b/unimarc/unimarc/obj/Debug/ko/UniMarc.resources.dll index d274a55..4c25906 100644 Binary files a/unimarc/unimarc/obj/Debug/ko/UniMarc.resources.dll and b/unimarc/unimarc/obj/Debug/ko/UniMarc.resources.dll differ diff --git a/unimarc/unimarc/납품관리/Commodity_registration.cs b/unimarc/unimarc/납품관리/Commodity_registration.cs index 577b27f..353b8ee 100644 --- a/unimarc/unimarc/납품관리/Commodity_registration.cs +++ b/unimarc/unimarc/납품관리/Commodity_registration.cs @@ -134,7 +134,7 @@ namespace WindowsFormsApp1.Delivery if (chk_Save_DB() == -1) { MessageBox.Show("작업 대상을 선택해 주세요."); return; } if (db.DB_Select_Search("name", "User_Data", "name", tb_UserName.Text) == "") { MessageBox.Show("담당자를 확인해주세요."); return; } - if (db.DB_Search("Obj_List", "list_name", "[" + tb_clt1.Text + "]" + tb_dvy1.Text, "comp_num", comp_idx) != "") + if (db.DB_Search("Obj_List", "list_name", "[" + tb_dvy1.Text + "]" + tb_clt1.Text, "comp_num", comp_idx) != "") { MessageBox.Show("DB의 납품목록과 중복됩니다."); return; } bool MsgOk = false; int Marc_ton = chk_Save_DB(); @@ -189,7 +189,7 @@ namespace WindowsFormsApp1.Delivery } data[0] = start_date.Value.ToString().Substring(0,10); if (end_date.Checked == true) { data[1] = end_date.Value.ToString().Substring(0, 10); } - data[2] = "[" + tb_clt1.Text + "]" + tb_dvy1.Text; + data[2] = "[" + tb_dvy1.Text + "]" + tb_clt1.Text; data[3] = tb_clt1.Text; data[4] = tb_dvy1.Text; data[5] = tb_UserName.Text; @@ -375,25 +375,27 @@ namespace WindowsFormsApp1.Delivery string[] DB_col_name = { "compidx", "list_name", "header", "num", "book_name", "author", "book_comp", "count", "pay", "total", "etc", "isbn", "order", "date" }; - string[] setData = { comp_idx, "[" + tb_clt1.Text + "]" + tb_dvy1.Text, "", "", "", + string[] setData = { comp_idx, "[" + tb_dvy1.Text + "]" + tb_clt1.Text, "", "", "", "", "", "", "", "", "", "", "", start_date.Value.ToString().Substring(0,10) }; - - for(int a = 0; a < dataGridView1.Rows.Count; a++) + + for (int a = 0; a < dataGridView1.Rows.Count; a++) { - if (dataGridView1.Rows[a].Cells[2].Value == null || + if (dataGridView1.Rows[a].Cells[2].Value == null || dataGridView1.Rows[a].Cells[2].Value.ToString() == "") { break; } - for(int ea = 0; ea < 12; ea++) + for (int ea = 0; ea < 12; ea++) { if (ea == 11) { break; } if (dataGridView1.Rows[a].Cells[ea].Value == null) { dataGridView1.Rows[a].Cells[ea].Value = ""; } - if (dataGridView1.Columns[ea].Name == "unit" || dataGridView1.Columns[ea].Name == "total") { + if (dataGridView1.Columns[ea].Name == "unit" || dataGridView1.Columns[ea].Name == "total") + { setData[ea + 2] = dataGridView1.Rows[a].Cells[ea].Value.ToString().Replace(",", ""); } - else { + else + { setData[ea + 2] = dataGridView1.Rows[a].Cells[ea].Value.ToString(); } } diff --git a/unimarc/unimarc/납품관리/List_aggregation.cs b/unimarc/unimarc/납품관리/List_aggregation.cs index 9dbb35f..697b861 100644 --- a/unimarc/unimarc/납품관리/List_aggregation.cs +++ b/unimarc/unimarc/납품관리/List_aggregation.cs @@ -46,7 +46,7 @@ namespace WindowsFormsApp1.Delivery string[] years = {"2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", - "2019", "2020"}; + "2019", "2020", "2021"}; combo_year.Items.AddRange(years); combo_year.SelectedIndex = 11; combo_year.Visible = false; @@ -97,9 +97,10 @@ namespace WindowsFormsApp1.Delivery { dataGridView1.Rows.Clear(); string[] db_data = tmp.Split('|'); - string[] grid = {"", "", "", "", "", - "", "", "", "", "", - "", "", "", "", "", "" }; + string[] grid = { + "", "", "", "", "", + "", "", "", "", "", + "", "", "", "", "", "" }; for (int a = 0; a < db_data.Length; a++) { if (a % 14 == 0) { grid[0] = db_data[a]; } @@ -112,10 +113,8 @@ namespace WindowsFormsApp1.Delivery else { grid[1] = db_data[a].Substring(0, 10); } grid[1] = db_data[a]; } - if (a % 14 == 2) - { - if (db_data[a].Length < 3) - { + if (a % 14 == 2) { + if (db_data[a].Length < 3) { grid[2] = db_data[a]; } else { grid[2] = db_data[a].Substring(0, 10); } diff --git a/unimarc/unimarc/납품관리/Order_Send_Chk.cs b/unimarc/unimarc/납품관리/Order_Send_Chk.cs index 0f9ee5a..d4f4f18 100644 --- a/unimarc/unimarc/납품관리/Order_Send_Chk.cs +++ b/unimarc/unimarc/납품관리/Order_Send_Chk.cs @@ -167,7 +167,7 @@ namespace WindowsFormsApp1.납품관리 } try { - Process.Start(Application.StartupPath + "/Excel\\" + filename + ".xlsx"); + Process.Start(Application.StartupPath + "\\Excel\\" + filename + ".xlsx"); } catch { } } diff --git a/unimarc/unimarc/납품관리/Order_input.Designer.cs b/unimarc/unimarc/납품관리/Order_input.Designer.cs index 8d40fd2..9cc18e2 100644 --- a/unimarc/unimarc/납품관리/Order_input.Designer.cs +++ b/unimarc/unimarc/납품관리/Order_input.Designer.cs @@ -66,6 +66,17 @@ this.btn_order_list_change = new System.Windows.Forms.Button(); this.btn_order_chk = new System.Windows.Forms.Button(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); + this.panel1 = new System.Windows.Forms.Panel(); + this.label14 = new System.Windows.Forms.Label(); + this.label13 = new System.Windows.Forms.Label(); + this.tb_search_book_comp = new System.Windows.Forms.TextBox(); + this.tb_search_book_name = new System.Windows.Forms.TextBox(); + this.panel2 = new System.Windows.Forms.Panel(); + this.tb_search_book_list = new System.Windows.Forms.TextBox(); + this.btn_order_empty = new System.Windows.Forms.Button(); + this.btn_close = new System.Windows.Forms.Button(); + this.btn_Excel = new System.Windows.Forms.Button(); + this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.chk = new System.Windows.Forms.DataGridViewCheckBoxColumn(); this.order = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.M = new System.Windows.Forms.DataGridViewTextBoxColumn(); @@ -82,17 +93,7 @@ this.order_date = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.send_date = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.num = new System.Windows.Forms.DataGridViewTextBoxColumn(); - this.panel1 = new System.Windows.Forms.Panel(); - this.label14 = new System.Windows.Forms.Label(); - this.label13 = new System.Windows.Forms.Label(); - this.tb_search_book_comp = new System.Windows.Forms.TextBox(); - this.tb_search_book_name = new System.Windows.Forms.TextBox(); - this.panel2 = new System.Windows.Forms.Panel(); - this.tb_search_book_list = new System.Windows.Forms.TextBox(); - this.btn_order_empty = new System.Windows.Forms.Button(); - this.btn_close = new System.Windows.Forms.Button(); - this.btn_Excel = new System.Windows.Forms.Button(); - this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); + this.idx = new System.Windows.Forms.DataGridViewTextBoxColumn(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); @@ -441,7 +442,8 @@ this.list_name, this.order_date, this.send_date, - this.num}); + this.num, + this.idx}); dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window; dataGridViewCellStyle2.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); @@ -471,100 +473,6 @@ this.dataGridView1.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dataGridView1_DataError); this.dataGridView1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dataGridView1_KeyDown); // - // chk - // - this.chk.HeaderText = "주문선택"; - this.chk.Name = "chk"; - this.chk.Width = 60; - // - // order - // - this.order.HeaderText = "주문처"; - this.order.Name = "order"; - this.order.Width = 80; - // - // M - // - this.M.HeaderText = "M"; - this.M.Name = "M"; - this.M.Width = 25; - // - // isbn - // - this.isbn.HeaderText = "ISBN13"; - this.isbn.Name = "isbn"; - // - // book_name - // - this.book_name.HeaderText = "도서명"; - this.book_name.Name = "book_name"; - this.book_name.Width = 200; - // - // author - // - this.author.HeaderText = "저자"; - this.author.Name = "author"; - this.author.Width = 80; - // - // book_comp - // - this.book_comp.HeaderText = "출판사"; - this.book_comp.Name = "book_comp"; - // - // order_count - // - this.order_count.HeaderText = "주문\n수"; - this.order_count.Name = "order_count"; - this.order_count.Width = 50; - // - // count - // - this.count.HeaderText = "원주\n문"; - this.count.Name = "count"; - this.count.Width = 50; - // - // pay - // - this.pay.HeaderText = "정가"; - this.pay.Name = "pay"; - this.pay.Width = 80; - // - // total - // - this.total.HeaderText = "합계"; - this.total.Name = "total"; - this.total.Width = 75; - // - // etc - // - this.etc.HeaderText = "비 고"; - this.etc.Name = "etc"; - // - // list_name - // - this.list_name.HeaderText = "구분"; - this.list_name.Name = "list_name"; - this.list_name.Width = 80; - // - // order_date - // - this.order_date.HeaderText = "주문일자"; - this.order_date.Name = "order_date"; - this.order_date.Width = 80; - // - // send_date - // - this.send_date.HeaderText = "송금일자"; - this.send_date.Name = "send_date"; - this.send_date.Visible = false; - this.send_date.Width = 80; - // - // num - // - this.num.HeaderText = "번호"; - this.num.Name = "num"; - this.num.Width = 50; - // // panel1 // this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; @@ -677,6 +585,106 @@ this.btn_Excel.UseVisualStyleBackColor = true; this.btn_Excel.Click += new System.EventHandler(this.btn_Excel_Click); // + // chk + // + this.chk.HeaderText = "주문선택"; + this.chk.Name = "chk"; + this.chk.Width = 60; + // + // order + // + this.order.HeaderText = "주문처"; + this.order.Name = "order"; + this.order.Width = 80; + // + // M + // + this.M.HeaderText = "M"; + this.M.Name = "M"; + this.M.Width = 25; + // + // isbn + // + this.isbn.HeaderText = "ISBN13"; + this.isbn.Name = "isbn"; + // + // book_name + // + this.book_name.HeaderText = "도서명"; + this.book_name.Name = "book_name"; + this.book_name.Width = 200; + // + // author + // + this.author.HeaderText = "저자"; + this.author.Name = "author"; + this.author.Width = 80; + // + // book_comp + // + this.book_comp.HeaderText = "출판사"; + this.book_comp.Name = "book_comp"; + // + // order_count + // + this.order_count.HeaderText = "주문\n수"; + this.order_count.Name = "order_count"; + this.order_count.Width = 50; + // + // count + // + this.count.HeaderText = "원주\n문"; + this.count.Name = "count"; + this.count.Width = 50; + // + // pay + // + this.pay.HeaderText = "정가"; + this.pay.Name = "pay"; + this.pay.Width = 80; + // + // total + // + this.total.HeaderText = "합계"; + this.total.Name = "total"; + this.total.Width = 75; + // + // etc + // + this.etc.HeaderText = "비 고"; + this.etc.Name = "etc"; + // + // list_name + // + this.list_name.HeaderText = "구분"; + this.list_name.Name = "list_name"; + this.list_name.Width = 80; + // + // order_date + // + this.order_date.HeaderText = "주문일자"; + this.order_date.Name = "order_date"; + this.order_date.Width = 80; + // + // send_date + // + this.send_date.HeaderText = "송금일자"; + this.send_date.Name = "send_date"; + this.send_date.Visible = false; + this.send_date.Width = 80; + // + // num + // + this.num.HeaderText = "번호"; + this.num.Name = "num"; + this.num.Width = 50; + // + // idx + // + this.idx.HeaderText = "idx"; + this.idx.Name = "idx"; + this.idx.Visible = false; + // // Order_input // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); @@ -763,6 +771,7 @@ public System.Windows.Forms.TextBox tb_orderText; private System.Windows.Forms.Button btn_Excel; private System.Windows.Forms.OpenFileDialog openFileDialog1; + public System.Windows.Forms.ComboBox cb_ordersend; private System.Windows.Forms.DataGridViewCheckBoxColumn chk; private System.Windows.Forms.DataGridViewTextBoxColumn order; private System.Windows.Forms.DataGridViewTextBoxColumn M; @@ -779,6 +788,6 @@ private System.Windows.Forms.DataGridViewTextBoxColumn order_date; private System.Windows.Forms.DataGridViewTextBoxColumn send_date; private System.Windows.Forms.DataGridViewTextBoxColumn num; - public System.Windows.Forms.ComboBox cb_ordersend; + private System.Windows.Forms.DataGridViewTextBoxColumn idx; } } \ No newline at end of file diff --git a/unimarc/unimarc/납품관리/Order_input.cs b/unimarc/unimarc/납품관리/Order_input.cs index 91b49c7..d779905 100644 --- a/unimarc/unimarc/납품관리/Order_input.cs +++ b/unimarc/unimarc/납품관리/Order_input.cs @@ -90,7 +90,7 @@ namespace WindowsFormsApp1.Delivery string takedata = "`order`, `order_stat`, `isbn`, `book_name`, `author`, " + "`book_comp`, `order_count`, `count`, `pay`, `total`, " + "`etc`, `list_name`, `order_date`, `send_date`, `header`, " + - "`num`"; + "`num`, `idx`"; string cmd = db.More_DB_Search("Obj_List_Book", tmp_col, tmp_data, takedata); made_grid(cmd, true); date_Substring(); @@ -103,7 +103,7 @@ namespace WindowsFormsApp1.Delivery string[] mkgrid = { "false", "", "", "", "", "", "", "", "", "", "", "", "", "", "", - "" }; + "", "" }; /* 선택 / o주문처 / oM / o도서명 / o저자 / * o출판사 / o주문수 / o원주문 / o정가 / o합계 / * o비고 / o납품처 / o주문일자 / o송금일자 / oo번호 / @@ -111,29 +111,29 @@ namespace WindowsFormsApp1.Delivery */ for (int a = 0; a < data.Length; a++) { - if (a % 16 == 0) { mkgrid[1] = data[a]; } // 주문처 - if (a % 16 == 1) + if (a % 17 == 0) { mkgrid[1] = data[a]; } // 주문처 + if (a % 17 == 1) { // M if (data[a] == "0") { data[a] = data[a].Replace("0", ""); } if (data[a] == "1") { data[a] = data[a].Replace("1", "V"); } mkgrid[2] = data[a]; } - if (a % 16 == 2) { mkgrid[3] = data[a]; } // ISBN - if (a % 16 == 3) { mkgrid[4] = data[a]; } // 도서명 - if (a % 16 == 4) { mkgrid[5] = data[a]; } // 저자 - if (a % 16 == 5) { mkgrid[6] = data[a]; } // 출판사 - if (a % 16 == 6) { mkgrid[7] = data[a]; } // 주문수 - if (a % 16 == 7) { mkgrid[8] = data[a]; } // 원주문 - if (a % 16 == 8) { mkgrid[9] = data[a]; } // 정가 - if (a % 16 == 9) { mkgrid[10] = data[a]; } // 합계 - if (a % 16 == 10) { mkgrid[11] = data[a]; } // 비고 - if (a % 16 == 11) { mkgrid[12] = data[a]; } // 납품처 - if (a % 16 == 12) { mkgrid[13] = data[a]; } // 주문일자 - if (a % 16 == 13) { mkgrid[14] = data[a]; } // 송금일자 - if (a % 16 == 14) { mkgrid[15] = data[a]; } // 번호 - if (a % 16 == 15) - { // 번호 - mkgrid[15] += " " + data[a]; + if (a % 17 == 2) { mkgrid[3] = data[a]; } // ISBN + if (a % 17 == 3) { mkgrid[4] = data[a]; } // 도서명 + if (a % 17 == 4) { mkgrid[5] = data[a]; } // 저자 + if (a % 17 == 5) { mkgrid[6] = data[a]; } // 출판사 + if (a % 17 == 6) { mkgrid[7] = data[a]; } // 주문수 + if (a % 17 == 7) { mkgrid[8] = data[a]; } // 원주문 + if (a % 17 == 8) { mkgrid[9] = data[a]; } // 정가 + if (a % 17 == 9) { mkgrid[10] = data[a]; } // 합계 + if (a % 17 == 10) { mkgrid[11] = data[a]; } // 비고 + if (a % 17 == 11) { mkgrid[12] = data[a]; } // 납품처 + if (a % 17 == 12) { mkgrid[13] = data[a]; } // 주문일자 + if (a % 17 == 13) { mkgrid[14] = data[a]; } // 송금일자 + if (a % 17 == 14) { mkgrid[15] = data[a]; } // 번호 + if (a % 17 == 15) { mkgrid[15] += " " + data[a]; } // 번호 + if (a % 17 == 16) { + mkgrid[16] = data[a]; if (chk == false) { dataGridView1.Rows.Add(mkgrid); } else { @@ -223,7 +223,38 @@ namespace WindowsFormsApp1.Delivery } private void btn_Save_Click(object sender, EventArgs e) { - + for (int a = 0; a < dataGridView1.Rows.Count; a++) + { + string[] sear_col = { "idx", "compidx" }; + string[] sear_data = { dataGridView1.Rows[a].Cells["idx"].Value.ToString(), compidx }; + string[] edit_col = + { + "order", "order_stat", "isbn", "book_name", "author", + "book_comp", "order_count", "count", "pay", "total", + "etc", "list_name", "order_date", "send_date" + }; + string[] edit_data = + { + dataGridView1.Rows[a].Cells["order"].Value.ToString(), + "", + dataGridView1.Rows[a].Cells["isbn"].Value.ToString(), + dataGridView1.Rows[a].Cells["book_name"].Value.ToString(), + dataGridView1.Rows[a].Cells["author"].Value.ToString(), + dataGridView1.Rows[a].Cells["book_comp"].Value.ToString(), + dataGridView1.Rows[a].Cells["order_count"].Value.ToString(), + dataGridView1.Rows[a].Cells["count"].Value.ToString(), + dataGridView1.Rows[a].Cells["pay"].Value.ToString(), + dataGridView1.Rows[a].Cells["total"].Value.ToString(), + dataGridView1.Rows[a].Cells["etc"].Value.ToString(), + dataGridView1.Rows[a].Cells["list_name"].Value.ToString(), + dataGridView1.Rows[a].Cells["order_date"].Value.ToString(), + dataGridView1.Rows[a].Cells["send_date"].Value.ToString() + }; + if (edit_data[1] == "") { edit_data[1] = "0"; } + else if (edit_data[1] == "V") { edit_data[1] = "1"; } + db.More_Update("Obj_List_Book", edit_col, edit_data, sear_col, sear_data); + } + MessageBox.Show("저장되었습니다!"); } private void btn_close_Click(object sender, EventArgs e) { @@ -332,13 +363,14 @@ namespace WindowsFormsApp1.Delivery private string Excel_sub() { List chkIdx = new List(); - int total = 0; + int[] total = { 0, 0 }; for (int a = 0; a < dataGridView1.Rows.Count; a++) { if (dataGridView1.Rows[a].Cells["chk"].Value.ToString() == "true") { chkIdx.Add(a); - total += Convert.ToInt32(dataGridView1.Rows[a].Cells["count"].Value.ToString()); + total[0] += Convert.ToInt32(dataGridView1.Rows[a].Cells["count"].Value.ToString()); + total[1] += Convert.ToInt32(dataGridView1.Rows[a].Cells["pay"].Value.ToString()); } } if (chkIdx.Count < 1) { MessageBox.Show("선택된 도서가 없습니다!"); return "false"; } @@ -378,7 +410,7 @@ namespace WindowsFormsApp1.Delivery } else if (dataGridView1.Rows[a].Cells["chk"].Value.ToString() == "true") { - if (dataGridView1.Rows[a].Cells["order"].Value.ToString() == over_lab) + if (dataGridView1.Rows[a].Cells["order"].Value.ToString() != over_lab) { MessageBox.Show("주문처가 동일하지 않습니다!", "Error"); return "false"; @@ -398,7 +430,7 @@ namespace WindowsFormsApp1.Delivery // 엑셀파일 생성 string filename = Excel_sub(); - string filePath = Application.StartupPath + "/Excel" + filename; + string filePath = Application.StartupPath + "\\Excel"; switch (emchk) { diff --git a/unimarc/unimarc/납품관리/Order_input.resx b/unimarc/unimarc/납품관리/Order_input.resx index 1cecdbb..4941e80 100644 --- a/unimarc/unimarc/납품관리/Order_input.resx +++ b/unimarc/unimarc/납품관리/Order_input.resx @@ -162,6 +162,9 @@ True + + True + 5, 1 diff --git a/unimarc/unimarc/납품관리/Order_input_Search.cs b/unimarc/unimarc/납품관리/Order_input_Search.cs index 87cc293..973187e 100644 --- a/unimarc/unimarc/납품관리/Order_input_Search.cs +++ b/unimarc/unimarc/납품관리/Order_input_Search.cs @@ -136,7 +136,7 @@ namespace WindowsFormsApp1.Delivery string takedata = "`order`, `order_stat`, `isbn`, `book_name`, `author`, " + "`book_comp`, `order_count`, `count`, `pay`, `total`, " + "`etc`, `list_name`, `order_date`, `send_date`, `header`, " + - "`num`"; + "`num`, `idx`"; string cmd = db.More_DB_Search("Obj_List_Book", tmp_col, tmp_data, takedata); oin.made_grid(cmd, false); oin.tb_search_book_list.Text = tmp_data[1]; @@ -148,7 +148,11 @@ namespace WindowsFormsApp1.Delivery dataGridView1.Rows[grididx].Cells["list_name"].Value.ToString(); } else { - oin.tb_orderText.Text = dataGridView1.Rows[grididx].Cells["list_name"].Value.ToString(); + try + { + oin.tb_orderText.Text = dataGridView1.Rows[grididx].Cells["list_name"].Value.ToString(); + } + catch { } } } } diff --git a/unimarc/unimarc/마크/Check_ISBN.cs b/unimarc/unimarc/마크/Check_ISBN.cs index b793925..bf2ba30 100644 --- a/unimarc/unimarc/마크/Check_ISBN.cs +++ b/unimarc/unimarc/마크/Check_ISBN.cs @@ -398,7 +398,13 @@ namespace WindowsFormsApp1.Mac grid[3] = tmp_isbn[1]; grid[4] = data[4]; - grid[5] = data[5].Substring(0, 10); + + if (data[5].Length < 10) + grid[5] = data[5]; + + else + grid[5] = data[5].Substring(0, 10); + grid[7] = data[6]; grid[8] = data[7]; @@ -502,18 +508,20 @@ namespace WindowsFormsApp1.Mac { for(int a = 0; a < dataGridView1.Columns.Count; a++) { - if(dataGridView1.Columns[a].HeaderText != "ISBN13") - dataGridView1.Columns[a].ReadOnly = true; - + if (dataGridView1.Columns[a].HeaderText == "ISBN13" || + dataGridView1.Columns[a].Name == "book_name" || + dataGridView1.Columns[a].Name == "author" || + dataGridView1.Columns[a].Name == "book_comp") { + dataGridView1.Columns[a].ReadOnly = false; + } + else { dataGridView1.Columns[a].ReadOnly = true; } } } private void btn_Save_Click(object sender, EventArgs e) { for (int a = 0; a < dataGridView1.Rows.Count; a++) { - if (dataGridView1.Rows[a].Cells["isbn"].Value.ToString() == "" || - dataGridView1.Rows[a].Cells["price"].Value.ToString() == "" || - dataGridView1.Rows[a].Cells["pubDate"].Value.ToString() == "") { continue; } + if (dataGridView1.Rows[a].Cells["isbn"].Value.ToString() == "") { continue; } string[] Edit_tbl = { "isbn", "price", "pubDate", "category", "image_url" }; string[] Edit_Col = { dataGridView1.Rows[a].Cells["isbn"].Value.ToString(), dataGridView1.Rows[a].Cells["price"].Value.ToString(), diff --git a/unimarc/unimarc/편의기능/Calendar.Designer.cs b/unimarc/unimarc/편의기능/Calendar.Designer.cs index 080e624..1fd1adc 100644 --- a/unimarc/unimarc/편의기능/Calendar.Designer.cs +++ b/unimarc/unimarc/편의기능/Calendar.Designer.cs @@ -28,33 +28,2384 @@ /// private void InitializeComponent() { + this.lbl_Year = new System.Windows.Forms.Label(); + this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker(); + this.Btn_After = new System.Windows.Forms.Button(); + this.Btn_Before = new System.Windows.Forms.Button(); + this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel(); + this.panel20 = new System.Windows.Forms.Panel(); + this.lbl_1_4 = new System.Windows.Forms.Label(); + this.lbl_Day_1_4 = new System.Windows.Forms.Label(); + this.rb_1_4 = new System.Windows.Forms.RichTextBox(); + this.panel19 = new System.Windows.Forms.Panel(); + this.lbl_1_2 = new System.Windows.Forms.Label(); + this.lbl_Day_1_2 = new System.Windows.Forms.Label(); + this.rb_1_2 = new System.Windows.Forms.RichTextBox(); + this.panel35 = new System.Windows.Forms.Panel(); + this.lbl_4_6 = new System.Windows.Forms.Label(); + this.lbl_Day_4_6 = new System.Windows.Forms.Label(); + this.rb_4_6 = new System.Windows.Forms.RichTextBox(); + this.panel34 = new System.Windows.Forms.Panel(); + this.lbl_4_5 = new System.Windows.Forms.Label(); + this.lbl_Day_4_5 = new System.Windows.Forms.Label(); + this.rb_4_5 = new System.Windows.Forms.RichTextBox(); + this.panel33 = new System.Windows.Forms.Panel(); + this.lbl_4_4 = new System.Windows.Forms.Label(); + this.lbl_Day_4_4 = new System.Windows.Forms.Label(); + this.rb_4_4 = new System.Windows.Forms.RichTextBox(); + this.panel32 = new System.Windows.Forms.Panel(); + this.lbl_4_3 = new System.Windows.Forms.Label(); + this.lbl_Day_4_3 = new System.Windows.Forms.Label(); + this.rb_4_3 = new System.Windows.Forms.RichTextBox(); + this.panel31 = new System.Windows.Forms.Panel(); + this.lbl_4_2 = new System.Windows.Forms.Label(); + this.lbl_Day_4_2 = new System.Windows.Forms.Label(); + this.rb_4_2 = new System.Windows.Forms.RichTextBox(); + this.panel12 = new System.Windows.Forms.Panel(); + this.lbl_2_6 = new System.Windows.Forms.Label(); + this.lbl_Day_2_6 = new System.Windows.Forms.Label(); + this.rb_2_6 = new System.Windows.Forms.RichTextBox(); + this.panel30 = new System.Windows.Forms.Panel(); + this.lbl_4_1 = new System.Windows.Forms.Label(); + this.lbl_Day_4_1 = new System.Windows.Forms.Label(); + this.rb_4_1 = new System.Windows.Forms.RichTextBox(); + this.panel29 = new System.Windows.Forms.Panel(); + this.lbl_3_1 = new System.Windows.Forms.Label(); + this.lbl_Day_3_1 = new System.Windows.Forms.Label(); + this.rb_3_1 = new System.Windows.Forms.RichTextBox(); + this.panel28 = new System.Windows.Forms.Panel(); + this.lbl_3_2 = new System.Windows.Forms.Label(); + this.lbl_Day_3_2 = new System.Windows.Forms.Label(); + this.rb_3_2 = new System.Windows.Forms.RichTextBox(); + this.panel27 = new System.Windows.Forms.Panel(); + this.lbl_3_3 = new System.Windows.Forms.Label(); + this.lbl_Day_3_3 = new System.Windows.Forms.Label(); + this.rb_3_3 = new System.Windows.Forms.RichTextBox(); + this.panel26 = new System.Windows.Forms.Panel(); + this.lbl_3_4 = new System.Windows.Forms.Label(); + this.lbl_Day_3_4 = new System.Windows.Forms.Label(); + this.rb_3_4 = new System.Windows.Forms.RichTextBox(); + this.panel25 = new System.Windows.Forms.Panel(); + this.lbl_2_4 = new System.Windows.Forms.Label(); + this.lbl_Day_2_4 = new System.Windows.Forms.Label(); + this.rb_2_4 = new System.Windows.Forms.RichTextBox(); + this.panel24 = new System.Windows.Forms.Panel(); + this.lbl_2_3 = new System.Windows.Forms.Label(); + this.lbl_Day_2_3 = new System.Windows.Forms.Label(); + this.rb_2_3 = new System.Windows.Forms.RichTextBox(); + this.panel23 = new System.Windows.Forms.Panel(); + this.lbl_2_2 = new System.Windows.Forms.Label(); + this.lbl_Day_2_2 = new System.Windows.Forms.Label(); + this.rb_2_2 = new System.Windows.Forms.RichTextBox(); + this.panel21 = new System.Windows.Forms.Panel(); + this.lbl_2_1 = new System.Windows.Forms.Label(); + this.label14 = new System.Windows.Forms.Label(); + this.lbl_Day_2_1 = new System.Windows.Forms.Label(); + this.rb_2_1 = new System.Windows.Forms.RichTextBox(); + this.panel22 = new System.Windows.Forms.Panel(); + this.lbl_1_3 = new System.Windows.Forms.Label(); + this.lbl_Day_1_3 = new System.Windows.Forms.Label(); + this.rb_1_3 = new System.Windows.Forms.RichTextBox(); + this.panel18 = new System.Windows.Forms.Panel(); + this.lbl_1_1 = new System.Windows.Forms.Label(); + this.lbl_Day_1_1 = new System.Windows.Forms.Label(); + this.rb_1_1 = new System.Windows.Forms.RichTextBox(); + this.panel1 = new System.Windows.Forms.Panel(); + this.lbl_1_5 = new System.Windows.Forms.Label(); + this.lbl_Day_1_5 = new System.Windows.Forms.Label(); + this.rb_1_5 = new System.Windows.Forms.RichTextBox(); + this.panel2 = new System.Windows.Forms.Panel(); this.label1 = new System.Windows.Forms.Label(); + this.panel3 = new System.Windows.Forms.Panel(); + this.label2 = new System.Windows.Forms.Label(); + this.panel4 = new System.Windows.Forms.Panel(); + this.label3 = new System.Windows.Forms.Label(); + this.panel5 = new System.Windows.Forms.Panel(); + this.label4 = new System.Windows.Forms.Label(); + this.panel6 = new System.Windows.Forms.Panel(); + this.label5 = new System.Windows.Forms.Label(); + this.panel7 = new System.Windows.Forms.Panel(); + this.label6 = new System.Windows.Forms.Label(); + this.panel8 = new System.Windows.Forms.Panel(); + this.label7 = new System.Windows.Forms.Label(); + this.panel9 = new System.Windows.Forms.Panel(); + this.lbl_1_7 = new System.Windows.Forms.Label(); + this.lbl_Day_1_7 = new System.Windows.Forms.Label(); + this.rb_1_7 = new System.Windows.Forms.RichTextBox(); + this.panel10 = new System.Windows.Forms.Panel(); + this.lbl_1_6 = new System.Windows.Forms.Label(); + this.lbl_Day_1_6 = new System.Windows.Forms.Label(); + this.rb_1_6 = new System.Windows.Forms.RichTextBox(); + this.panel13 = new System.Windows.Forms.Panel(); + this.lbl_3_7 = new System.Windows.Forms.Label(); + this.lbl_Day_3_7 = new System.Windows.Forms.Label(); + this.rb_3_7 = new System.Windows.Forms.RichTextBox(); + this.panel14 = new System.Windows.Forms.Panel(); + this.lbl_3_6 = new System.Windows.Forms.Label(); + this.lbl_Day_3_6 = new System.Windows.Forms.Label(); + this.rb_3_6 = new System.Windows.Forms.RichTextBox(); + this.panel15 = new System.Windows.Forms.Panel(); + this.lbl_2_5 = new System.Windows.Forms.Label(); + this.lbl_Day_2_5 = new System.Windows.Forms.Label(); + this.rb_2_5 = new System.Windows.Forms.RichTextBox(); + this.panel16 = new System.Windows.Forms.Panel(); + this.lbl_3_5 = new System.Windows.Forms.Label(); + this.lbl_Day_3_5 = new System.Windows.Forms.Label(); + this.rb_3_5 = new System.Windows.Forms.RichTextBox(); + this.panel17 = new System.Windows.Forms.Panel(); + this.lbl_4_7 = new System.Windows.Forms.Label(); + this.lbl_Day_4_7 = new System.Windows.Forms.Label(); + this.rb_4_7 = new System.Windows.Forms.RichTextBox(); + this.panel36 = new System.Windows.Forms.Panel(); + this.lbl_5_1 = new System.Windows.Forms.Label(); + this.lbl_Day_5_1 = new System.Windows.Forms.Label(); + this.rb_5_1 = new System.Windows.Forms.RichTextBox(); + this.panel37 = new System.Windows.Forms.Panel(); + this.lbl_5_2 = new System.Windows.Forms.Label(); + this.lbl_Day_5_2 = new System.Windows.Forms.Label(); + this.rb_5_2 = new System.Windows.Forms.RichTextBox(); + this.panel38 = new System.Windows.Forms.Panel(); + this.lbl_5_3 = new System.Windows.Forms.Label(); + this.lbl_Day_5_3 = new System.Windows.Forms.Label(); + this.rb_5_3 = new System.Windows.Forms.RichTextBox(); + this.panel39 = new System.Windows.Forms.Panel(); + this.lbl_5_4 = new System.Windows.Forms.Label(); + this.lbl_Day_5_4 = new System.Windows.Forms.Label(); + this.rb_5_4 = new System.Windows.Forms.RichTextBox(); + this.panel40 = new System.Windows.Forms.Panel(); + this.lbl_5_5 = new System.Windows.Forms.Label(); + this.lbl_Day_5_5 = new System.Windows.Forms.Label(); + this.rb_5_5 = new System.Windows.Forms.RichTextBox(); + this.panel41 = new System.Windows.Forms.Panel(); + this.lbl_5_6 = new System.Windows.Forms.Label(); + this.lbl_Day_5_6 = new System.Windows.Forms.Label(); + this.rb_5_6 = new System.Windows.Forms.RichTextBox(); + this.panel42 = new System.Windows.Forms.Panel(); + this.lbl_5_7 = new System.Windows.Forms.Label(); + this.lbl_Day_5_7 = new System.Windows.Forms.Label(); + this.rb_5_7 = new System.Windows.Forms.RichTextBox(); + this.panel11 = new System.Windows.Forms.Panel(); + this.lbl_2_7 = new System.Windows.Forms.Label(); + this.lbl_Day_2_7 = new System.Windows.Forms.Label(); + this.rb_2_7 = new System.Windows.Forms.RichTextBox(); + this.btn_close = new System.Windows.Forms.Button(); + this.lbl_Month = new System.Windows.Forms.Label(); + this.rb_all = new System.Windows.Forms.RadioButton(); + this.rb_dly = new System.Windows.Forms.RadioButton(); + this.rb_marc = new System.Windows.Forms.RadioButton(); + this.tableLayoutPanel1.SuspendLayout(); + this.panel20.SuspendLayout(); + this.panel19.SuspendLayout(); + this.panel35.SuspendLayout(); + this.panel34.SuspendLayout(); + this.panel33.SuspendLayout(); + this.panel32.SuspendLayout(); + this.panel31.SuspendLayout(); + this.panel12.SuspendLayout(); + this.panel30.SuspendLayout(); + this.panel29.SuspendLayout(); + this.panel28.SuspendLayout(); + this.panel27.SuspendLayout(); + this.panel26.SuspendLayout(); + this.panel25.SuspendLayout(); + this.panel24.SuspendLayout(); + this.panel23.SuspendLayout(); + this.panel21.SuspendLayout(); + this.panel22.SuspendLayout(); + this.panel18.SuspendLayout(); + this.panel1.SuspendLayout(); + this.panel2.SuspendLayout(); + this.panel3.SuspendLayout(); + this.panel4.SuspendLayout(); + this.panel5.SuspendLayout(); + this.panel6.SuspendLayout(); + this.panel7.SuspendLayout(); + this.panel8.SuspendLayout(); + this.panel9.SuspendLayout(); + this.panel10.SuspendLayout(); + this.panel13.SuspendLayout(); + this.panel14.SuspendLayout(); + this.panel15.SuspendLayout(); + this.panel16.SuspendLayout(); + this.panel17.SuspendLayout(); + this.panel36.SuspendLayout(); + this.panel37.SuspendLayout(); + this.panel38.SuspendLayout(); + this.panel39.SuspendLayout(); + this.panel40.SuspendLayout(); + this.panel41.SuspendLayout(); + this.panel42.SuspendLayout(); + this.panel11.SuspendLayout(); this.SuspendLayout(); // + // lbl_Year + // + this.lbl_Year.AutoSize = true; + this.lbl_Year.Font = new System.Drawing.Font("굴림", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Year.Location = new System.Drawing.Point(15, 16); + this.lbl_Year.Name = "lbl_Year"; + this.lbl_Year.Size = new System.Drawing.Size(72, 27); + this.lbl_Year.TabIndex = 2; + this.lbl_Year.Text = "Year"; + // + // dateTimePicker1 + // + this.dateTimePicker1.Location = new System.Drawing.Point(303, 15); + this.dateTimePicker1.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0); + this.dateTimePicker1.Name = "dateTimePicker1"; + this.dateTimePicker1.Size = new System.Drawing.Size(164, 21); + this.dateTimePicker1.TabIndex = 8; + this.dateTimePicker1.Value = new System.DateTime(2021, 7, 5, 11, 16, 1, 0); + this.dateTimePicker1.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged); + // + // Btn_After + // + this.Btn_After.Location = new System.Drawing.Point(641, 7); + this.Btn_After.Name = "Btn_After"; + this.Btn_After.Size = new System.Drawing.Size(92, 41); + this.Btn_After.TabIndex = 7; + this.Btn_After.Text = "한달 후"; + this.Btn_After.UseVisualStyleBackColor = true; + this.Btn_After.Click += new System.EventHandler(this.Btn_After_Click); + // + // Btn_Before + // + this.Btn_Before.Location = new System.Drawing.Point(536, 7); + this.Btn_Before.Name = "Btn_Before"; + this.Btn_Before.Size = new System.Drawing.Size(92, 41); + this.Btn_Before.TabIndex = 6; + this.Btn_Before.Text = "한달 전"; + this.Btn_Before.UseVisualStyleBackColor = true; + this.Btn_Before.Click += new System.EventHandler(this.Btn_Before_Click); + // + // tableLayoutPanel1 + // + this.tableLayoutPanel1.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.InsetDouble; + this.tableLayoutPanel1.ColumnCount = 7; + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 16.66667F)); + this.tableLayoutPanel1.Controls.Add(this.panel20, 3, 1); + this.tableLayoutPanel1.Controls.Add(this.panel19, 1, 1); + this.tableLayoutPanel1.Controls.Add(this.panel35, 5, 4); + this.tableLayoutPanel1.Controls.Add(this.panel34, 4, 4); + this.tableLayoutPanel1.Controls.Add(this.panel33, 3, 4); + this.tableLayoutPanel1.Controls.Add(this.panel32, 2, 4); + this.tableLayoutPanel1.Controls.Add(this.panel31, 1, 4); + this.tableLayoutPanel1.Controls.Add(this.panel12, 5, 2); + this.tableLayoutPanel1.Controls.Add(this.panel30, 0, 4); + this.tableLayoutPanel1.Controls.Add(this.panel29, 0, 3); + this.tableLayoutPanel1.Controls.Add(this.panel28, 1, 3); + this.tableLayoutPanel1.Controls.Add(this.panel27, 2, 3); + this.tableLayoutPanel1.Controls.Add(this.panel26, 3, 3); + this.tableLayoutPanel1.Controls.Add(this.panel25, 3, 2); + this.tableLayoutPanel1.Controls.Add(this.panel24, 2, 2); + this.tableLayoutPanel1.Controls.Add(this.panel23, 1, 2); + this.tableLayoutPanel1.Controls.Add(this.panel21, 0, 2); + this.tableLayoutPanel1.Controls.Add(this.panel22, 2, 1); + this.tableLayoutPanel1.Controls.Add(this.panel18, 0, 1); + this.tableLayoutPanel1.Controls.Add(this.panel1, 4, 1); + this.tableLayoutPanel1.Controls.Add(this.panel2, 0, 0); + this.tableLayoutPanel1.Controls.Add(this.panel3, 1, 0); + this.tableLayoutPanel1.Controls.Add(this.panel4, 2, 0); + this.tableLayoutPanel1.Controls.Add(this.panel5, 3, 0); + this.tableLayoutPanel1.Controls.Add(this.panel6, 4, 0); + this.tableLayoutPanel1.Controls.Add(this.panel7, 5, 0); + this.tableLayoutPanel1.Controls.Add(this.panel8, 6, 0); + this.tableLayoutPanel1.Controls.Add(this.panel9, 6, 1); + this.tableLayoutPanel1.Controls.Add(this.panel10, 5, 1); + this.tableLayoutPanel1.Controls.Add(this.panel13, 6, 3); + this.tableLayoutPanel1.Controls.Add(this.panel14, 5, 3); + this.tableLayoutPanel1.Controls.Add(this.panel15, 4, 2); + this.tableLayoutPanel1.Controls.Add(this.panel16, 4, 3); + this.tableLayoutPanel1.Controls.Add(this.panel17, 6, 4); + this.tableLayoutPanel1.Controls.Add(this.panel36, 0, 5); + this.tableLayoutPanel1.Controls.Add(this.panel37, 1, 5); + this.tableLayoutPanel1.Controls.Add(this.panel38, 2, 5); + this.tableLayoutPanel1.Controls.Add(this.panel39, 3, 5); + this.tableLayoutPanel1.Controls.Add(this.panel40, 4, 5); + this.tableLayoutPanel1.Controls.Add(this.panel41, 5, 5); + this.tableLayoutPanel1.Controls.Add(this.panel42, 6, 5); + this.tableLayoutPanel1.Controls.Add(this.panel11, 6, 2); + this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 53); + this.tableLayoutPanel1.Name = "tableLayoutPanel1"; + this.tableLayoutPanel1.RowCount = 6; + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F)); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F)); + this.tableLayoutPanel1.Size = new System.Drawing.Size(1337, 799); + this.tableLayoutPanel1.TabIndex = 5; + // + // panel20 + // + this.panel20.Controls.Add(this.lbl_1_4); + this.panel20.Controls.Add(this.lbl_Day_1_4); + this.panel20.Controls.Add(this.rb_1_4); + this.panel20.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel20.Location = new System.Drawing.Point(551, 39); + this.panel20.Name = "panel20"; + this.panel20.Size = new System.Drawing.Size(187, 143); + this.panel20.TabIndex = 2; + // + // lbl_1_4 + // + this.lbl_1_4.AutoSize = true; + this.lbl_1_4.Location = new System.Drawing.Point(82, 1); + this.lbl_1_4.Name = "lbl_1_4"; + this.lbl_1_4.Size = new System.Drawing.Size(38, 12); + this.lbl_1_4.TabIndex = 1; + this.lbl_1_4.Text = "label8"; + this.lbl_1_4.Visible = false; + // + // lbl_Day_1_4 + // + this.lbl_Day_1_4.AutoSize = true; + this.lbl_Day_1_4.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_1_4.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_1_4.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_1_4.Name = "lbl_Day_1_4"; + this.lbl_Day_1_4.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_1_4.TabIndex = 0; + this.lbl_Day_1_4.Text = "0"; + // + // rb_1_4 + // + this.rb_1_4.BackColor = System.Drawing.SystemColors.Control; + this.rb_1_4.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_1_4.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_1_4.Location = new System.Drawing.Point(0, 15); + this.rb_1_4.Name = "rb_1_4"; + this.rb_1_4.ReadOnly = true; + this.rb_1_4.Size = new System.Drawing.Size(187, 128); + this.rb_1_4.TabIndex = 0; + this.rb_1_4.TabStop = false; + this.rb_1_4.Text = ""; + // + // panel19 + // + this.panel19.Controls.Add(this.lbl_1_2); + this.panel19.Controls.Add(this.lbl_Day_1_2); + this.panel19.Controls.Add(this.rb_1_2); + this.panel19.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel19.Location = new System.Drawing.Point(159, 39); + this.panel19.Name = "panel19"; + this.panel19.Size = new System.Drawing.Size(187, 143); + this.panel19.TabIndex = 16; + // + // lbl_1_2 + // + this.lbl_1_2.AutoSize = true; + this.lbl_1_2.Location = new System.Drawing.Point(80, 1); + this.lbl_1_2.Name = "lbl_1_2"; + this.lbl_1_2.Size = new System.Drawing.Size(38, 12); + this.lbl_1_2.TabIndex = 1; + this.lbl_1_2.Text = "label8"; + this.lbl_1_2.Visible = false; + // + // lbl_Day_1_2 + // + this.lbl_Day_1_2.AutoSize = true; + this.lbl_Day_1_2.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_1_2.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_1_2.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_1_2.Name = "lbl_Day_1_2"; + this.lbl_Day_1_2.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_1_2.TabIndex = 0; + this.lbl_Day_1_2.Text = "0"; + // + // rb_1_2 + // + this.rb_1_2.BackColor = System.Drawing.SystemColors.Control; + this.rb_1_2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_1_2.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_1_2.Location = new System.Drawing.Point(0, 15); + this.rb_1_2.Name = "rb_1_2"; + this.rb_1_2.ReadOnly = true; + this.rb_1_2.Size = new System.Drawing.Size(187, 128); + this.rb_1_2.TabIndex = 0; + this.rb_1_2.TabStop = false; + this.rb_1_2.Text = ""; + // + // panel35 + // + this.panel35.Controls.Add(this.lbl_4_6); + this.panel35.Controls.Add(this.lbl_Day_4_6); + this.panel35.Controls.Add(this.rb_4_6); + this.panel35.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel35.Location = new System.Drawing.Point(943, 495); + this.panel35.Name = "panel35"; + this.panel35.Size = new System.Drawing.Size(187, 143); + this.panel35.TabIndex = 15; + // + // lbl_4_6 + // + this.lbl_4_6.AutoSize = true; + this.lbl_4_6.Location = new System.Drawing.Point(83, 1); + this.lbl_4_6.Name = "lbl_4_6"; + this.lbl_4_6.Size = new System.Drawing.Size(38, 12); + this.lbl_4_6.TabIndex = 1; + this.lbl_4_6.Text = "label8"; + this.lbl_4_6.Visible = false; + // + // lbl_Day_4_6 + // + this.lbl_Day_4_6.AutoSize = true; + this.lbl_Day_4_6.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_4_6.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_4_6.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_4_6.Name = "lbl_Day_4_6"; + this.lbl_Day_4_6.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_4_6.TabIndex = 0; + this.lbl_Day_4_6.Text = "0"; + // + // rb_4_6 + // + this.rb_4_6.BackColor = System.Drawing.SystemColors.Control; + this.rb_4_6.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_4_6.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_4_6.Location = new System.Drawing.Point(0, 15); + this.rb_4_6.Name = "rb_4_6"; + this.rb_4_6.ReadOnly = true; + this.rb_4_6.Size = new System.Drawing.Size(187, 128); + this.rb_4_6.TabIndex = 0; + this.rb_4_6.TabStop = false; + this.rb_4_6.Text = ""; + // + // panel34 + // + this.panel34.Controls.Add(this.lbl_4_5); + this.panel34.Controls.Add(this.lbl_Day_4_5); + this.panel34.Controls.Add(this.rb_4_5); + this.panel34.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel34.Location = new System.Drawing.Point(747, 495); + this.panel34.Name = "panel34"; + this.panel34.Size = new System.Drawing.Size(187, 143); + this.panel34.TabIndex = 15; + // + // lbl_4_5 + // + this.lbl_4_5.AutoSize = true; + this.lbl_4_5.Location = new System.Drawing.Point(82, 1); + this.lbl_4_5.Name = "lbl_4_5"; + this.lbl_4_5.Size = new System.Drawing.Size(38, 12); + this.lbl_4_5.TabIndex = 1; + this.lbl_4_5.Text = "label8"; + this.lbl_4_5.Visible = false; + // + // lbl_Day_4_5 + // + this.lbl_Day_4_5.AutoSize = true; + this.lbl_Day_4_5.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_4_5.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_4_5.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_4_5.Name = "lbl_Day_4_5"; + this.lbl_Day_4_5.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_4_5.TabIndex = 0; + this.lbl_Day_4_5.Text = "0"; + // + // rb_4_5 + // + this.rb_4_5.BackColor = System.Drawing.SystemColors.Control; + this.rb_4_5.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_4_5.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_4_5.Location = new System.Drawing.Point(0, 15); + this.rb_4_5.Name = "rb_4_5"; + this.rb_4_5.ReadOnly = true; + this.rb_4_5.Size = new System.Drawing.Size(187, 128); + this.rb_4_5.TabIndex = 0; + this.rb_4_5.TabStop = false; + this.rb_4_5.Text = ""; + // + // panel33 + // + this.panel33.Controls.Add(this.lbl_4_4); + this.panel33.Controls.Add(this.lbl_Day_4_4); + this.panel33.Controls.Add(this.rb_4_4); + this.panel33.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel33.Location = new System.Drawing.Point(551, 495); + this.panel33.Name = "panel33"; + this.panel33.Size = new System.Drawing.Size(187, 143); + this.panel33.TabIndex = 15; + // + // lbl_4_4 + // + this.lbl_4_4.AutoSize = true; + this.lbl_4_4.Location = new System.Drawing.Point(82, 1); + this.lbl_4_4.Name = "lbl_4_4"; + this.lbl_4_4.Size = new System.Drawing.Size(38, 12); + this.lbl_4_4.TabIndex = 1; + this.lbl_4_4.Text = "label8"; + this.lbl_4_4.Visible = false; + // + // lbl_Day_4_4 + // + this.lbl_Day_4_4.AutoSize = true; + this.lbl_Day_4_4.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_4_4.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_4_4.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_4_4.Name = "lbl_Day_4_4"; + this.lbl_Day_4_4.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_4_4.TabIndex = 0; + this.lbl_Day_4_4.Text = "0"; + // + // rb_4_4 + // + this.rb_4_4.BackColor = System.Drawing.SystemColors.Control; + this.rb_4_4.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_4_4.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_4_4.Location = new System.Drawing.Point(0, 15); + this.rb_4_4.Name = "rb_4_4"; + this.rb_4_4.ReadOnly = true; + this.rb_4_4.Size = new System.Drawing.Size(187, 128); + this.rb_4_4.TabIndex = 0; + this.rb_4_4.TabStop = false; + this.rb_4_4.Text = ""; + // + // panel32 + // + this.panel32.Controls.Add(this.lbl_4_3); + this.panel32.Controls.Add(this.lbl_Day_4_3); + this.panel32.Controls.Add(this.rb_4_3); + this.panel32.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel32.Location = new System.Drawing.Point(355, 495); + this.panel32.Name = "panel32"; + this.panel32.Size = new System.Drawing.Size(187, 143); + this.panel32.TabIndex = 15; + // + // lbl_4_3 + // + this.lbl_4_3.AutoSize = true; + this.lbl_4_3.Location = new System.Drawing.Point(81, 1); + this.lbl_4_3.Name = "lbl_4_3"; + this.lbl_4_3.Size = new System.Drawing.Size(38, 12); + this.lbl_4_3.TabIndex = 1; + this.lbl_4_3.Text = "label8"; + this.lbl_4_3.Visible = false; + // + // lbl_Day_4_3 + // + this.lbl_Day_4_3.AutoSize = true; + this.lbl_Day_4_3.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_4_3.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_4_3.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_4_3.Name = "lbl_Day_4_3"; + this.lbl_Day_4_3.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_4_3.TabIndex = 0; + this.lbl_Day_4_3.Text = "0"; + // + // rb_4_3 + // + this.rb_4_3.BackColor = System.Drawing.SystemColors.Control; + this.rb_4_3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_4_3.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_4_3.Location = new System.Drawing.Point(0, 15); + this.rb_4_3.Name = "rb_4_3"; + this.rb_4_3.ReadOnly = true; + this.rb_4_3.Size = new System.Drawing.Size(187, 128); + this.rb_4_3.TabIndex = 0; + this.rb_4_3.TabStop = false; + this.rb_4_3.Text = ""; + // + // panel31 + // + this.panel31.Controls.Add(this.lbl_4_2); + this.panel31.Controls.Add(this.lbl_Day_4_2); + this.panel31.Controls.Add(this.rb_4_2); + this.panel31.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel31.Location = new System.Drawing.Point(159, 495); + this.panel31.Name = "panel31"; + this.panel31.Size = new System.Drawing.Size(187, 143); + this.panel31.TabIndex = 15; + // + // lbl_4_2 + // + this.lbl_4_2.AutoSize = true; + this.lbl_4_2.Location = new System.Drawing.Point(80, 1); + this.lbl_4_2.Name = "lbl_4_2"; + this.lbl_4_2.Size = new System.Drawing.Size(38, 12); + this.lbl_4_2.TabIndex = 1; + this.lbl_4_2.Text = "label8"; + this.lbl_4_2.Visible = false; + // + // lbl_Day_4_2 + // + this.lbl_Day_4_2.AutoSize = true; + this.lbl_Day_4_2.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_4_2.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_4_2.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_4_2.Name = "lbl_Day_4_2"; + this.lbl_Day_4_2.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_4_2.TabIndex = 0; + this.lbl_Day_4_2.Text = "0"; + // + // rb_4_2 + // + this.rb_4_2.BackColor = System.Drawing.SystemColors.Control; + this.rb_4_2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_4_2.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_4_2.Location = new System.Drawing.Point(0, 15); + this.rb_4_2.Name = "rb_4_2"; + this.rb_4_2.ReadOnly = true; + this.rb_4_2.Size = new System.Drawing.Size(187, 128); + this.rb_4_2.TabIndex = 0; + this.rb_4_2.TabStop = false; + this.rb_4_2.Text = ""; + // + // panel12 + // + this.panel12.Controls.Add(this.lbl_2_6); + this.panel12.Controls.Add(this.lbl_Day_2_6); + this.panel12.Controls.Add(this.rb_2_6); + this.panel12.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel12.Location = new System.Drawing.Point(943, 191); + this.panel12.Name = "panel12"; + this.panel12.Size = new System.Drawing.Size(187, 143); + this.panel12.TabIndex = 9; + // + // lbl_2_6 + // + this.lbl_2_6.AutoSize = true; + this.lbl_2_6.Location = new System.Drawing.Point(83, 1); + this.lbl_2_6.Name = "lbl_2_6"; + this.lbl_2_6.Size = new System.Drawing.Size(38, 12); + this.lbl_2_6.TabIndex = 1; + this.lbl_2_6.Text = "label8"; + this.lbl_2_6.Visible = false; + // + // lbl_Day_2_6 + // + this.lbl_Day_2_6.AutoSize = true; + this.lbl_Day_2_6.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_2_6.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_2_6.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_2_6.Name = "lbl_Day_2_6"; + this.lbl_Day_2_6.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_2_6.TabIndex = 0; + this.lbl_Day_2_6.Text = "0"; + // + // rb_2_6 + // + this.rb_2_6.BackColor = System.Drawing.SystemColors.Control; + this.rb_2_6.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_2_6.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_2_6.Location = new System.Drawing.Point(0, 15); + this.rb_2_6.Name = "rb_2_6"; + this.rb_2_6.ReadOnly = true; + this.rb_2_6.Size = new System.Drawing.Size(187, 128); + this.rb_2_6.TabIndex = 0; + this.rb_2_6.TabStop = false; + this.rb_2_6.Text = ""; + // + // panel30 + // + this.panel30.BackColor = System.Drawing.Color.LightCoral; + this.panel30.Controls.Add(this.lbl_4_1); + this.panel30.Controls.Add(this.lbl_Day_4_1); + this.panel30.Controls.Add(this.rb_4_1); + this.panel30.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel30.Location = new System.Drawing.Point(6, 495); + this.panel30.Name = "panel30"; + this.panel30.Size = new System.Drawing.Size(144, 143); + this.panel30.TabIndex = 15; + // + // lbl_4_1 + // + this.lbl_4_1.AutoSize = true; + this.lbl_4_1.Location = new System.Drawing.Point(58, 1); + this.lbl_4_1.Name = "lbl_4_1"; + this.lbl_4_1.Size = new System.Drawing.Size(38, 12); + this.lbl_4_1.TabIndex = 1; + this.lbl_4_1.Text = "label8"; + this.lbl_4_1.Visible = false; + // + // lbl_Day_4_1 + // + this.lbl_Day_4_1.AutoSize = true; + this.lbl_Day_4_1.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_4_1.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_4_1.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_4_1.Name = "lbl_Day_4_1"; + this.lbl_Day_4_1.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_4_1.TabIndex = 0; + this.lbl_Day_4_1.Text = "0"; + // + // rb_4_1 + // + this.rb_4_1.BackColor = System.Drawing.Color.LightCoral; + this.rb_4_1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_4_1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_4_1.Location = new System.Drawing.Point(0, 15); + this.rb_4_1.Name = "rb_4_1"; + this.rb_4_1.ReadOnly = true; + this.rb_4_1.Size = new System.Drawing.Size(144, 128); + this.rb_4_1.TabIndex = 0; + this.rb_4_1.TabStop = false; + this.rb_4_1.Text = ""; + // + // panel29 + // + this.panel29.BackColor = System.Drawing.Color.LightCoral; + this.panel29.Controls.Add(this.lbl_3_1); + this.panel29.Controls.Add(this.lbl_Day_3_1); + this.panel29.Controls.Add(this.rb_3_1); + this.panel29.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel29.Location = new System.Drawing.Point(6, 343); + this.panel29.Name = "panel29"; + this.panel29.Size = new System.Drawing.Size(144, 143); + this.panel29.TabIndex = 15; + // + // lbl_3_1 + // + this.lbl_3_1.AutoSize = true; + this.lbl_3_1.Location = new System.Drawing.Point(58, 1); + this.lbl_3_1.Name = "lbl_3_1"; + this.lbl_3_1.Size = new System.Drawing.Size(38, 12); + this.lbl_3_1.TabIndex = 1; + this.lbl_3_1.Text = "label8"; + this.lbl_3_1.Visible = false; + // + // lbl_Day_3_1 + // + this.lbl_Day_3_1.AutoSize = true; + this.lbl_Day_3_1.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_3_1.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_3_1.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_3_1.Name = "lbl_Day_3_1"; + this.lbl_Day_3_1.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_3_1.TabIndex = 0; + this.lbl_Day_3_1.Text = "0"; + // + // rb_3_1 + // + this.rb_3_1.BackColor = System.Drawing.Color.LightCoral; + this.rb_3_1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_3_1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_3_1.Location = new System.Drawing.Point(0, 15); + this.rb_3_1.Name = "rb_3_1"; + this.rb_3_1.ReadOnly = true; + this.rb_3_1.Size = new System.Drawing.Size(144, 128); + this.rb_3_1.TabIndex = 0; + this.rb_3_1.TabStop = false; + this.rb_3_1.Text = ""; + // + // panel28 + // + this.panel28.Controls.Add(this.lbl_3_2); + this.panel28.Controls.Add(this.lbl_Day_3_2); + this.panel28.Controls.Add(this.rb_3_2); + this.panel28.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel28.Location = new System.Drawing.Point(159, 343); + this.panel28.Name = "panel28"; + this.panel28.Size = new System.Drawing.Size(187, 143); + this.panel28.TabIndex = 15; + // + // lbl_3_2 + // + this.lbl_3_2.AutoSize = true; + this.lbl_3_2.Location = new System.Drawing.Point(80, 1); + this.lbl_3_2.Name = "lbl_3_2"; + this.lbl_3_2.Size = new System.Drawing.Size(38, 12); + this.lbl_3_2.TabIndex = 1; + this.lbl_3_2.Text = "label8"; + this.lbl_3_2.Visible = false; + // + // lbl_Day_3_2 + // + this.lbl_Day_3_2.AutoSize = true; + this.lbl_Day_3_2.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_3_2.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_3_2.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_3_2.Name = "lbl_Day_3_2"; + this.lbl_Day_3_2.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_3_2.TabIndex = 0; + this.lbl_Day_3_2.Text = "0"; + // + // rb_3_2 + // + this.rb_3_2.BackColor = System.Drawing.SystemColors.Control; + this.rb_3_2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_3_2.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_3_2.Location = new System.Drawing.Point(0, 15); + this.rb_3_2.Name = "rb_3_2"; + this.rb_3_2.ReadOnly = true; + this.rb_3_2.Size = new System.Drawing.Size(187, 128); + this.rb_3_2.TabIndex = 0; + this.rb_3_2.TabStop = false; + this.rb_3_2.Text = ""; + // + // panel27 + // + this.panel27.Controls.Add(this.lbl_3_3); + this.panel27.Controls.Add(this.lbl_Day_3_3); + this.panel27.Controls.Add(this.rb_3_3); + this.panel27.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel27.Location = new System.Drawing.Point(355, 343); + this.panel27.Name = "panel27"; + this.panel27.Size = new System.Drawing.Size(187, 143); + this.panel27.TabIndex = 15; + // + // lbl_3_3 + // + this.lbl_3_3.AutoSize = true; + this.lbl_3_3.Location = new System.Drawing.Point(81, 1); + this.lbl_3_3.Name = "lbl_3_3"; + this.lbl_3_3.Size = new System.Drawing.Size(38, 12); + this.lbl_3_3.TabIndex = 1; + this.lbl_3_3.Text = "label8"; + this.lbl_3_3.Visible = false; + // + // lbl_Day_3_3 + // + this.lbl_Day_3_3.AutoSize = true; + this.lbl_Day_3_3.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_3_3.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_3_3.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_3_3.Name = "lbl_Day_3_3"; + this.lbl_Day_3_3.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_3_3.TabIndex = 0; + this.lbl_Day_3_3.Text = "0"; + // + // rb_3_3 + // + this.rb_3_3.BackColor = System.Drawing.SystemColors.Control; + this.rb_3_3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_3_3.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_3_3.Location = new System.Drawing.Point(0, 15); + this.rb_3_3.Name = "rb_3_3"; + this.rb_3_3.ReadOnly = true; + this.rb_3_3.Size = new System.Drawing.Size(187, 128); + this.rb_3_3.TabIndex = 0; + this.rb_3_3.TabStop = false; + this.rb_3_3.Text = ""; + // + // panel26 + // + this.panel26.Controls.Add(this.lbl_3_4); + this.panel26.Controls.Add(this.lbl_Day_3_4); + this.panel26.Controls.Add(this.rb_3_4); + this.panel26.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel26.Location = new System.Drawing.Point(551, 343); + this.panel26.Name = "panel26"; + this.panel26.Size = new System.Drawing.Size(187, 143); + this.panel26.TabIndex = 15; + // + // lbl_3_4 + // + this.lbl_3_4.AutoSize = true; + this.lbl_3_4.Location = new System.Drawing.Point(82, 1); + this.lbl_3_4.Name = "lbl_3_4"; + this.lbl_3_4.Size = new System.Drawing.Size(38, 12); + this.lbl_3_4.TabIndex = 1; + this.lbl_3_4.Text = "label8"; + this.lbl_3_4.Visible = false; + // + // lbl_Day_3_4 + // + this.lbl_Day_3_4.AutoSize = true; + this.lbl_Day_3_4.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_3_4.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_3_4.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_3_4.Name = "lbl_Day_3_4"; + this.lbl_Day_3_4.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_3_4.TabIndex = 0; + this.lbl_Day_3_4.Text = "0"; + // + // rb_3_4 + // + this.rb_3_4.BackColor = System.Drawing.SystemColors.Control; + this.rb_3_4.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_3_4.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_3_4.Location = new System.Drawing.Point(0, 15); + this.rb_3_4.Name = "rb_3_4"; + this.rb_3_4.ReadOnly = true; + this.rb_3_4.Size = new System.Drawing.Size(187, 128); + this.rb_3_4.TabIndex = 0; + this.rb_3_4.TabStop = false; + this.rb_3_4.Text = ""; + // + // panel25 + // + this.panel25.Controls.Add(this.lbl_2_4); + this.panel25.Controls.Add(this.lbl_Day_2_4); + this.panel25.Controls.Add(this.rb_2_4); + this.panel25.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel25.Location = new System.Drawing.Point(551, 191); + this.panel25.Name = "panel25"; + this.panel25.Size = new System.Drawing.Size(187, 143); + this.panel25.TabIndex = 15; + // + // lbl_2_4 + // + this.lbl_2_4.AutoSize = true; + this.lbl_2_4.Location = new System.Drawing.Point(82, 1); + this.lbl_2_4.Name = "lbl_2_4"; + this.lbl_2_4.Size = new System.Drawing.Size(38, 12); + this.lbl_2_4.TabIndex = 1; + this.lbl_2_4.Text = "label8"; + this.lbl_2_4.Visible = false; + // + // lbl_Day_2_4 + // + this.lbl_Day_2_4.AutoSize = true; + this.lbl_Day_2_4.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_2_4.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_2_4.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_2_4.Name = "lbl_Day_2_4"; + this.lbl_Day_2_4.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_2_4.TabIndex = 0; + this.lbl_Day_2_4.Text = "0"; + // + // rb_2_4 + // + this.rb_2_4.BackColor = System.Drawing.SystemColors.Control; + this.rb_2_4.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_2_4.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_2_4.Location = new System.Drawing.Point(0, 15); + this.rb_2_4.Name = "rb_2_4"; + this.rb_2_4.ReadOnly = true; + this.rb_2_4.Size = new System.Drawing.Size(187, 128); + this.rb_2_4.TabIndex = 0; + this.rb_2_4.TabStop = false; + this.rb_2_4.Text = ""; + // + // panel24 + // + this.panel24.Controls.Add(this.lbl_2_3); + this.panel24.Controls.Add(this.lbl_Day_2_3); + this.panel24.Controls.Add(this.rb_2_3); + this.panel24.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel24.Location = new System.Drawing.Point(355, 191); + this.panel24.Name = "panel24"; + this.panel24.Size = new System.Drawing.Size(187, 143); + this.panel24.TabIndex = 15; + // + // lbl_2_3 + // + this.lbl_2_3.AutoSize = true; + this.lbl_2_3.Location = new System.Drawing.Point(81, 1); + this.lbl_2_3.Name = "lbl_2_3"; + this.lbl_2_3.Size = new System.Drawing.Size(38, 12); + this.lbl_2_3.TabIndex = 1; + this.lbl_2_3.Text = "label8"; + this.lbl_2_3.Visible = false; + // + // lbl_Day_2_3 + // + this.lbl_Day_2_3.AutoSize = true; + this.lbl_Day_2_3.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_2_3.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_2_3.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_2_3.Name = "lbl_Day_2_3"; + this.lbl_Day_2_3.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_2_3.TabIndex = 0; + this.lbl_Day_2_3.Text = "0"; + // + // rb_2_3 + // + this.rb_2_3.BackColor = System.Drawing.SystemColors.Control; + this.rb_2_3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_2_3.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_2_3.Location = new System.Drawing.Point(0, 15); + this.rb_2_3.Name = "rb_2_3"; + this.rb_2_3.ReadOnly = true; + this.rb_2_3.Size = new System.Drawing.Size(187, 128); + this.rb_2_3.TabIndex = 0; + this.rb_2_3.TabStop = false; + this.rb_2_3.Text = ""; + // + // panel23 + // + this.panel23.Controls.Add(this.lbl_2_2); + this.panel23.Controls.Add(this.lbl_Day_2_2); + this.panel23.Controls.Add(this.rb_2_2); + this.panel23.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel23.Location = new System.Drawing.Point(159, 191); + this.panel23.Name = "panel23"; + this.panel23.Size = new System.Drawing.Size(187, 143); + this.panel23.TabIndex = 15; + // + // lbl_2_2 + // + this.lbl_2_2.AutoSize = true; + this.lbl_2_2.Location = new System.Drawing.Point(79, 1); + this.lbl_2_2.Name = "lbl_2_2"; + this.lbl_2_2.Size = new System.Drawing.Size(38, 12); + this.lbl_2_2.TabIndex = 1; + this.lbl_2_2.Text = "label8"; + this.lbl_2_2.Visible = false; + // + // lbl_Day_2_2 + // + this.lbl_Day_2_2.AutoSize = true; + this.lbl_Day_2_2.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_2_2.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_2_2.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_2_2.Name = "lbl_Day_2_2"; + this.lbl_Day_2_2.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_2_2.TabIndex = 0; + this.lbl_Day_2_2.Text = "0"; + // + // rb_2_2 + // + this.rb_2_2.BackColor = System.Drawing.SystemColors.Control; + this.rb_2_2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_2_2.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_2_2.Location = new System.Drawing.Point(0, 15); + this.rb_2_2.Name = "rb_2_2"; + this.rb_2_2.ReadOnly = true; + this.rb_2_2.Size = new System.Drawing.Size(187, 128); + this.rb_2_2.TabIndex = 0; + this.rb_2_2.TabStop = false; + this.rb_2_2.Text = ""; + // + // panel21 + // + this.panel21.BackColor = System.Drawing.Color.LightCoral; + this.panel21.Controls.Add(this.lbl_2_1); + this.panel21.Controls.Add(this.label14); + this.panel21.Controls.Add(this.lbl_Day_2_1); + this.panel21.Controls.Add(this.rb_2_1); + this.panel21.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel21.Location = new System.Drawing.Point(6, 191); + this.panel21.Name = "panel21"; + this.panel21.Size = new System.Drawing.Size(144, 143); + this.panel21.TabIndex = 15; + // + // lbl_2_1 + // + this.lbl_2_1.AutoSize = true; + this.lbl_2_1.Location = new System.Drawing.Point(58, 1); + this.lbl_2_1.Name = "lbl_2_1"; + this.lbl_2_1.Size = new System.Drawing.Size(38, 12); + this.lbl_2_1.TabIndex = 1; + this.lbl_2_1.Text = "label8"; + this.lbl_2_1.Visible = false; + // + // label14 + // + this.label14.AutoSize = true; + this.label14.Location = new System.Drawing.Point(1216, 3); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(38, 12); + this.label14.TabIndex = 1; + this.label14.Text = "label8"; + // + // lbl_Day_2_1 + // + this.lbl_Day_2_1.AutoSize = true; + this.lbl_Day_2_1.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_2_1.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_2_1.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_2_1.Name = "lbl_Day_2_1"; + this.lbl_Day_2_1.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_2_1.TabIndex = 0; + this.lbl_Day_2_1.Text = "0"; + // + // rb_2_1 + // + this.rb_2_1.BackColor = System.Drawing.Color.LightCoral; + this.rb_2_1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_2_1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_2_1.Location = new System.Drawing.Point(0, 15); + this.rb_2_1.Name = "rb_2_1"; + this.rb_2_1.ReadOnly = true; + this.rb_2_1.Size = new System.Drawing.Size(144, 128); + this.rb_2_1.TabIndex = 0; + this.rb_2_1.TabStop = false; + this.rb_2_1.Text = ""; + // + // panel22 + // + this.panel22.Controls.Add(this.lbl_1_3); + this.panel22.Controls.Add(this.lbl_Day_1_3); + this.panel22.Controls.Add(this.rb_1_3); + this.panel22.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel22.Location = new System.Drawing.Point(355, 39); + this.panel22.Name = "panel22"; + this.panel22.Size = new System.Drawing.Size(187, 143); + this.panel22.TabIndex = 15; + // + // lbl_1_3 + // + this.lbl_1_3.AutoSize = true; + this.lbl_1_3.Location = new System.Drawing.Point(81, 1); + this.lbl_1_3.Name = "lbl_1_3"; + this.lbl_1_3.Size = new System.Drawing.Size(38, 12); + this.lbl_1_3.TabIndex = 1; + this.lbl_1_3.Text = "label8"; + this.lbl_1_3.Visible = false; + // + // lbl_Day_1_3 + // + this.lbl_Day_1_3.AutoSize = true; + this.lbl_Day_1_3.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_1_3.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_1_3.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_1_3.Name = "lbl_Day_1_3"; + this.lbl_Day_1_3.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_1_3.TabIndex = 0; + this.lbl_Day_1_3.Text = "0"; + // + // rb_1_3 + // + this.rb_1_3.BackColor = System.Drawing.SystemColors.Control; + this.rb_1_3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_1_3.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_1_3.Location = new System.Drawing.Point(0, 15); + this.rb_1_3.Name = "rb_1_3"; + this.rb_1_3.ReadOnly = true; + this.rb_1_3.Size = new System.Drawing.Size(187, 128); + this.rb_1_3.TabIndex = 0; + this.rb_1_3.TabStop = false; + this.rb_1_3.Text = ""; + // + // panel18 + // + this.panel18.BackColor = System.Drawing.Color.LightCoral; + this.panel18.Controls.Add(this.lbl_1_1); + this.panel18.Controls.Add(this.lbl_Day_1_1); + this.panel18.Controls.Add(this.rb_1_1); + this.panel18.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel18.Location = new System.Drawing.Point(6, 39); + this.panel18.Name = "panel18"; + this.panel18.Size = new System.Drawing.Size(144, 143); + this.panel18.TabIndex = 15; + // + // lbl_1_1 + // + this.lbl_1_1.AutoSize = true; + this.lbl_1_1.Location = new System.Drawing.Point(58, 1); + this.lbl_1_1.Name = "lbl_1_1"; + this.lbl_1_1.Size = new System.Drawing.Size(38, 12); + this.lbl_1_1.TabIndex = 1; + this.lbl_1_1.Text = "label8"; + this.lbl_1_1.Visible = false; + // + // lbl_Day_1_1 + // + this.lbl_Day_1_1.AutoSize = true; + this.lbl_Day_1_1.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_1_1.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_1_1.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_1_1.Name = "lbl_Day_1_1"; + this.lbl_Day_1_1.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_1_1.TabIndex = 0; + this.lbl_Day_1_1.Text = "0"; + // + // rb_1_1 + // + this.rb_1_1.BackColor = System.Drawing.Color.LightCoral; + this.rb_1_1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_1_1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_1_1.Location = new System.Drawing.Point(0, 15); + this.rb_1_1.Name = "rb_1_1"; + this.rb_1_1.ReadOnly = true; + this.rb_1_1.Size = new System.Drawing.Size(144, 128); + this.rb_1_1.TabIndex = 0; + this.rb_1_1.TabStop = false; + this.rb_1_1.Text = ""; + // + // panel1 + // + this.panel1.Controls.Add(this.lbl_1_5); + this.panel1.Controls.Add(this.lbl_Day_1_5); + this.panel1.Controls.Add(this.rb_1_5); + this.panel1.Location = new System.Drawing.Point(747, 39); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(181, 143); + this.panel1.TabIndex = 1; + // + // lbl_1_5 + // + this.lbl_1_5.AutoSize = true; + this.lbl_1_5.Location = new System.Drawing.Point(82, 1); + this.lbl_1_5.Name = "lbl_1_5"; + this.lbl_1_5.Size = new System.Drawing.Size(38, 12); + this.lbl_1_5.TabIndex = 1; + this.lbl_1_5.Text = "label8"; + this.lbl_1_5.Visible = false; + // + // lbl_Day_1_5 + // + this.lbl_Day_1_5.AutoSize = true; + this.lbl_Day_1_5.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_1_5.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_1_5.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_1_5.Name = "lbl_Day_1_5"; + this.lbl_Day_1_5.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_1_5.TabIndex = 0; + this.lbl_Day_1_5.Text = "0"; + // + // rb_1_5 + // + this.rb_1_5.BackColor = System.Drawing.SystemColors.Control; + this.rb_1_5.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_1_5.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_1_5.Location = new System.Drawing.Point(0, 15); + this.rb_1_5.Name = "rb_1_5"; + this.rb_1_5.ReadOnly = true; + this.rb_1_5.Size = new System.Drawing.Size(181, 128); + this.rb_1_5.TabIndex = 0; + this.rb_1_5.TabStop = false; + this.rb_1_5.Text = ""; + // + // panel2 + // + this.panel2.BackColor = System.Drawing.Color.LightCoral; + this.panel2.Controls.Add(this.label1); + this.panel2.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel2.Location = new System.Drawing.Point(6, 6); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(144, 24); + this.panel2.TabIndex = 2; + // // label1 // this.label1.AutoSize = true; - this.label1.Location = new System.Drawing.Point(359, 219); + this.label1.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label1.Location = new System.Drawing.Point(58, 4); this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(83, 12); - this.label1.TabIndex = 8; - this.label1.Text = "편의기능_달력"; + this.label1.Size = new System.Drawing.Size(25, 16); + this.label1.TabIndex = 0; + this.label1.Text = "일"; + // + // panel3 + // + this.panel3.BackColor = System.Drawing.SystemColors.ControlLight; + this.panel3.Controls.Add(this.label2); + this.panel3.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel3.Location = new System.Drawing.Point(159, 6); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(187, 24); + this.panel3.TabIndex = 2; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label2.Location = new System.Drawing.Point(80, 4); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(25, 16); + this.label2.TabIndex = 0; + this.label2.Text = "월"; + // + // panel4 + // + this.panel4.BackColor = System.Drawing.SystemColors.ControlLight; + this.panel4.Controls.Add(this.label3); + this.panel4.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel4.Location = new System.Drawing.Point(355, 6); + this.panel4.Name = "panel4"; + this.panel4.Size = new System.Drawing.Size(187, 24); + this.panel4.TabIndex = 2; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label3.Location = new System.Drawing.Point(81, 4); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(25, 16); + this.label3.TabIndex = 0; + this.label3.Text = "화"; + // + // panel5 + // + this.panel5.BackColor = System.Drawing.SystemColors.ControlLight; + this.panel5.Controls.Add(this.label4); + this.panel5.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel5.Location = new System.Drawing.Point(551, 6); + this.panel5.Name = "panel5"; + this.panel5.Size = new System.Drawing.Size(187, 24); + this.panel5.TabIndex = 2; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label4.Location = new System.Drawing.Point(82, 4); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(25, 16); + this.label4.TabIndex = 0; + this.label4.Text = "수"; + // + // panel6 + // + this.panel6.BackColor = System.Drawing.SystemColors.ControlLight; + this.panel6.Controls.Add(this.label5); + this.panel6.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel6.Location = new System.Drawing.Point(747, 6); + this.panel6.Name = "panel6"; + this.panel6.Size = new System.Drawing.Size(187, 24); + this.panel6.TabIndex = 3; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label5.Location = new System.Drawing.Point(82, 4); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(25, 16); + this.label5.TabIndex = 0; + this.label5.Text = "목"; + // + // panel7 + // + this.panel7.BackColor = System.Drawing.SystemColors.ControlLight; + this.panel7.Controls.Add(this.label6); + this.panel7.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel7.Location = new System.Drawing.Point(943, 6); + this.panel7.Name = "panel7"; + this.panel7.Size = new System.Drawing.Size(187, 24); + this.panel7.TabIndex = 4; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label6.Location = new System.Drawing.Point(83, 4); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(25, 16); + this.label6.TabIndex = 0; + this.label6.Text = "금"; + // + // panel8 + // + this.panel8.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.panel8.Controls.Add(this.label7); + this.panel8.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel8.Location = new System.Drawing.Point(1139, 6); + this.panel8.Name = "panel8"; + this.panel8.Size = new System.Drawing.Size(192, 24); + this.panel8.TabIndex = 5; + // + // label7 + // + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("굴림", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label7.Location = new System.Drawing.Point(82, 4); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(25, 16); + this.label7.TabIndex = 0; + this.label7.Text = "토"; + // + // panel9 + // + this.panel9.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.panel9.Controls.Add(this.lbl_1_7); + this.panel9.Controls.Add(this.lbl_Day_1_7); + this.panel9.Controls.Add(this.rb_1_7); + this.panel9.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel9.Location = new System.Drawing.Point(1139, 39); + this.panel9.Name = "panel9"; + this.panel9.Size = new System.Drawing.Size(192, 143); + this.panel9.TabIndex = 6; + // + // lbl_1_7 + // + this.lbl_1_7.AutoSize = true; + this.lbl_1_7.Location = new System.Drawing.Point(82, 1); + this.lbl_1_7.Name = "lbl_1_7"; + this.lbl_1_7.Size = new System.Drawing.Size(38, 12); + this.lbl_1_7.TabIndex = 1; + this.lbl_1_7.Text = "label8"; + this.lbl_1_7.Visible = false; + // + // lbl_Day_1_7 + // + this.lbl_Day_1_7.AutoSize = true; + this.lbl_Day_1_7.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_1_7.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_1_7.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_1_7.Name = "lbl_Day_1_7"; + this.lbl_Day_1_7.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_1_7.TabIndex = 0; + this.lbl_Day_1_7.Text = "0"; + // + // rb_1_7 + // + this.rb_1_7.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.rb_1_7.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_1_7.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_1_7.Location = new System.Drawing.Point(0, 15); + this.rb_1_7.Name = "rb_1_7"; + this.rb_1_7.ReadOnly = true; + this.rb_1_7.Size = new System.Drawing.Size(192, 128); + this.rb_1_7.TabIndex = 0; + this.rb_1_7.TabStop = false; + this.rb_1_7.Text = ""; + // + // panel10 + // + this.panel10.Controls.Add(this.lbl_1_6); + this.panel10.Controls.Add(this.lbl_Day_1_6); + this.panel10.Controls.Add(this.rb_1_6); + this.panel10.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel10.Location = new System.Drawing.Point(943, 39); + this.panel10.Name = "panel10"; + this.panel10.Size = new System.Drawing.Size(187, 143); + this.panel10.TabIndex = 7; + // + // lbl_1_6 + // + this.lbl_1_6.AutoSize = true; + this.lbl_1_6.Location = new System.Drawing.Point(83, 1); + this.lbl_1_6.Name = "lbl_1_6"; + this.lbl_1_6.Size = new System.Drawing.Size(38, 12); + this.lbl_1_6.TabIndex = 1; + this.lbl_1_6.Text = "label8"; + this.lbl_1_6.Visible = false; + // + // lbl_Day_1_6 + // + this.lbl_Day_1_6.AutoSize = true; + this.lbl_Day_1_6.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_1_6.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_1_6.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_1_6.Name = "lbl_Day_1_6"; + this.lbl_Day_1_6.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_1_6.TabIndex = 0; + this.lbl_Day_1_6.Text = "0"; + // + // rb_1_6 + // + this.rb_1_6.BackColor = System.Drawing.SystemColors.Control; + this.rb_1_6.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_1_6.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_1_6.Location = new System.Drawing.Point(0, 15); + this.rb_1_6.Name = "rb_1_6"; + this.rb_1_6.ReadOnly = true; + this.rb_1_6.Size = new System.Drawing.Size(187, 128); + this.rb_1_6.TabIndex = 0; + this.rb_1_6.TabStop = false; + this.rb_1_6.Text = ""; + // + // panel13 + // + this.panel13.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.panel13.Controls.Add(this.lbl_3_7); + this.panel13.Controls.Add(this.lbl_Day_3_7); + this.panel13.Controls.Add(this.rb_3_7); + this.panel13.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel13.Location = new System.Drawing.Point(1139, 343); + this.panel13.Name = "panel13"; + this.panel13.Size = new System.Drawing.Size(192, 143); + this.panel13.TabIndex = 10; + // + // lbl_3_7 + // + this.lbl_3_7.AutoSize = true; + this.lbl_3_7.Location = new System.Drawing.Point(82, 1); + this.lbl_3_7.Name = "lbl_3_7"; + this.lbl_3_7.Size = new System.Drawing.Size(38, 12); + this.lbl_3_7.TabIndex = 1; + this.lbl_3_7.Text = "label8"; + this.lbl_3_7.Visible = false; + // + // lbl_Day_3_7 + // + this.lbl_Day_3_7.AutoSize = true; + this.lbl_Day_3_7.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_3_7.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_3_7.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_3_7.Name = "lbl_Day_3_7"; + this.lbl_Day_3_7.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_3_7.TabIndex = 0; + this.lbl_Day_3_7.Text = "0"; + // + // rb_3_7 + // + this.rb_3_7.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.rb_3_7.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_3_7.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_3_7.Location = new System.Drawing.Point(0, 15); + this.rb_3_7.Name = "rb_3_7"; + this.rb_3_7.ReadOnly = true; + this.rb_3_7.Size = new System.Drawing.Size(192, 128); + this.rb_3_7.TabIndex = 0; + this.rb_3_7.TabStop = false; + this.rb_3_7.Text = ""; + // + // panel14 + // + this.panel14.Controls.Add(this.lbl_3_6); + this.panel14.Controls.Add(this.lbl_Day_3_6); + this.panel14.Controls.Add(this.rb_3_6); + this.panel14.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel14.Location = new System.Drawing.Point(943, 343); + this.panel14.Name = "panel14"; + this.panel14.Size = new System.Drawing.Size(187, 143); + this.panel14.TabIndex = 11; + // + // lbl_3_6 + // + this.lbl_3_6.AutoSize = true; + this.lbl_3_6.Location = new System.Drawing.Point(83, 1); + this.lbl_3_6.Name = "lbl_3_6"; + this.lbl_3_6.Size = new System.Drawing.Size(38, 12); + this.lbl_3_6.TabIndex = 1; + this.lbl_3_6.Text = "label8"; + this.lbl_3_6.Visible = false; + // + // lbl_Day_3_6 + // + this.lbl_Day_3_6.AutoSize = true; + this.lbl_Day_3_6.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_3_6.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_3_6.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_3_6.Name = "lbl_Day_3_6"; + this.lbl_Day_3_6.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_3_6.TabIndex = 0; + this.lbl_Day_3_6.Text = "0"; + // + // rb_3_6 + // + this.rb_3_6.BackColor = System.Drawing.SystemColors.Control; + this.rb_3_6.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_3_6.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_3_6.Location = new System.Drawing.Point(0, 15); + this.rb_3_6.Name = "rb_3_6"; + this.rb_3_6.ReadOnly = true; + this.rb_3_6.Size = new System.Drawing.Size(187, 128); + this.rb_3_6.TabIndex = 0; + this.rb_3_6.TabStop = false; + this.rb_3_6.Text = ""; + // + // panel15 + // + this.panel15.Controls.Add(this.lbl_2_5); + this.panel15.Controls.Add(this.lbl_Day_2_5); + this.panel15.Controls.Add(this.rb_2_5); + this.panel15.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel15.Location = new System.Drawing.Point(747, 191); + this.panel15.Name = "panel15"; + this.panel15.Size = new System.Drawing.Size(187, 143); + this.panel15.TabIndex = 12; + // + // lbl_2_5 + // + this.lbl_2_5.AutoSize = true; + this.lbl_2_5.Location = new System.Drawing.Point(82, 1); + this.lbl_2_5.Name = "lbl_2_5"; + this.lbl_2_5.Size = new System.Drawing.Size(38, 12); + this.lbl_2_5.TabIndex = 1; + this.lbl_2_5.Text = "label8"; + this.lbl_2_5.Visible = false; + // + // lbl_Day_2_5 + // + this.lbl_Day_2_5.AutoSize = true; + this.lbl_Day_2_5.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_2_5.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_2_5.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_2_5.Name = "lbl_Day_2_5"; + this.lbl_Day_2_5.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_2_5.TabIndex = 0; + this.lbl_Day_2_5.Text = "0"; + // + // rb_2_5 + // + this.rb_2_5.BackColor = System.Drawing.SystemColors.Control; + this.rb_2_5.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_2_5.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_2_5.Location = new System.Drawing.Point(0, 15); + this.rb_2_5.Name = "rb_2_5"; + this.rb_2_5.ReadOnly = true; + this.rb_2_5.Size = new System.Drawing.Size(187, 128); + this.rb_2_5.TabIndex = 0; + this.rb_2_5.TabStop = false; + this.rb_2_5.Text = ""; + // + // panel16 + // + this.panel16.Controls.Add(this.lbl_3_5); + this.panel16.Controls.Add(this.lbl_Day_3_5); + this.panel16.Controls.Add(this.rb_3_5); + this.panel16.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel16.Location = new System.Drawing.Point(747, 343); + this.panel16.Name = "panel16"; + this.panel16.Size = new System.Drawing.Size(187, 143); + this.panel16.TabIndex = 13; + // + // lbl_3_5 + // + this.lbl_3_5.AutoSize = true; + this.lbl_3_5.Location = new System.Drawing.Point(82, 1); + this.lbl_3_5.Name = "lbl_3_5"; + this.lbl_3_5.Size = new System.Drawing.Size(38, 12); + this.lbl_3_5.TabIndex = 1; + this.lbl_3_5.Text = "label8"; + this.lbl_3_5.Visible = false; + // + // lbl_Day_3_5 + // + this.lbl_Day_3_5.AutoSize = true; + this.lbl_Day_3_5.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_3_5.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_3_5.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_3_5.Name = "lbl_Day_3_5"; + this.lbl_Day_3_5.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_3_5.TabIndex = 0; + this.lbl_Day_3_5.Text = "0"; + // + // rb_3_5 + // + this.rb_3_5.BackColor = System.Drawing.SystemColors.Control; + this.rb_3_5.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_3_5.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_3_5.Location = new System.Drawing.Point(0, 15); + this.rb_3_5.Name = "rb_3_5"; + this.rb_3_5.ReadOnly = true; + this.rb_3_5.Size = new System.Drawing.Size(187, 128); + this.rb_3_5.TabIndex = 0; + this.rb_3_5.TabStop = false; + this.rb_3_5.Text = ""; + // + // panel17 + // + this.panel17.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.panel17.Controls.Add(this.lbl_4_7); + this.panel17.Controls.Add(this.lbl_Day_4_7); + this.panel17.Controls.Add(this.rb_4_7); + this.panel17.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel17.Location = new System.Drawing.Point(1139, 495); + this.panel17.Name = "panel17"; + this.panel17.Size = new System.Drawing.Size(192, 143); + this.panel17.TabIndex = 14; + // + // lbl_4_7 + // + this.lbl_4_7.AutoSize = true; + this.lbl_4_7.Location = new System.Drawing.Point(82, 1); + this.lbl_4_7.Name = "lbl_4_7"; + this.lbl_4_7.Size = new System.Drawing.Size(38, 12); + this.lbl_4_7.TabIndex = 1; + this.lbl_4_7.Text = "label8"; + this.lbl_4_7.Visible = false; + // + // lbl_Day_4_7 + // + this.lbl_Day_4_7.AutoSize = true; + this.lbl_Day_4_7.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_4_7.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_4_7.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_4_7.Name = "lbl_Day_4_7"; + this.lbl_Day_4_7.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_4_7.TabIndex = 0; + this.lbl_Day_4_7.Text = "0"; + // + // rb_4_7 + // + this.rb_4_7.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.rb_4_7.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_4_7.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_4_7.Location = new System.Drawing.Point(0, 15); + this.rb_4_7.Name = "rb_4_7"; + this.rb_4_7.ReadOnly = true; + this.rb_4_7.Size = new System.Drawing.Size(192, 128); + this.rb_4_7.TabIndex = 0; + this.rb_4_7.TabStop = false; + this.rb_4_7.Text = ""; + // + // panel36 + // + this.panel36.BackColor = System.Drawing.Color.LightCoral; + this.panel36.Controls.Add(this.lbl_5_1); + this.panel36.Controls.Add(this.lbl_Day_5_1); + this.panel36.Controls.Add(this.rb_5_1); + this.panel36.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel36.Location = new System.Drawing.Point(6, 647); + this.panel36.Name = "panel36"; + this.panel36.Size = new System.Drawing.Size(144, 146); + this.panel36.TabIndex = 17; + // + // lbl_5_1 + // + this.lbl_5_1.AutoSize = true; + this.lbl_5_1.Location = new System.Drawing.Point(58, 1); + this.lbl_5_1.Name = "lbl_5_1"; + this.lbl_5_1.Size = new System.Drawing.Size(38, 12); + this.lbl_5_1.TabIndex = 1; + this.lbl_5_1.Text = "label8"; + this.lbl_5_1.Visible = false; + // + // lbl_Day_5_1 + // + this.lbl_Day_5_1.AutoSize = true; + this.lbl_Day_5_1.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_5_1.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_5_1.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_5_1.Name = "lbl_Day_5_1"; + this.lbl_Day_5_1.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_5_1.TabIndex = 0; + this.lbl_Day_5_1.Text = "0"; + // + // rb_5_1 + // + this.rb_5_1.BackColor = System.Drawing.Color.LightCoral; + this.rb_5_1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_5_1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_5_1.Location = new System.Drawing.Point(0, 18); + this.rb_5_1.Name = "rb_5_1"; + this.rb_5_1.ReadOnly = true; + this.rb_5_1.Size = new System.Drawing.Size(144, 128); + this.rb_5_1.TabIndex = 0; + this.rb_5_1.TabStop = false; + this.rb_5_1.Text = ""; + // + // panel37 + // + this.panel37.Controls.Add(this.lbl_5_2); + this.panel37.Controls.Add(this.lbl_Day_5_2); + this.panel37.Controls.Add(this.rb_5_2); + this.panel37.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel37.Location = new System.Drawing.Point(159, 647); + this.panel37.Name = "panel37"; + this.panel37.Size = new System.Drawing.Size(187, 146); + this.panel37.TabIndex = 17; + // + // lbl_5_2 + // + this.lbl_5_2.AutoSize = true; + this.lbl_5_2.Location = new System.Drawing.Point(80, 1); + this.lbl_5_2.Name = "lbl_5_2"; + this.lbl_5_2.Size = new System.Drawing.Size(38, 12); + this.lbl_5_2.TabIndex = 1; + this.lbl_5_2.Text = "label8"; + this.lbl_5_2.Visible = false; + // + // lbl_Day_5_2 + // + this.lbl_Day_5_2.AutoSize = true; + this.lbl_Day_5_2.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_5_2.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_5_2.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_5_2.Name = "lbl_Day_5_2"; + this.lbl_Day_5_2.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_5_2.TabIndex = 0; + this.lbl_Day_5_2.Text = "0"; + // + // rb_5_2 + // + this.rb_5_2.BackColor = System.Drawing.SystemColors.Control; + this.rb_5_2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_5_2.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_5_2.Location = new System.Drawing.Point(0, 18); + this.rb_5_2.Name = "rb_5_2"; + this.rb_5_2.ReadOnly = true; + this.rb_5_2.Size = new System.Drawing.Size(187, 128); + this.rb_5_2.TabIndex = 0; + this.rb_5_2.TabStop = false; + this.rb_5_2.Text = ""; + // + // panel38 + // + this.panel38.Controls.Add(this.lbl_5_3); + this.panel38.Controls.Add(this.lbl_Day_5_3); + this.panel38.Controls.Add(this.rb_5_3); + this.panel38.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel38.Location = new System.Drawing.Point(355, 647); + this.panel38.Name = "panel38"; + this.panel38.Size = new System.Drawing.Size(187, 146); + this.panel38.TabIndex = 17; + // + // lbl_5_3 + // + this.lbl_5_3.AutoSize = true; + this.lbl_5_3.Location = new System.Drawing.Point(81, 1); + this.lbl_5_3.Name = "lbl_5_3"; + this.lbl_5_3.Size = new System.Drawing.Size(38, 12); + this.lbl_5_3.TabIndex = 1; + this.lbl_5_3.Text = "label8"; + this.lbl_5_3.Visible = false; + // + // lbl_Day_5_3 + // + this.lbl_Day_5_3.AutoSize = true; + this.lbl_Day_5_3.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_5_3.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_5_3.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_5_3.Name = "lbl_Day_5_3"; + this.lbl_Day_5_3.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_5_3.TabIndex = 0; + this.lbl_Day_5_3.Text = "0"; + // + // rb_5_3 + // + this.rb_5_3.BackColor = System.Drawing.SystemColors.Control; + this.rb_5_3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_5_3.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_5_3.Location = new System.Drawing.Point(0, 18); + this.rb_5_3.Name = "rb_5_3"; + this.rb_5_3.ReadOnly = true; + this.rb_5_3.Size = new System.Drawing.Size(187, 128); + this.rb_5_3.TabIndex = 0; + this.rb_5_3.TabStop = false; + this.rb_5_3.Text = ""; + // + // panel39 + // + this.panel39.Controls.Add(this.lbl_5_4); + this.panel39.Controls.Add(this.lbl_Day_5_4); + this.panel39.Controls.Add(this.rb_5_4); + this.panel39.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel39.Location = new System.Drawing.Point(551, 647); + this.panel39.Name = "panel39"; + this.panel39.Size = new System.Drawing.Size(187, 146); + this.panel39.TabIndex = 17; + // + // lbl_5_4 + // + this.lbl_5_4.AutoSize = true; + this.lbl_5_4.Location = new System.Drawing.Point(82, 1); + this.lbl_5_4.Name = "lbl_5_4"; + this.lbl_5_4.Size = new System.Drawing.Size(38, 12); + this.lbl_5_4.TabIndex = 1; + this.lbl_5_4.Text = "label8"; + this.lbl_5_4.Visible = false; + // + // lbl_Day_5_4 + // + this.lbl_Day_5_4.AutoSize = true; + this.lbl_Day_5_4.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_5_4.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_5_4.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_5_4.Name = "lbl_Day_5_4"; + this.lbl_Day_5_4.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_5_4.TabIndex = 0; + this.lbl_Day_5_4.Text = "0"; + // + // rb_5_4 + // + this.rb_5_4.BackColor = System.Drawing.SystemColors.Control; + this.rb_5_4.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_5_4.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_5_4.Location = new System.Drawing.Point(0, 18); + this.rb_5_4.Name = "rb_5_4"; + this.rb_5_4.ReadOnly = true; + this.rb_5_4.Size = new System.Drawing.Size(187, 128); + this.rb_5_4.TabIndex = 0; + this.rb_5_4.TabStop = false; + this.rb_5_4.Text = ""; + // + // panel40 + // + this.panel40.Controls.Add(this.lbl_5_5); + this.panel40.Controls.Add(this.lbl_Day_5_5); + this.panel40.Controls.Add(this.rb_5_5); + this.panel40.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel40.Location = new System.Drawing.Point(747, 647); + this.panel40.Name = "panel40"; + this.panel40.Size = new System.Drawing.Size(187, 146); + this.panel40.TabIndex = 17; + // + // lbl_5_5 + // + this.lbl_5_5.AutoSize = true; + this.lbl_5_5.Location = new System.Drawing.Point(82, 1); + this.lbl_5_5.Name = "lbl_5_5"; + this.lbl_5_5.Size = new System.Drawing.Size(38, 12); + this.lbl_5_5.TabIndex = 1; + this.lbl_5_5.Text = "label8"; + this.lbl_5_5.Visible = false; + // + // lbl_Day_5_5 + // + this.lbl_Day_5_5.AutoSize = true; + this.lbl_Day_5_5.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_5_5.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_5_5.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_5_5.Name = "lbl_Day_5_5"; + this.lbl_Day_5_5.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_5_5.TabIndex = 0; + this.lbl_Day_5_5.Text = "0"; + // + // rb_5_5 + // + this.rb_5_5.BackColor = System.Drawing.SystemColors.Control; + this.rb_5_5.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_5_5.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_5_5.Location = new System.Drawing.Point(0, 18); + this.rb_5_5.Name = "rb_5_5"; + this.rb_5_5.ReadOnly = true; + this.rb_5_5.Size = new System.Drawing.Size(187, 128); + this.rb_5_5.TabIndex = 0; + this.rb_5_5.TabStop = false; + this.rb_5_5.Text = ""; + // + // panel41 + // + this.panel41.Controls.Add(this.lbl_5_6); + this.panel41.Controls.Add(this.lbl_Day_5_6); + this.panel41.Controls.Add(this.rb_5_6); + this.panel41.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel41.Location = new System.Drawing.Point(943, 647); + this.panel41.Name = "panel41"; + this.panel41.Size = new System.Drawing.Size(187, 146); + this.panel41.TabIndex = 17; + // + // lbl_5_6 + // + this.lbl_5_6.AutoSize = true; + this.lbl_5_6.Location = new System.Drawing.Point(83, 1); + this.lbl_5_6.Name = "lbl_5_6"; + this.lbl_5_6.Size = new System.Drawing.Size(38, 12); + this.lbl_5_6.TabIndex = 1; + this.lbl_5_6.Text = "label8"; + this.lbl_5_6.Visible = false; + // + // lbl_Day_5_6 + // + this.lbl_Day_5_6.AutoSize = true; + this.lbl_Day_5_6.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_5_6.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_5_6.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_5_6.Name = "lbl_Day_5_6"; + this.lbl_Day_5_6.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_5_6.TabIndex = 0; + this.lbl_Day_5_6.Text = "0"; + // + // rb_5_6 + // + this.rb_5_6.BackColor = System.Drawing.SystemColors.Control; + this.rb_5_6.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_5_6.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_5_6.Location = new System.Drawing.Point(0, 18); + this.rb_5_6.Name = "rb_5_6"; + this.rb_5_6.ReadOnly = true; + this.rb_5_6.Size = new System.Drawing.Size(187, 128); + this.rb_5_6.TabIndex = 0; + this.rb_5_6.TabStop = false; + this.rb_5_6.Text = ""; + // + // panel42 + // + this.panel42.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.panel42.Controls.Add(this.lbl_5_7); + this.panel42.Controls.Add(this.lbl_Day_5_7); + this.panel42.Controls.Add(this.rb_5_7); + this.panel42.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel42.Location = new System.Drawing.Point(1139, 647); + this.panel42.Name = "panel42"; + this.panel42.Size = new System.Drawing.Size(192, 146); + this.panel42.TabIndex = 17; + // + // lbl_5_7 + // + this.lbl_5_7.AutoSize = true; + this.lbl_5_7.Location = new System.Drawing.Point(82, 1); + this.lbl_5_7.Name = "lbl_5_7"; + this.lbl_5_7.Size = new System.Drawing.Size(38, 12); + this.lbl_5_7.TabIndex = 1; + this.lbl_5_7.Text = "label8"; + this.lbl_5_7.Visible = false; + // + // lbl_Day_5_7 + // + this.lbl_Day_5_7.AutoSize = true; + this.lbl_Day_5_7.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_5_7.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_5_7.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_5_7.Name = "lbl_Day_5_7"; + this.lbl_Day_5_7.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_5_7.TabIndex = 0; + this.lbl_Day_5_7.Text = "0"; + // + // rb_5_7 + // + this.rb_5_7.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.rb_5_7.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_5_7.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_5_7.Location = new System.Drawing.Point(0, 18); + this.rb_5_7.Name = "rb_5_7"; + this.rb_5_7.ReadOnly = true; + this.rb_5_7.Size = new System.Drawing.Size(192, 128); + this.rb_5_7.TabIndex = 0; + this.rb_5_7.TabStop = false; + this.rb_5_7.Text = ""; + // + // panel11 + // + this.panel11.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.panel11.Controls.Add(this.lbl_2_7); + this.panel11.Controls.Add(this.lbl_Day_2_7); + this.panel11.Controls.Add(this.rb_2_7); + this.panel11.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel11.Location = new System.Drawing.Point(1139, 191); + this.panel11.Name = "panel11"; + this.panel11.Size = new System.Drawing.Size(192, 143); + this.panel11.TabIndex = 8; + // + // lbl_2_7 + // + this.lbl_2_7.AutoSize = true; + this.lbl_2_7.Location = new System.Drawing.Point(82, 1); + this.lbl_2_7.Name = "lbl_2_7"; + this.lbl_2_7.Size = new System.Drawing.Size(38, 12); + this.lbl_2_7.TabIndex = 1; + this.lbl_2_7.Text = "label8"; + this.lbl_2_7.Visible = false; + // + // lbl_Day_2_7 + // + this.lbl_Day_2_7.AutoSize = true; + this.lbl_Day_2_7.Dock = System.Windows.Forms.DockStyle.Top; + this.lbl_Day_2_7.Font = new System.Drawing.Font("굴림", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Day_2_7.Location = new System.Drawing.Point(0, 0); + this.lbl_Day_2_7.Name = "lbl_Day_2_7"; + this.lbl_Day_2_7.Size = new System.Drawing.Size(16, 15); + this.lbl_Day_2_7.TabIndex = 0; + this.lbl_Day_2_7.Text = "0"; + // + // rb_2_7 + // + this.rb_2_7.BackColor = System.Drawing.SystemColors.ActiveCaption; + this.rb_2_7.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.rb_2_7.Dock = System.Windows.Forms.DockStyle.Bottom; + this.rb_2_7.Location = new System.Drawing.Point(0, 15); + this.rb_2_7.Name = "rb_2_7"; + this.rb_2_7.ReadOnly = true; + this.rb_2_7.Size = new System.Drawing.Size(192, 128); + this.rb_2_7.TabIndex = 0; + this.rb_2_7.TabStop = false; + this.rb_2_7.Text = ""; + // + // btn_close + // + this.btn_close.Location = new System.Drawing.Point(1236, 16); + this.btn_close.Name = "btn_close"; + this.btn_close.Size = new System.Drawing.Size(75, 23); + this.btn_close.TabIndex = 9; + this.btn_close.Text = "닫 기"; + this.btn_close.UseVisualStyleBackColor = true; + this.btn_close.Click += new System.EventHandler(this.btn_close_Click); + // + // lbl_Month + // + this.lbl_Month.AutoSize = true; + this.lbl_Month.Font = new System.Drawing.Font("굴림", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.lbl_Month.Location = new System.Drawing.Point(93, 16); + this.lbl_Month.Name = "lbl_Month"; + this.lbl_Month.Size = new System.Drawing.Size(94, 27); + this.lbl_Month.TabIndex = 2; + this.lbl_Month.Text = "Month"; + // + // rb_all + // + this.rb_all.AutoSize = true; + this.rb_all.Location = new System.Drawing.Point(784, 19); + this.rb_all.Name = "rb_all"; + this.rb_all.Size = new System.Drawing.Size(47, 16); + this.rb_all.TabIndex = 10; + this.rb_all.TabStop = true; + this.rb_all.Text = "전체"; + this.rb_all.UseVisualStyleBackColor = true; + this.rb_all.CheckedChanged += new System.EventHandler(this.rb_all_CheckedChanged); + // + // rb_dly + // + this.rb_dly.AutoSize = true; + this.rb_dly.Location = new System.Drawing.Point(850, 19); + this.rb_dly.Name = "rb_dly"; + this.rb_dly.Size = new System.Drawing.Size(59, 16); + this.rb_dly.TabIndex = 10; + this.rb_dly.TabStop = true; + this.rb_dly.Text = "납품만"; + this.rb_dly.UseVisualStyleBackColor = true; + this.rb_dly.CheckedChanged += new System.EventHandler(this.rb_all_CheckedChanged); + // + // rb_marc + // + this.rb_marc.AutoSize = true; + this.rb_marc.Location = new System.Drawing.Point(928, 19); + this.rb_marc.Name = "rb_marc"; + this.rb_marc.Size = new System.Drawing.Size(59, 16); + this.rb_marc.TabIndex = 10; + this.rb_marc.TabStop = true; + this.rb_marc.Text = "마크만"; + this.rb_marc.UseVisualStyleBackColor = true; + this.rb_marc.CheckedChanged += new System.EventHandler(this.rb_all_CheckedChanged); // // Calendar // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(800, 450); - this.Controls.Add(this.label1); + this.ClientSize = new System.Drawing.Size(1360, 863); + this.Controls.Add(this.rb_marc); + this.Controls.Add(this.rb_dly); + this.Controls.Add(this.rb_all); + this.Controls.Add(this.btn_close); + this.Controls.Add(this.dateTimePicker1); + this.Controls.Add(this.Btn_After); + this.Controls.Add(this.Btn_Before); + this.Controls.Add(this.tableLayoutPanel1); + this.Controls.Add(this.lbl_Month); + this.Controls.Add(this.lbl_Year); this.Name = "Calendar"; - this.Text = "Calendar"; + this.Text = "캘린더"; + this.Load += new System.EventHandler(this.Calendar_Load); + this.tableLayoutPanel1.ResumeLayout(false); + this.panel20.ResumeLayout(false); + this.panel20.PerformLayout(); + this.panel19.ResumeLayout(false); + this.panel19.PerformLayout(); + this.panel35.ResumeLayout(false); + this.panel35.PerformLayout(); + this.panel34.ResumeLayout(false); + this.panel34.PerformLayout(); + this.panel33.ResumeLayout(false); + this.panel33.PerformLayout(); + this.panel32.ResumeLayout(false); + this.panel32.PerformLayout(); + this.panel31.ResumeLayout(false); + this.panel31.PerformLayout(); + this.panel12.ResumeLayout(false); + this.panel12.PerformLayout(); + this.panel30.ResumeLayout(false); + this.panel30.PerformLayout(); + this.panel29.ResumeLayout(false); + this.panel29.PerformLayout(); + this.panel28.ResumeLayout(false); + this.panel28.PerformLayout(); + this.panel27.ResumeLayout(false); + this.panel27.PerformLayout(); + this.panel26.ResumeLayout(false); + this.panel26.PerformLayout(); + this.panel25.ResumeLayout(false); + this.panel25.PerformLayout(); + this.panel24.ResumeLayout(false); + this.panel24.PerformLayout(); + this.panel23.ResumeLayout(false); + this.panel23.PerformLayout(); + this.panel21.ResumeLayout(false); + this.panel21.PerformLayout(); + this.panel22.ResumeLayout(false); + this.panel22.PerformLayout(); + this.panel18.ResumeLayout(false); + this.panel18.PerformLayout(); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.panel2.ResumeLayout(false); + this.panel2.PerformLayout(); + this.panel3.ResumeLayout(false); + this.panel3.PerformLayout(); + this.panel4.ResumeLayout(false); + this.panel4.PerformLayout(); + this.panel5.ResumeLayout(false); + this.panel5.PerformLayout(); + this.panel6.ResumeLayout(false); + this.panel6.PerformLayout(); + this.panel7.ResumeLayout(false); + this.panel7.PerformLayout(); + this.panel8.ResumeLayout(false); + this.panel8.PerformLayout(); + this.panel9.ResumeLayout(false); + this.panel9.PerformLayout(); + this.panel10.ResumeLayout(false); + this.panel10.PerformLayout(); + this.panel13.ResumeLayout(false); + this.panel13.PerformLayout(); + this.panel14.ResumeLayout(false); + this.panel14.PerformLayout(); + this.panel15.ResumeLayout(false); + this.panel15.PerformLayout(); + this.panel16.ResumeLayout(false); + this.panel16.PerformLayout(); + this.panel17.ResumeLayout(false); + this.panel17.PerformLayout(); + this.panel36.ResumeLayout(false); + this.panel36.PerformLayout(); + this.panel37.ResumeLayout(false); + this.panel37.PerformLayout(); + this.panel38.ResumeLayout(false); + this.panel38.PerformLayout(); + this.panel39.ResumeLayout(false); + this.panel39.PerformLayout(); + this.panel40.ResumeLayout(false); + this.panel40.PerformLayout(); + this.panel41.ResumeLayout(false); + this.panel41.PerformLayout(); + this.panel42.ResumeLayout(false); + this.panel42.PerformLayout(); + this.panel11.ResumeLayout(false); + this.panel11.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion - + private System.Windows.Forms.Label lbl_Year; + private System.Windows.Forms.DateTimePicker dateTimePicker1; + private System.Windows.Forms.Button Btn_After; + private System.Windows.Forms.Button Btn_Before; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1; + private System.Windows.Forms.Panel panel20; + private System.Windows.Forms.Label lbl_Day_1_4; + private System.Windows.Forms.RichTextBox rb_1_4; + private System.Windows.Forms.Panel panel19; + private System.Windows.Forms.Label lbl_Day_1_2; + private System.Windows.Forms.RichTextBox rb_1_2; + private System.Windows.Forms.Panel panel35; + private System.Windows.Forms.Label lbl_Day_4_6; + private System.Windows.Forms.RichTextBox rb_4_6; + private System.Windows.Forms.Panel panel34; + private System.Windows.Forms.Label lbl_Day_4_5; + private System.Windows.Forms.RichTextBox rb_4_5; + private System.Windows.Forms.Panel panel33; + private System.Windows.Forms.Label lbl_Day_4_4; + private System.Windows.Forms.RichTextBox rb_4_4; + private System.Windows.Forms.Panel panel32; + private System.Windows.Forms.Label lbl_Day_4_3; + private System.Windows.Forms.RichTextBox rb_4_3; + private System.Windows.Forms.Panel panel31; + private System.Windows.Forms.Label lbl_Day_4_2; + private System.Windows.Forms.RichTextBox rb_4_2; + private System.Windows.Forms.Panel panel30; + private System.Windows.Forms.Label lbl_Day_4_1; + private System.Windows.Forms.RichTextBox rb_4_1; + private System.Windows.Forms.Panel panel29; + private System.Windows.Forms.Label lbl_Day_3_1; + private System.Windows.Forms.RichTextBox rb_3_1; + private System.Windows.Forms.Panel panel28; + private System.Windows.Forms.Label lbl_Day_3_2; + private System.Windows.Forms.RichTextBox rb_3_2; + private System.Windows.Forms.Panel panel27; + private System.Windows.Forms.Label lbl_Day_3_3; + private System.Windows.Forms.RichTextBox rb_3_3; + private System.Windows.Forms.Panel panel26; + private System.Windows.Forms.Label lbl_Day_3_4; + private System.Windows.Forms.RichTextBox rb_3_4; + private System.Windows.Forms.Panel panel25; + private System.Windows.Forms.Label lbl_Day_2_4; + private System.Windows.Forms.RichTextBox rb_2_4; + private System.Windows.Forms.Panel panel24; + private System.Windows.Forms.Label lbl_Day_2_3; + private System.Windows.Forms.RichTextBox rb_2_3; + private System.Windows.Forms.Panel panel23; + private System.Windows.Forms.Label lbl_Day_2_2; + private System.Windows.Forms.RichTextBox rb_2_2; + private System.Windows.Forms.Panel panel21; + private System.Windows.Forms.Label lbl_Day_2_1; + private System.Windows.Forms.RichTextBox rb_2_1; + private System.Windows.Forms.Panel panel22; + private System.Windows.Forms.Label lbl_Day_1_3; + private System.Windows.Forms.RichTextBox rb_1_3; + private System.Windows.Forms.Panel panel18; + private System.Windows.Forms.Label lbl_Day_1_1; + private System.Windows.Forms.RichTextBox rb_1_1; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Label lbl_Day_1_5; + private System.Windows.Forms.RichTextBox rb_1_5; + private System.Windows.Forms.Panel panel2; private System.Windows.Forms.Label label1; + private System.Windows.Forms.Panel panel3; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Panel panel4; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Panel panel5; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Panel panel6; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Panel panel7; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Panel panel8; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Panel panel9; + private System.Windows.Forms.Label lbl_Day_1_7; + private System.Windows.Forms.RichTextBox rb_1_7; + private System.Windows.Forms.Panel panel10; + private System.Windows.Forms.Label lbl_Day_1_6; + private System.Windows.Forms.RichTextBox rb_1_6; + private System.Windows.Forms.Panel panel11; + private System.Windows.Forms.Label lbl_Day_2_7; + private System.Windows.Forms.RichTextBox rb_2_7; + private System.Windows.Forms.Panel panel12; + private System.Windows.Forms.Label lbl_Day_2_6; + private System.Windows.Forms.RichTextBox rb_2_6; + private System.Windows.Forms.Panel panel13; + private System.Windows.Forms.Label lbl_Day_3_7; + private System.Windows.Forms.RichTextBox rb_3_7; + private System.Windows.Forms.Panel panel14; + private System.Windows.Forms.Label lbl_Day_3_6; + private System.Windows.Forms.RichTextBox rb_3_6; + private System.Windows.Forms.Panel panel15; + private System.Windows.Forms.Label lbl_Day_2_5; + private System.Windows.Forms.RichTextBox rb_2_5; + private System.Windows.Forms.Panel panel16; + private System.Windows.Forms.Label lbl_Day_3_5; + private System.Windows.Forms.RichTextBox rb_3_5; + private System.Windows.Forms.Panel panel17; + private System.Windows.Forms.Label lbl_Day_4_7; + private System.Windows.Forms.RichTextBox rb_4_7; + private System.Windows.Forms.Panel panel36; + private System.Windows.Forms.Label lbl_Day_5_1; + private System.Windows.Forms.RichTextBox rb_5_1; + private System.Windows.Forms.Panel panel37; + private System.Windows.Forms.Label lbl_Day_5_2; + private System.Windows.Forms.RichTextBox rb_5_2; + private System.Windows.Forms.Panel panel38; + private System.Windows.Forms.Label lbl_Day_5_3; + private System.Windows.Forms.RichTextBox rb_5_3; + private System.Windows.Forms.Panel panel39; + private System.Windows.Forms.Label lbl_Day_5_4; + private System.Windows.Forms.RichTextBox rb_5_4; + private System.Windows.Forms.Panel panel40; + private System.Windows.Forms.Label lbl_Day_5_5; + private System.Windows.Forms.RichTextBox rb_5_5; + private System.Windows.Forms.Panel panel41; + private System.Windows.Forms.Label lbl_Day_5_6; + private System.Windows.Forms.RichTextBox rb_5_6; + private System.Windows.Forms.Panel panel42; + private System.Windows.Forms.Label lbl_Day_5_7; + private System.Windows.Forms.RichTextBox rb_5_7; + private System.Windows.Forms.Button btn_close; + private System.Windows.Forms.Label lbl_Month; + private System.Windows.Forms.Label lbl_1_4; + private System.Windows.Forms.Label lbl_1_2; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Label lbl_1_3; + private System.Windows.Forms.Label lbl_1_1; + private System.Windows.Forms.Label lbl_1_5; + private System.Windows.Forms.Label lbl_1_7; + private System.Windows.Forms.Label lbl_1_6; + private System.Windows.Forms.Label lbl_4_6; + private System.Windows.Forms.Label lbl_4_5; + private System.Windows.Forms.Label lbl_4_4; + private System.Windows.Forms.Label lbl_4_3; + private System.Windows.Forms.Label lbl_4_2; + private System.Windows.Forms.Label lbl_2_6; + private System.Windows.Forms.Label lbl_4_1; + private System.Windows.Forms.Label lbl_3_1; + private System.Windows.Forms.Label lbl_3_2; + private System.Windows.Forms.Label lbl_3_3; + private System.Windows.Forms.Label lbl_3_4; + private System.Windows.Forms.Label lbl_2_4; + private System.Windows.Forms.Label lbl_2_3; + private System.Windows.Forms.Label lbl_2_2; + private System.Windows.Forms.Label lbl_2_1; + private System.Windows.Forms.Label lbl_3_7; + private System.Windows.Forms.Label lbl_3_6; + private System.Windows.Forms.Label lbl_2_5; + private System.Windows.Forms.Label lbl_3_5; + private System.Windows.Forms.Label lbl_4_7; + private System.Windows.Forms.Label lbl_5_1; + private System.Windows.Forms.Label lbl_5_2; + private System.Windows.Forms.Label lbl_5_3; + private System.Windows.Forms.Label lbl_5_4; + private System.Windows.Forms.Label lbl_5_5; + private System.Windows.Forms.Label lbl_5_6; + private System.Windows.Forms.Label lbl_5_7; + private System.Windows.Forms.Label lbl_2_7; + private System.Windows.Forms.RadioButton rb_all; + private System.Windows.Forms.RadioButton rb_dly; + private System.Windows.Forms.RadioButton rb_marc; } } \ No newline at end of file diff --git a/unimarc/unimarc/편의기능/Calendar.cs b/unimarc/unimarc/편의기능/Calendar.cs index dc42159..7793277 100644 --- a/unimarc/unimarc/편의기능/Calendar.cs +++ b/unimarc/unimarc/편의기능/Calendar.cs @@ -12,11 +12,276 @@ namespace WindowsFormsApp1.Convenience { public partial class Calendar : Form { + string compidx = ""; + Helper_DB db = new Helper_DB(); Main main; + public Calendar(Main _main) { InitializeComponent(); main = _main; + compidx = main.com_idx; + } + + private void Calendar_Load(object sender, EventArgs e) + { + db.DBcon(); + rb_all.Checked = true; + + Grep_Data(); + + Day_Setting(); + } + /// + /// 오늘을 기준으로 달력을 출력하기 때문에 오늘의 요일을 구하여 해당 요일에 오늘 날짜를 입력함 + /// + private void Day_Setting() + { + Reset_richBox(); + + string day_now = dateTimePicker1.Value.ToString("dd"); + string week_now = dateTimePicker1.Value.DayOfWeek.ToString(); + switch (week_now) + { + case "Sunday": + lbl_Day_2_1.Text = day_now; + Cal_Setting(day_now, 7); + break; + case "Monday": + lbl_Day_2_2.Text = day_now; + Cal_Setting(day_now, 8); + break; + case "Tuesday": + lbl_Day_2_3.Text = day_now; + Cal_Setting(day_now, 9); + break; + case "Wednesday": + lbl_Day_2_4.Text = day_now; + Cal_Setting(day_now, 10); + break; + case "Thursday": + lbl_Day_2_5.Text = day_now; + Cal_Setting(day_now, 11); + break; + case "Friday": + lbl_Day_2_6.Text = day_now; + Cal_Setting(day_now, 12); + break; + case "Saturday": + lbl_Day_2_7.Text = day_now; + Cal_Setting(day_now, 13); + break; + default: + break; + } + } + /// + /// 달력 날짜 세팅 + /// + /// + /// + private void Cal_Setting(string day_now, int idx) + { + int day = Convert.ToInt32(day_now); + int year = dateTimePicker1.Value.Year; + int months = dateTimePicker1.Value.Month; + lbl_Year.Text = year.ToString(); + lbl_Month.Text = months.ToString(); + if (lbl_Month.Text.Length < 2) + lbl_Month.Text = "0" + lbl_Month.Text; + + Label[] month = { + lbl_Day_1_1, lbl_Day_1_2, lbl_Day_1_3, lbl_Day_1_4, lbl_Day_1_5, lbl_Day_1_6, lbl_Day_1_7, + lbl_Day_2_1, lbl_Day_2_2, lbl_Day_2_3, lbl_Day_2_4, lbl_Day_2_5, lbl_Day_2_6, lbl_Day_2_7, + lbl_Day_3_1, lbl_Day_3_2, lbl_Day_3_3, lbl_Day_3_4, lbl_Day_3_5, lbl_Day_3_6, lbl_Day_3_7, + lbl_Day_4_1, lbl_Day_4_2, lbl_Day_4_3, lbl_Day_4_4, lbl_Day_4_5, lbl_Day_4_6, lbl_Day_4_7, + lbl_Day_5_1, lbl_Day_5_2, lbl_Day_5_3, lbl_Day_5_4, lbl_Day_5_5, lbl_Day_5_6, lbl_Day_5_7 + }; + Label[] lbl_tmp = { + lbl_1_1, lbl_1_2, lbl_1_3, lbl_1_4, lbl_1_5, lbl_1_6, lbl_1_7, + lbl_2_1, lbl_2_2, lbl_2_3, lbl_2_4, lbl_2_5, lbl_2_6, lbl_2_7, + lbl_3_1, lbl_3_2, lbl_3_3, lbl_3_4, lbl_3_5, lbl_3_6, lbl_3_7, + lbl_4_1, lbl_4_2, lbl_4_3, lbl_4_4, lbl_4_5, lbl_4_6, lbl_4_7, + lbl_5_1, lbl_5_2, lbl_5_3, lbl_5_4, lbl_5_5, lbl_5_6, lbl_5_7 + }; + + // 오늘을 포함한 이후의 달력을 만듬 + for (int a = idx; a < month.Length; a++) + { + if (day - 1 == DateTime.DaysInMonth(year, months)) { day = 1; } + month[a].Text = day.ToString(); + if (month[a].Text.Length < 2) + month[a].Text = "0" + month[a].Text; + day++; + lbl_tmp[a].Text = string.Format("{0}-{1}-{2}",year, months, month[a].Text); + } + + // 오늘 이전의 달력을 만듬 + bool ago = false; + day = Convert.ToInt32(day_now); + for (int a = idx; a > -1; a--) + { + if (day < 1) + { + months--; + day = DateTime.DaysInMonth(year, months); + ago = true; + } + if (ago) { + month[a].ForeColor = Color.Gray; + } + else { + month[a].ForeColor = Color.Black; + } + month[a].Text = day.ToString(); + if (month[a].Text.Length < 2) + month[a].Text = "0" + month[a].Text; + day--; + lbl_tmp[a].Text = string.Format("{0}-{1}-{2}",year, months, month[a].Text); + } + + // 토요일 일요일 색을 입힘 + for (int a = 0; a < month.Length; a++) + { + if (month[a].Name[10] == '1') + month[a].ForeColor = Color.Red; + + if (month[a].Name[10] == '7') + month[a].ForeColor = Color.Blue; + input_List(a); + } + + } + private void Reset_richBox() + { + RichTextBox[] rbBox = { + rb_1_1, rb_1_2, rb_1_3, rb_1_4, rb_1_5, rb_1_6, rb_1_7, + rb_2_1, rb_2_2, rb_2_3, rb_2_4, rb_2_5, rb_2_6, rb_2_7, + rb_3_1, rb_3_2, rb_3_3, rb_3_4, rb_3_5, rb_3_6, rb_3_7, + rb_4_1, rb_4_2, rb_4_3, rb_4_4, rb_4_5, rb_4_6, rb_4_7, + rb_5_1, rb_5_2, rb_5_3, rb_5_4, rb_5_5, rb_5_6, rb_5_7 + }; + for(int a = 0; a < rbBox.Length; a++) + { + rbBox[a].Text = ""; + } + } + List date_res = new List(); + List list_name = new List(); + List chk_marc = new List(); + private void Grep_Data() + { + string Area = "`date_res`, `list_name`, `chk_marc`"; + string tmp_data = db.DB_Select_Search(Area, "Obj_List", "comp_num", compidx); + string[] ary_tmp = tmp_data.Split('|'); + bool chk = false; + + for(int a = 0; a < ary_tmp.Length; a++) + { + if (a % 3 == 0) { + if (ary_tmp[a].Length > 4) { + chk = true; + date_res.Add(ary_tmp[a]); + } + else { chk = false; } + } + if (a % 3 == 1) + { + if (chk) { list_name.Add(ary_tmp[a]); chk_marc.Add(ary_tmp[a + 1]); } + else { chk = true; } + } + } + } + private void input_List(int idx) + { + Label[] lbl_tmp = { + lbl_1_1, lbl_1_2, lbl_1_3, lbl_1_4, lbl_1_5, lbl_1_6, lbl_1_7, + lbl_2_1, lbl_2_2, lbl_2_3, lbl_2_4, lbl_2_5, lbl_2_6, lbl_2_7, + lbl_3_1, lbl_3_2, lbl_3_3, lbl_3_4, lbl_3_5, lbl_3_6, lbl_3_7, + lbl_4_1, lbl_4_2, lbl_4_3, lbl_4_4, lbl_4_5, lbl_4_6, lbl_4_7, + lbl_5_1, lbl_5_2, lbl_5_3, lbl_5_4, lbl_5_5, lbl_5_6, lbl_5_7 + }; + RichTextBox[] rbBox = { + rb_1_1, rb_1_2, rb_1_3, rb_1_4, rb_1_5, rb_1_6, rb_1_7, + rb_2_1, rb_2_2, rb_2_3, rb_2_4, rb_2_5, rb_2_6, rb_2_7, + rb_3_1, rb_3_2, rb_3_3, rb_3_4, rb_3_5, rb_3_6, rb_3_7, + rb_4_1, rb_4_2, rb_4_3, rb_4_4, rb_4_5, rb_4_6, rb_4_7, + rb_5_1, rb_5_2, rb_5_3, rb_5_4, rb_5_5, rb_5_6, rb_5_7 + }; + + bool print = false; + string mk_date = lbl_tmp[idx].Text; + DateTime mkd = DateTime.Parse(mk_date); + for(int a = 0; a < date_res.Count; a++) + { + DateTime res = DateTime.Parse(date_res[a]); + if (mkd == res) { + if (rb_all.Checked) print = true; + else if (rb_dly.Checked) { + if (chk_marc[a] == "0" || chk_marc[a] == "2") { + print = true; + } + } + else if (rb_marc.Checked) { + if (chk_marc[a] == "1" || chk_marc[a] == "2") { + print = true; + } + } + if (print) + rbBox[idx].Text += list_name[a] + "\n"; + } + } + } + + private void dateTimePicker1_ValueChanged(object sender, EventArgs e) + { + Day_Setting(); + } + + private void Btn_Before_Click(object sender, EventArgs e) + { + int year, month, day; + + DateTime picker = dateTimePicker1.Value; + year = picker.Year; + month = picker.Month - 1; + if (month < 1) + { + year--; + month = 12; + } + day = picker.Day; + + string date = string.Format("{0}-{1}-{2}", year, month, day); + dateTimePicker1.Value = DateTime.Parse(date); + } + + private void Btn_After_Click(object sender, EventArgs e) + { + int year, month, day; + + DateTime picker = dateTimePicker1.Value; + year = picker.Year; + month = picker.Month + 1; + if (month > 12) + { + year++; + month = 1; + } + day = picker.Day; + + string date = string.Format("{0}-{1}-{2}", year, month, day); + dateTimePicker1.Value = DateTime.Parse(date); + } + + private void btn_close_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void rb_all_CheckedChanged(object sender, EventArgs e) + { + Day_Setting(); } } } diff --git a/unimarc/unimarc/홈/Order_manage.cs b/unimarc/unimarc/홈/Order_manage.cs index 0a0ac6b..0596ce8 100644 --- a/unimarc/unimarc/홈/Order_manage.cs +++ b/unimarc/unimarc/홈/Order_manage.cs @@ -194,10 +194,10 @@ namespace WindowsFormsApp1.Home string gu = ""; if (chk_send.Checked == true) { send_chk = "1"; } if (chk_email.Checked == true) { emchk = "1"; } - if(cb_gubun.SelectedIndex == 0) { gu = "출판"; } - if(cb_gubun.SelectedIndex == 1) { gu = "도매"; } - if(cb_gubun.SelectedIndex == 2) { gu = "기타"; } - if(cb_gubun.SelectedIndex == 3) { gu = "경비"; } + if(cb_gubun.SelectedIndex == 0) { gu = "0"; } // 출판 + if(cb_gubun.SelectedIndex == 1) { gu = "1"; } // 도매 + if(cb_gubun.SelectedIndex == 2) { gu = "2"; } // 기타 + if(cb_gubun.SelectedIndex == 3) { gu = "3"; } // 경비 string[] Insert_Table = {"send_chk", "sangho", "boss", "bubin", "uptae", "jongmok", "zip", "addr", "tel", "fax", "bank_no", "bank_comp", "bank_name", "gu", "barea", @@ -209,12 +209,13 @@ namespace WindowsFormsApp1.Home if (insert) { db.DB_INSERT("Purchase", Insert_Table, Insert_Data); + MessageBox.Show(tb_sangho.Text + " 저장 완료"); } else { - db.More_Update(Table, Insert_Data, Insert_Table, Search_Data, Search_Table); + db.More_Update(Table, Insert_Table, Insert_Data, Search_Table, Search_Data); + MessageBox.Show(tb_sangho.Text + " 수정 완료"); } - MessageBox.Show(tb_sangho.Text + " 저장 완료"); } private void btn_Delete_Click(object sender, EventArgs e) // 삭제 { diff --git a/unimarc/unimarc/회계/Part_time.Designer.cs b/unimarc/unimarc/회계/Part_time.Designer.cs new file mode 100644 index 0000000..9d6eca5 --- /dev/null +++ b/unimarc/unimarc/회계/Part_time.Designer.cs @@ -0,0 +1,600 @@ + +namespace UniMarc.회계 +{ + partial class Part_time + { + /// + /// 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() + { + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); + this.panel1 = new System.Windows.Forms.Panel(); + this.rb_pay = new System.Windows.Forms.RadioButton(); + this.rb_minpay = new System.Windows.Forms.RadioButton(); + this.end_30min = new System.Windows.Forms.CheckBox(); + this.start_30min = new System.Windows.Forms.CheckBox(); + this.btn_Add = new System.Windows.Forms.Button(); + this.btn_Save = new System.Windows.Forms.Button(); + this.btn_Close = new System.Windows.Forms.Button(); + this.cb_work_time = new System.Windows.Forms.ComboBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.cb_end_hour = new System.Windows.Forms.ComboBox(); + this.cb_start_hour = new System.Windows.Forms.ComboBox(); + this.set_date = new System.Windows.Forms.DateTimePicker(); + this.dataGridView1 = new System.Windows.Forms.DataGridView(); + this.dataGridView2 = new System.Windows.Forms.DataGridView(); + this.start_date = new System.Windows.Forms.DateTimePicker(); + this.end_date = new System.Windows.Forms.DateTimePicker(); + this.label4 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.cb_name = new System.Windows.Forms.ComboBox(); + this.btn_Lookup = new System.Windows.Forms.Button(); + this.panel2 = new System.Windows.Forms.Panel(); + this.lbl_pay = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.tb_pay = new System.Windows.Forms.TextBox(); + this.btn_Delete = new System.Windows.Forms.Button(); + this.date = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Per_name = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.start = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.end = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.minus = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.today = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.pay = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.work = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.del_chk = new System.Windows.Forms.DataGridViewCheckBoxColumn(); + this.work_date = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.name1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.start2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.end2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.all_time = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.time_pay = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.total = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.work2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.panel1.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit(); + this.panel2.SuspendLayout(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel1.Controls.Add(this.tb_pay); + this.panel1.Controls.Add(this.rb_pay); + this.panel1.Controls.Add(this.rb_minpay); + this.panel1.Controls.Add(this.end_30min); + this.panel1.Controls.Add(this.start_30min); + this.panel1.Controls.Add(this.cb_work_time); + this.panel1.Controls.Add(this.label2); + this.panel1.Controls.Add(this.label1); + this.panel1.Controls.Add(this.cb_end_hour); + this.panel1.Controls.Add(this.cb_start_hour); + this.panel1.Controls.Add(this.set_date); + this.panel1.Location = new System.Drawing.Point(12, 12); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(908, 42); + this.panel1.TabIndex = 0; + // + // rb_pay + // + this.rb_pay.AutoSize = true; + this.rb_pay.Location = new System.Drawing.Point(678, 12); + this.rb_pay.Name = "rb_pay"; + this.rb_pay.Size = new System.Drawing.Size(71, 16); + this.rb_pay.TabIndex = 2; + this.rb_pay.TabStop = true; + this.rb_pay.Text = "직접입력"; + this.rb_pay.UseVisualStyleBackColor = true; + this.rb_pay.CheckedChanged += new System.EventHandler(this.rb_pay_CheckedChanged); + // + // rb_minpay + // + this.rb_minpay.AutoSize = true; + this.rb_minpay.Location = new System.Drawing.Point(601, 6); + this.rb_minpay.Name = "rb_minpay"; + this.rb_minpay.Size = new System.Drawing.Size(71, 28); + this.rb_minpay.TabIndex = 2; + this.rb_minpay.TabStop = true; + this.rb_minpay.Text = "최저시급\n8,720원"; + this.rb_minpay.UseVisualStyleBackColor = true; + this.rb_minpay.CheckedChanged += new System.EventHandler(this.rb_pay_CheckedChanged); + // + // end_30min + // + this.end_30min.AutoSize = true; + this.end_30min.Location = new System.Drawing.Point(335, 12); + this.end_30min.Name = "end_30min"; + this.end_30min.Size = new System.Drawing.Size(48, 16); + this.end_30min.TabIndex = 2; + this.end_30min.Text = "30분"; + this.end_30min.UseVisualStyleBackColor = true; + // + // start_30min + // + this.start_30min.AutoSize = true; + this.start_30min.Location = new System.Drawing.Point(192, 12); + this.start_30min.Name = "start_30min"; + this.start_30min.Size = new System.Drawing.Size(48, 16); + this.start_30min.TabIndex = 2; + this.start_30min.Text = "30분"; + this.start_30min.UseVisualStyleBackColor = true; + // + // btn_Add + // + this.btn_Add.Location = new System.Drawing.Point(597, 60); + this.btn_Add.Name = "btn_Add"; + this.btn_Add.Size = new System.Drawing.Size(75, 23); + this.btn_Add.TabIndex = 23; + this.btn_Add.Text = "추 가"; + this.btn_Add.UseVisualStyleBackColor = true; + this.btn_Add.Click += new System.EventHandler(this.btn_Add_Click); + // + // btn_Save + // + this.btn_Save.Location = new System.Drawing.Point(759, 60); + this.btn_Save.Name = "btn_Save"; + this.btn_Save.Size = new System.Drawing.Size(75, 23); + this.btn_Save.TabIndex = 23; + this.btn_Save.Text = "저 장"; + this.btn_Save.UseVisualStyleBackColor = true; + this.btn_Save.Click += new System.EventHandler(this.btn_Save_Click); + // + // btn_Close + // + this.btn_Close.Location = new System.Drawing.Point(840, 60); + this.btn_Close.Name = "btn_Close"; + this.btn_Close.Size = new System.Drawing.Size(75, 23); + this.btn_Close.TabIndex = 23; + this.btn_Close.Text = "닫 기"; + this.btn_Close.UseVisualStyleBackColor = true; + this.btn_Close.Click += new System.EventHandler(this.btn_Close_Click); + // + // cb_work_time + // + this.cb_work_time.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.cb_work_time.FormattingEnabled = true; + this.cb_work_time.Location = new System.Drawing.Point(458, 9); + this.cb_work_time.Name = "cb_work_time"; + this.cb_work_time.Size = new System.Drawing.Size(121, 20); + this.cb_work_time.TabIndex = 22; + this.cb_work_time.SelectedIndexChanged += new System.EventHandler(this.cb_work_time_SelectedIndexChanged); + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(395, 13); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(57, 12); + this.label2.TabIndex = 1; + this.label2.Text = "업무 구분"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label1.Location = new System.Drawing.Point(241, 15); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(15, 12); + this.label1.TabIndex = 1; + this.label1.Text = "~"; + // + // cb_end_hour + // + this.cb_end_hour.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.cb_end_hour.FormattingEnabled = true; + this.cb_end_hour.Location = new System.Drawing.Point(258, 9); + this.cb_end_hour.Name = "cb_end_hour"; + this.cb_end_hour.Size = new System.Drawing.Size(71, 20); + this.cb_end_hour.TabIndex = 21; + // + // cb_start_hour + // + this.cb_start_hour.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.cb_start_hour.FormattingEnabled = true; + this.cb_start_hour.Location = new System.Drawing.Point(115, 9); + this.cb_start_hour.Name = "cb_start_hour"; + this.cb_start_hour.Size = new System.Drawing.Size(71, 20); + this.cb_start_hour.TabIndex = 21; + // + // set_date + // + this.set_date.CustomFormat = "yyyy-MM-dd"; + this.set_date.Format = System.Windows.Forms.DateTimePickerFormat.Custom; + this.set_date.Location = new System.Drawing.Point(12, 9); + this.set_date.Name = "set_date"; + this.set_date.Size = new System.Drawing.Size(85, 21); + this.set_date.TabIndex = 20; + // + // dataGridView1 + // + this.dataGridView1.AllowUserToAddRows = false; + this.dataGridView1.AllowUserToDeleteRows = false; + this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.Control; + dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control; + dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText; + dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1; + this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.date, + this.Per_name, + this.start, + this.end, + this.minus, + this.today, + this.pay, + this.work, + this.del_chk}); + this.dataGridView1.Location = new System.Drawing.Point(12, 89); + this.dataGridView1.Name = "dataGridView1"; + this.dataGridView1.RowHeadersWidth = 30; + this.dataGridView1.RowTemplate.Height = 23; + this.dataGridView1.Size = new System.Drawing.Size(908, 146); + this.dataGridView1.TabIndex = 1; + this.dataGridView1.CellValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellValidated); + // + // dataGridView2 + // + this.dataGridView2.AllowUserToAddRows = false; + this.dataGridView2.AllowUserToDeleteRows = false; + this.dataGridView2.BackgroundColor = System.Drawing.SystemColors.Control; + dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Control; + dataGridViewCellStyle7.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.WindowText; + dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + this.dataGridView2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7; + this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.work_date, + this.name1, + this.start2, + this.end2, + this.all_time, + this.time_pay, + this.total, + this.work2}); + this.dataGridView2.Location = new System.Drawing.Point(12, 315); + this.dataGridView2.Name = "dataGridView2"; + this.dataGridView2.ReadOnly = true; + this.dataGridView2.RowHeadersWidth = 30; + this.dataGridView2.RowTemplate.Height = 23; + this.dataGridView2.Size = new System.Drawing.Size(908, 151); + this.dataGridView2.TabIndex = 1; + // + // start_date + // + this.start_date.CustomFormat = "yyyy-MM-01"; + this.start_date.Format = System.Windows.Forms.DateTimePickerFormat.Custom; + this.start_date.Location = new System.Drawing.Point(12, 9); + this.start_date.Name = "start_date"; + this.start_date.Size = new System.Drawing.Size(85, 21); + this.start_date.TabIndex = 20; + // + // end_date + // + this.end_date.CustomFormat = "yyyy-MM-dd"; + this.end_date.Format = System.Windows.Forms.DateTimePickerFormat.Custom; + this.end_date.Location = new System.Drawing.Point(116, 9); + this.end_date.Name = "end_date"; + this.end_date.Size = new System.Drawing.Size(85, 21); + this.end_date.TabIndex = 20; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129))); + this.label4.Location = new System.Drawing.Point(99, 15); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(15, 12); + this.label4.TabIndex = 1; + this.label4.Text = "~"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(252, 15); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(33, 12); + this.label3.TabIndex = 1; + this.label3.Text = "이 름"; + // + // cb_name + // + this.cb_name.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; + this.cb_name.FormattingEnabled = true; + this.cb_name.Location = new System.Drawing.Point(296, 10); + this.cb_name.Name = "cb_name"; + this.cb_name.Size = new System.Drawing.Size(121, 20); + this.cb_name.TabIndex = 22; + // + // btn_Lookup + // + this.btn_Lookup.Location = new System.Drawing.Point(479, 9); + this.btn_Lookup.Name = "btn_Lookup"; + this.btn_Lookup.Size = new System.Drawing.Size(75, 23); + this.btn_Lookup.TabIndex = 23; + this.btn_Lookup.Text = "조 회"; + this.btn_Lookup.UseVisualStyleBackColor = true; + this.btn_Lookup.Click += new System.EventHandler(this.btn_Lookup_Click); + // + // panel2 + // + this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel2.Controls.Add(this.lbl_pay); + this.panel2.Controls.Add(this.label5); + this.panel2.Controls.Add(this.btn_Lookup); + this.panel2.Controls.Add(this.cb_name); + this.panel2.Controls.Add(this.label3); + this.panel2.Controls.Add(this.label4); + this.panel2.Controls.Add(this.end_date); + this.panel2.Controls.Add(this.start_date); + this.panel2.Location = new System.Drawing.Point(12, 266); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(908, 41); + this.panel2.TabIndex = 0; + // + // lbl_pay + // + this.lbl_pay.AutoSize = true; + this.lbl_pay.Location = new System.Drawing.Point(714, 14); + this.lbl_pay.Name = "lbl_pay"; + this.lbl_pay.Size = new System.Drawing.Size(11, 12); + this.lbl_pay.TabIndex = 24; + this.lbl_pay.Text = "0"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(648, 14); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(69, 12); + this.label5.TabIndex = 2; + this.label5.Text = "총 지급액 : "; + // + // tb_pay + // + this.tb_pay.Location = new System.Drawing.Point(751, 9); + this.tb_pay.Name = "tb_pay"; + this.tb_pay.Size = new System.Drawing.Size(107, 21); + this.tb_pay.TabIndex = 24; + this.tb_pay.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tb_pay_KeyPress); + // + // btn_Delete + // + this.btn_Delete.Location = new System.Drawing.Point(678, 60); + this.btn_Delete.Name = "btn_Delete"; + this.btn_Delete.Size = new System.Drawing.Size(75, 23); + this.btn_Delete.TabIndex = 25; + this.btn_Delete.Text = "삭 제"; + this.btn_Delete.UseVisualStyleBackColor = true; + this.btn_Delete.Click += new System.EventHandler(this.btn_Delete_Click); + // + // date + // + this.date.HeaderText = "날짜"; + this.date.Name = "date"; + this.date.Width = 80; + // + // Per_name + // + this.Per_name.HeaderText = "이름"; + this.Per_name.Name = "Per_name"; + this.Per_name.Width = 200; + // + // start + // + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + this.start.DefaultCellStyle = dataGridViewCellStyle2; + this.start.HeaderText = "근무시작"; + this.start.Name = "start"; + this.start.Width = 65; + // + // end + // + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + this.end.DefaultCellStyle = dataGridViewCellStyle3; + this.end.HeaderText = "근무종료"; + this.end.Name = "end"; + this.end.Width = 65; + // + // minus + // + dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + this.minus.DefaultCellStyle = dataGridViewCellStyle4; + this.minus.HeaderText = "업무제외"; + this.minus.Name = "minus"; + this.minus.Resizable = System.Windows.Forms.DataGridViewTriState.True; + // + // today + // + dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + this.today.DefaultCellStyle = dataGridViewCellStyle5; + this.today.HeaderText = "금일근무"; + this.today.Name = "today"; + // + // pay + // + dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + this.pay.DefaultCellStyle = dataGridViewCellStyle6; + this.pay.HeaderText = "시급"; + this.pay.Name = "pay"; + this.pay.Width = 60; + // + // work + // + this.work.HeaderText = "작업내용"; + this.work.Name = "work"; + this.work.Width = 150; + // + // del_chk + // + this.del_chk.HeaderText = "삭제"; + this.del_chk.Name = "del_chk"; + this.del_chk.Resizable = System.Windows.Forms.DataGridViewTriState.True; + this.del_chk.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; + this.del_chk.Width = 40; + // + // work_date + // + this.work_date.HeaderText = "날짜"; + this.work_date.Name = "work_date"; + this.work_date.ReadOnly = true; + this.work_date.Width = 80; + // + // name1 + // + this.name1.HeaderText = "이름"; + this.name1.Name = "name1"; + this.name1.ReadOnly = true; + this.name1.Width = 200; + // + // start2 + // + this.start2.HeaderText = "근무시작"; + this.start2.Name = "start2"; + this.start2.ReadOnly = true; + this.start2.Width = 65; + // + // end2 + // + this.end2.HeaderText = "근무종료"; + this.end2.Name = "end2"; + this.end2.ReadOnly = true; + this.end2.Width = 65; + // + // all_time + // + this.all_time.HeaderText = "총 근무시간"; + this.all_time.Name = "all_time"; + this.all_time.ReadOnly = true; + // + // time_pay + // + this.time_pay.HeaderText = "시급"; + this.time_pay.Name = "time_pay"; + this.time_pay.ReadOnly = true; + this.time_pay.Width = 80; + // + // total + // + this.total.HeaderText = "지급금액"; + this.total.Name = "total"; + this.total.ReadOnly = true; + // + // work2 + // + this.work2.HeaderText = "작업내용"; + this.work2.Name = "work2"; + this.work2.ReadOnly = true; + this.work2.Width = 150; + // + // Part_time + // + this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(932, 478); + this.Controls.Add(this.btn_Delete); + this.Controls.Add(this.dataGridView2); + this.Controls.Add(this.dataGridView1); + this.Controls.Add(this.panel2); + this.Controls.Add(this.panel1); + this.Controls.Add(this.btn_Add); + this.Controls.Add(this.btn_Close); + this.Controls.Add(this.btn_Save); + this.Name = "Part_time"; + this.Text = "파트타임 직원관리"; + this.Load += new System.EventHandler(this.Part_time_Load); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit(); + this.panel2.ResumeLayout(false); + this.panel2.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.DateTimePicker set_date; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.ComboBox cb_end_hour; + private System.Windows.Forms.ComboBox cb_start_hour; + private System.Windows.Forms.Button btn_Close; + private System.Windows.Forms.Button btn_Save; + private System.Windows.Forms.DataGridView dataGridView1; + private System.Windows.Forms.ComboBox cb_work_time; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Button btn_Add; + private System.Windows.Forms.DataGridView dataGridView2; + private System.Windows.Forms.CheckBox end_30min; + private System.Windows.Forms.CheckBox start_30min; + private System.Windows.Forms.DateTimePicker start_date; + private System.Windows.Forms.DateTimePicker end_date; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.ComboBox cb_name; + private System.Windows.Forms.Button btn_Lookup; + private System.Windows.Forms.Panel panel2; + private System.Windows.Forms.Label lbl_pay; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.RadioButton rb_minpay; + private System.Windows.Forms.RadioButton rb_pay; + private System.Windows.Forms.TextBox tb_pay; + private System.Windows.Forms.Button btn_Delete; + private System.Windows.Forms.DataGridViewTextBoxColumn date; + private System.Windows.Forms.DataGridViewTextBoxColumn Per_name; + private System.Windows.Forms.DataGridViewTextBoxColumn start; + private System.Windows.Forms.DataGridViewTextBoxColumn end; + private System.Windows.Forms.DataGridViewTextBoxColumn minus; + private System.Windows.Forms.DataGridViewTextBoxColumn today; + private System.Windows.Forms.DataGridViewTextBoxColumn pay; + private System.Windows.Forms.DataGridViewTextBoxColumn work; + private System.Windows.Forms.DataGridViewCheckBoxColumn del_chk; + private System.Windows.Forms.DataGridViewTextBoxColumn work_date; + private System.Windows.Forms.DataGridViewTextBoxColumn name1; + private System.Windows.Forms.DataGridViewTextBoxColumn start2; + private System.Windows.Forms.DataGridViewTextBoxColumn end2; + private System.Windows.Forms.DataGridViewTextBoxColumn all_time; + private System.Windows.Forms.DataGridViewTextBoxColumn time_pay; + private System.Windows.Forms.DataGridViewTextBoxColumn total; + private System.Windows.Forms.DataGridViewTextBoxColumn work2; + } +} \ No newline at end of file diff --git a/unimarc/unimarc/회계/Part_time.cs b/unimarc/unimarc/회계/Part_time.cs new file mode 100644 index 0000000..95207b0 --- /dev/null +++ b/unimarc/unimarc/회계/Part_time.cs @@ -0,0 +1,318 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Text.RegularExpressions; +using System.Threading.Tasks; +using System.Windows.Forms; +// 추가 참조 +using WindowsFormsApp1; + +namespace UniMarc.회계 +{ + public partial class Part_time : Form + { + string compidx; + Main main; + Helper_DB db = new Helper_DB(); + public Part_time(Main _main) + { + InitializeComponent(); + main = _main; + compidx = main.com_idx; + } + + private void Part_time_Load(object sender, EventArgs e) + { + db.DBcon(); + Setting_combo(); + Setting_Date(); + Setting_Etc(); + } + #region Load_Sub + /// + /// 콤보박스 초기 세팅 + /// + private void Setting_combo() + { + string[] start = { + "8시", "9시", "10시", "11시", "12시", + "13시", "14시", "15시", "16시", "17시", + "18시", "19시", "20시", "21시", "22시" + }; + cb_start_hour.Items.AddRange(start); + + string[] end = { + "8시", "9시", "10시", "11시", "12시", + "13시", "14시", "15시", "16시", "17시", + "18시", "19시", "20시", "21시", "22시" + }; + cb_end_hour.Items.AddRange(end); + + string[] set_time = { "직접입력", "풀타임 (9시~18시)", "오전 (9시~12시)", "오후 (13시~18시)" }; + cb_work_time.Items.AddRange(set_time); + + //string tmp_db = db.search + } + /// + /// 조회창 datepicker 세팅 + /// + private void Setting_Date() + { + int year = DateTime.Now.Year; + int month = DateTime.Now.Month; + int day = DateTime.Now.Day; + if (day < 10) + { + if (month - 1 <= 0) + { + year--; + month = 12; + } + month--; + } + day = 10; + string set_start = string.Format("{0}-{1}-{2}", year, month, day); + start_date.Value = DateTime.Parse(set_start); + } + /// + /// 기타 세팅 + /// + private void Setting_Etc() + { + rb_minpay.Checked = true; + for(int a = 0; a < dataGridView1.Columns.Count; a++) + { + if (a == 0 || a == 2 || a == 3) { + dataGridView1.Columns[a].ReadOnly = true; + } + } + + string tmp_name = db.DB_Select_Search("`name`", "Part_Time", "compidx", compidx); + string[] ary_name = tmp_name.Split('|'); + for (int a = 0; a < ary_name.Length - 1; a++) + { + cb_name.Items.Add(ary_name[a]); + } + + } + #endregion + + private void btn_Add_Click(object sender, EventArgs e) + { + #region 날짜 설정 + string date = set_date.Value.ToString().Substring(0, 10); + #endregion + + #region 근무 시작종료 설정 + if (cb_start_hour.SelectedIndex > cb_end_hour.SelectedIndex) { + int tmp = cb_start_hour.SelectedIndex; + cb_start_hour.SelectedIndex = cb_end_hour.SelectedIndex; + cb_end_hour.SelectedIndex = tmp; + } + string start_time = Regex.Replace(cb_start_hour.Text, @"\D", ""); + if (cb_start_hour.SelectedIndex < 0) { MessageBox.Show("시간이 선택되지 않았습니다!"); return; } + else if (start_30min.Checked) { start_time += ":30"; } + else { start_time += ":00"; } + + string end_time = Regex.Replace(cb_end_hour.Text, @"\D", ""); + if (cb_end_hour.SelectedIndex < 0) { MessageBox.Show("시간이 선택되지 않았습니다!"); return; } + else if (end_30min.Checked) { end_time += ":30"; } + else { end_time += ":00"; } + #endregion + + #region 근무시간 계산 + double start_work = cb_start_hour.SelectedIndex; + if (start_30min.Checked) { start_work += 0.5; } + + double end_work = cb_end_hour.SelectedIndex; + if (end_30min.Checked) { end_work += 0.5; } + + double work = end_work - start_work; + #endregion + + #region 시급입력 + string pay = ""; + if (rb_minpay.Checked) { pay = "8720"; } + else { pay = tb_pay.Text; } + #endregion + + string[] grid = { date, "", start_time, end_time, "0", work.ToString(), pay, "", "False" }; + + dataGridView1.Rows.Add(grid); + } + + private void btn_Save_Click(object sender, EventArgs e) + { + string[] input_area = { "compidx", "date", "name", "start", "end", + "work_time", "pay", "work" }; + if (!chk_name()) return; + for (int a = 0; a < dataGridView1.Rows.Count; a++) + { + string[] input_data = { + compidx, + dataGridView1.Rows[a].Cells["date"].Value.ToString(), + dataGridView1.Rows[a].Cells["Per_name"].Value.ToString(), + dataGridView1.Rows[a].Cells["start"].Value.ToString(), + dataGridView1.Rows[a].Cells["end"].Value.ToString(), + dataGridView1.Rows[a].Cells["today"].Value.ToString(), + dataGridView1.Rows[a].Cells["pay"].Value.ToString(), + dataGridView1.Rows[a].Cells["work"].Value.ToString() + }; + db.DB_INSERT("Part_Time", input_area, input_data); + } + MessageBox.Show("저장되었습니다!"); + } + #region Save_Sub + /// + /// 이름에 빈칸이 있는지 확인 + /// + /// + private bool chk_name() + { + for(int a = 0; a < dataGridView1.Rows.Count; a++) + { + if (dataGridView1.Rows[a].Cells["per_name"].Value.ToString() == "") + { + MessageBox.Show("이름이 빈칸입니다!"); + return false; + } + } + return true; + } + #endregion + + private void btn_Delete_Click(object sender, EventArgs e) + { + for (int a = 0; a < dataGridView1.Rows.Count; a++) + { + if (dataGridView1.Rows[a].Cells["del_chk"].Value.ToString() == "True") { + dataGridView1.Rows.RemoveAt(a); + } + } + MessageBox.Show("삭제되었습니다!"); + } + + private void btn_Close_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void btn_Lookup_Click(object sender, EventArgs e) + { + dataGridView2.Rows.Clear(); + + string Area = "`date`, `name`, `start`, `end`, `work_time`, `pay`, `work`"; + string[] s_date = { start_date.Value.ToString("yyyy-MM-dd"), end_date.Value.ToString("yyyy-MM-dd") }; + string data = db.Search_Date("Part_Time", Area, "date", s_date[0], s_date[1], compidx); + input_Grid(data.Split('|')); + total_pay(); + } + #region Lookup_Sub + private void input_Grid(string[] data) + { + string[] grid = { "", "", "", "", "", "", "", "" }; + for(int a = 0; a < data.Length; a++) + { + if (a % 7 == 0) { grid[0] = data[a]; } + if (a % 7 == 1) { grid[1] = data[a]; } + if (a % 7 == 2) { grid[2] = data[a]; } + if (a % 7 == 3) { grid[3] = data[a]; } + if (a % 7 == 4) { grid[4] = data[a]; } + if (a % 7 == 5) { grid[5] = data[a]; } + if (a % 7 == 6) { + grid[6] = res_pay(grid); + grid[7] = data[a]; + if (filter_name(grid)) { dataGridView2.Rows.Add(grid); } + } + } + } + private string res_pay(string[] grid) + { + double time = Convert.ToDouble(grid[4]); + double pay = Convert.ToDouble(grid[5]); + double res = time * pay; + return res.ToString(); + } + private void total_pay() + { + double total = 0; + for(int a = 0; a < dataGridView2.Rows.Count; a++) + { + double pay = Convert.ToDouble(dataGridView2.Rows[a].Cells["total"].Value.ToString()); + total += pay; + } + lbl_pay.Text = string.Format("{0:#,###}", total); + } + private bool filter_name(string[] grid) + { + if (cb_name.SelectedIndex == -1) return true; + if (grid[1] == cb_name.Text) return true; + return false; + } + #endregion + + private void dataGridView1_CellValidated(object sender, DataGridViewCellEventArgs e) + { + int col = e.ColumnIndex; + int row = e.RowIndex; + string name = dataGridView1.Columns[col].Name; + if (name == "minus") + { + string str_start = dataGridView1.Rows[row].Cells["start"].Value.ToString(); + if (str_start.Contains(":30")) { str_start = str_start.Replace(":30", ".5"); } + else { str_start = str_start.Replace(":00", ""); } + double start_work = Convert.ToDouble(str_start); + + string str_end = dataGridView1.Rows[row].Cells["end"].Value.ToString(); + if (str_end.Contains(":30")) { str_end = str_end.Replace(":30", ".5"); } + else { str_end = str_end.Replace(":00", ""); } + double end_work = Convert.ToDouble(str_end); + + string value = dataGridView1.Rows[row].Cells[col].Value.ToString(); + value = Regex.Replace(value, @"\D", ""); + double minus = Convert.ToDouble(value); + double total = end_work - start_work - minus; + dataGridView1.Rows[row].Cells["today"].Value = total.ToString(); + } + } + + private void cb_work_time_SelectedIndexChanged(object sender, EventArgs e) + { + switch (cb_work_time.SelectedIndex) + { + case 0: + break; + case 1: + cb_start_hour.SelectedIndex = 1; + cb_end_hour.SelectedIndex = 10; + break; + case 2: + cb_start_hour.SelectedIndex = 1; + cb_end_hour.SelectedIndex = 4; + break; + case 3: + cb_start_hour.SelectedIndex = 5; + cb_end_hour.SelectedIndex = 10; + break; + default: + break; + } + } + + private void rb_pay_CheckedChanged(object sender, EventArgs e) + { + if (rb_pay.Checked) { tb_pay.Enabled = true; } + else { tb_pay.Enabled = false; } + } + + private void tb_pay_KeyPress(object sender, KeyPressEventArgs e) + { + String_Text st = new String_Text(); + st.Only_Int(sender, e); + } + } +} diff --git a/Test_Project/Form1.resx b/unimarc/unimarc/회계/Part_time.resx similarity index 65% rename from Test_Project/Form1.resx rename to unimarc/unimarc/회계/Part_time.resx index 1af7de1..f3d7b80 100644 --- a/Test_Project/Form1.resx +++ b/unimarc/unimarc/회계/Part_time.resx @@ -117,4 +117,55 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + + + True + \ No newline at end of file