강기헌 강기헌 2022-09-02
..
@a5eb3edcc3f0424993cbc4c9859f9b9073bff632
KHModbus.sln
--- KHModbus.sln
+++ KHModbus.sln
@@ -1,9 +1,11 @@
 
 Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 16
-VisualStudioVersion = 16.0.32002.261
+# Visual Studio Version 17
+VisualStudioVersion = 17.2.32616.157
 MinimumVisualStudioVersion = 10.0.40219.1
 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KHModbus", "ModbusTest\KHModbus.csproj", "{2A789031-AEE6-436C-B5E0-AB764F55FCD2}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KHSCALE_TP", "KHSCALE_TP\KHSCALE_TP.csproj", "{2E133560-4F54-4D44-A0DB-EDB6C5C36E84}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -15,6 +17,10 @@
 		{2A789031-AEE6-436C-B5E0-AB764F55FCD2}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{2A789031-AEE6-436C-B5E0-AB764F55FCD2}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{2A789031-AEE6-436C-B5E0-AB764F55FCD2}.Release|Any CPU.Build.0 = Release|Any CPU
+		{2E133560-4F54-4D44-A0DB-EDB6C5C36E84}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{2E133560-4F54-4D44-A0DB-EDB6C5C36E84}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{2E133560-4F54-4D44-A0DB-EDB6C5C36E84}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{2E133560-4F54-4D44-A0DB-EDB6C5C36E84}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE
 
KHSCALE_TP/App.config (added)
+++ KHSCALE_TP/App.config
@@ -0,0 +1,6 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+    <startup> 
+        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
+    </startup>
+</configuration>(No newline at end of file)
 
KHSCALE_TP/ComCasCi501.cs (added)
+++ KHSCALE_TP/ComCasCi501.cs
@@ -0,0 +1,65 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace KHSCALE_TP
+{
+    public class ComCasCi501 : SerialBase
+    {
+        // 통신 프레임 사이즈가 고정일 경우 그 사이즈를 지정. 정해진 사이즈가 없으면 -1 리턴하고, 구분자로 프레임 구분하도록
+        protected override int GetFrameSize()
+        {
+            return -1;
+        }
+
+        // 통신 프레임 간의 구분자가 있을 경우 그 구분자를 지정
+        protected override char GetFrameDelimiter()
+        {
+            return '\n';
+        }
+
+        protected override bool Parse(List<byte> buffRecv)
+        {
+            try
+            {
+                for(int i=0; i<buffRecv.Count; i++)
+                {
+                    if (buffRecv[i] == 0)
+                        buffRecv[i] = 0x20;
+                }
+
+                string strRecv = Encoding.Default.GetString(buffRecv.ToArray());
+
+                int pos1 = strRecv.LastIndexOf("\n");
+                if (pos1 < 0) return false;
+
+                strRecv = strRecv.Substring(0, pos1);
+
+                int pos2 = strRecv.LastIndexOf("NT,");
+                int pos3 = strRecv.LastIndexOf("GS,");
+
+                int pos = Math.Max(pos2, pos3);
+                if (pos > 0)
+                {
+                    string val = strRecv.Substring(pos + 6, 8);
+                    val = val.Replace("+", "");
+                    val = val.Replace(" ", "");
+
+                    float result = 0;
+                    if (float.TryParse(val, out result))
+                    {
+                        this.SetValue(result);
+                    }
+                    return true;
+                }
+            }
+            catch
+            {
+
+            }
+            return true;
+        }
+    }
+}
 
KHSCALE_TP/ComFs1020c.cs (added)
+++ KHSCALE_TP/ComFs1020c.cs
@@ -0,0 +1,58 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace KHSCALE_TP
+{
+    public class ComFs1020c : SerialBase
+    {
+        // 통신 프레임 사이즈가 고정일 경우 그 사이즈를 지정. 정해진 사이즈가 없으면 -1 리턴하고, 구분자로 프레임 구분하도록
+        protected override int GetFrameSize()
+        {
+            return -1;
+        }
+
+        // 통신 프레임 간의 구분자가 있을 경우 그 구분자를 지정
+        protected override char GetFrameDelimiter()
+        {
+            return '\n';
+        }
+
+        protected override bool Parse(List<byte> buffRecv)
+        {
+            try
+            {
+                string strRecv = Encoding.Default.GetString(buffRecv.ToArray());
+
+                int pos1 = strRecv.LastIndexOf("\n");
+                if (pos1 < 0) return false;
+
+                strRecv = strRecv.Substring(0, pos1);
+
+                int pos2 = strRecv.LastIndexOf("NT,");
+                int pos3 = strRecv.LastIndexOf("GS,");
+
+                int pos = Math.Max(pos2, pos3);
+                if (pos > 0)
+                {
+                    string val = strRecv.Substring(pos + 3, 8);
+                    val = val.Replace("+", "");
+                    val = val.Replace(" ", "");
+
+                    float result = 0;
+                    if (float.TryParse(val, out result))
+                    {
+                        this.SetValue(result);
+                    }
+                    return true;
+                }
+            }
+            catch
+            {
+            }
+            return true;
+        }
+    }
+}
 
KHSCALE_TP/ComIcs9000.cs (added)
+++ KHSCALE_TP/ComIcs9000.cs
@@ -0,0 +1,58 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace KHSCALE_TP
+{
+    public class ComIcs9000 : SerialBase
+    {
+        // 통신 프레임 사이즈가 고정일 경우 그 사이즈를 지정. 정해진 사이즈가 없으면 -1 리턴하고, 구분자로 프레임 구분하도록
+        protected override int GetFrameSize()
+        {
+            return -1;
+        }
+
+        // 통신 프레임 간의 구분자가 있을 경우 그 구분자를 지정
+        protected override char GetFrameDelimiter()
+        {
+            return '\n';
+        }
+
+        protected override bool Parse(List<byte> buffRecv)
+        {
+            try
+            {
+                string strRecv = Encoding.Default.GetString(buffRecv.ToArray());
+
+                int pos1 = strRecv.LastIndexOf("\n");
+                if (pos1 < 0) return false;
+
+                strRecv = strRecv.Substring(0, pos1);
+
+                int pos2 = strRecv.LastIndexOf("NT,");
+                int pos3 = strRecv.LastIndexOf("GS,");
+
+                int pos = Math.Max(pos2, pos3);
+                if (pos > 0)
+                {
+                    string val = strRecv.Substring(pos + 3, 8);
+                    val = val.Replace("+", "");
+                    val = val.Replace(" ", "");
+
+                    float result = 0;
+                    if (float.TryParse(val, out result))
+                    {
+                        this.SetValue(result);
+                    }
+                    return true;
+                }
+            }
+            catch
+            {
+            }
+            return true;
+        }
+    }
+}
 
KHSCALE_TP/FormLogin.Designer.cs (added)
+++ KHSCALE_TP/FormLogin.Designer.cs
@@ -0,0 +1,271 @@
+namespace KHSCALE_TP
+{
+    partial class FormLogin
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.simpleButton_1 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_2 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_3 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_Backspace = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton10 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton1_X = new DevExpress.XtraEditors.SimpleButton();
+            this.textEdit_PIN = new DevExpress.XtraEditors.TextEdit();
+            this.lookUpEdit_User = new DevExpress.XtraEditors.LookUpEdit();
+            this.simpleButton_Cancel = new DevExpress.XtraEditors.SimpleButton();
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_PIN.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_User.Properties)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // simpleButton_1
+            // 
+            this.simpleButton_1.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_1.Appearance.Options.UseFont = true;
+            this.simpleButton_1.Location = new System.Drawing.Point(28, 203);
+            this.simpleButton_1.Name = "simpleButton_1";
+            this.simpleButton_1.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton_1.TabIndex = 0;
+            this.simpleButton_1.Text = "1";
+            this.simpleButton_1.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton_2
+            // 
+            this.simpleButton_2.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_2.Appearance.Options.UseFont = true;
+            this.simpleButton_2.Location = new System.Drawing.Point(109, 203);
+            this.simpleButton_2.Name = "simpleButton_2";
+            this.simpleButton_2.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton_2.TabIndex = 1;
+            this.simpleButton_2.Text = "2";
+            this.simpleButton_2.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton_3
+            // 
+            this.simpleButton_3.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_3.Appearance.Options.UseFont = true;
+            this.simpleButton_3.Location = new System.Drawing.Point(190, 203);
+            this.simpleButton_3.Name = "simpleButton_3";
+            this.simpleButton_3.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton_3.TabIndex = 2;
+            this.simpleButton_3.Text = "3";
+            this.simpleButton_3.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton3
+            // 
+            this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton3.Appearance.Options.UseFont = true;
+            this.simpleButton3.Location = new System.Drawing.Point(190, 282);
+            this.simpleButton3.Name = "simpleButton3";
+            this.simpleButton3.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton3.TabIndex = 5;
+            this.simpleButton3.Text = "6";
+            this.simpleButton3.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton4
+            // 
+            this.simpleButton4.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton4.Appearance.Options.UseFont = true;
+            this.simpleButton4.Location = new System.Drawing.Point(109, 282);
+            this.simpleButton4.Name = "simpleButton4";
+            this.simpleButton4.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton4.TabIndex = 4;
+            this.simpleButton4.Text = "5";
+            this.simpleButton4.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton5
+            // 
+            this.simpleButton5.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton5.Appearance.Options.UseFont = true;
+            this.simpleButton5.Location = new System.Drawing.Point(28, 282);
+            this.simpleButton5.Name = "simpleButton5";
+            this.simpleButton5.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton5.TabIndex = 3;
+            this.simpleButton5.Text = "4";
+            this.simpleButton5.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton6
+            // 
+            this.simpleButton6.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton6.Appearance.Options.UseFont = true;
+            this.simpleButton6.Location = new System.Drawing.Point(190, 361);
+            this.simpleButton6.Name = "simpleButton6";
+            this.simpleButton6.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton6.TabIndex = 8;
+            this.simpleButton6.Text = "9";
+            this.simpleButton6.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton7
+            // 
+            this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton7.Appearance.Options.UseFont = true;
+            this.simpleButton7.Location = new System.Drawing.Point(109, 361);
+            this.simpleButton7.Name = "simpleButton7";
+            this.simpleButton7.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton7.TabIndex = 7;
+            this.simpleButton7.Text = "8";
+            this.simpleButton7.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton8
+            // 
+            this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton8.Appearance.Options.UseFont = true;
+            this.simpleButton8.Location = new System.Drawing.Point(28, 361);
+            this.simpleButton8.Name = "simpleButton8";
+            this.simpleButton8.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton8.TabIndex = 6;
+            this.simpleButton8.Text = "7";
+            this.simpleButton8.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton_Backspace
+            // 
+            this.simpleButton_Backspace.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_Backspace.Appearance.Options.UseFont = true;
+            this.simpleButton_Backspace.Location = new System.Drawing.Point(28, 440);
+            this.simpleButton_Backspace.Name = "simpleButton_Backspace";
+            this.simpleButton_Backspace.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton_Backspace.TabIndex = 11;
+            this.simpleButton_Backspace.Text = "◀";
+            this.simpleButton_Backspace.Click += new System.EventHandler(this.simpleButton_Backspace_Click);
+            // 
+            // simpleButton10
+            // 
+            this.simpleButton10.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton10.Appearance.Options.UseFont = true;
+            this.simpleButton10.Location = new System.Drawing.Point(109, 440);
+            this.simpleButton10.Name = "simpleButton10";
+            this.simpleButton10.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton10.TabIndex = 10;
+            this.simpleButton10.Text = "0";
+            this.simpleButton10.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton1_X
+            // 
+            this.simpleButton1_X.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton1_X.Appearance.Options.UseFont = true;
+            this.simpleButton1_X.Location = new System.Drawing.Point(190, 440);
+            this.simpleButton1_X.Name = "simpleButton1_X";
+            this.simpleButton1_X.Size = new System.Drawing.Size(75, 73);
+            this.simpleButton1_X.TabIndex = 9;
+            this.simpleButton1_X.Text = "X";
+            this.simpleButton1_X.Click += new System.EventHandler(this.simpleButton1_X_Click);
+            // 
+            // textEdit_PIN
+            // 
+            this.textEdit_PIN.EditValue = "";
+            this.textEdit_PIN.Enabled = false;
+            this.textEdit_PIN.Location = new System.Drawing.Point(28, 133);
+            this.textEdit_PIN.Name = "textEdit_PIN";
+            this.textEdit_PIN.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 36F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textEdit_PIN.Properties.Appearance.Options.UseFont = true;
+            this.textEdit_PIN.Properties.Appearance.Options.UseTextOptions = true;
+            this.textEdit_PIN.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.textEdit_PIN.Properties.Appearance.TextOptions.VAlignment = DevExpress.Utils.VertAlignment.Center;
+            this.textEdit_PIN.Properties.MaxLength = 4;
+            this.textEdit_PIN.Properties.PasswordChar = '*';
+            this.textEdit_PIN.Properties.ReadOnly = true;
+            this.textEdit_PIN.Size = new System.Drawing.Size(237, 64);
+            this.textEdit_PIN.TabIndex = 12;
+            // 
+            // lookUpEdit_User
+            // 
+            this.lookUpEdit_User.Location = new System.Drawing.Point(28, 75);
+            this.lookUpEdit_User.Name = "lookUpEdit_User";
+            this.lookUpEdit_User.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lookUpEdit_User.Properties.Appearance.Options.UseFont = true;
+            this.lookUpEdit_User.Properties.AppearanceDropDown.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lookUpEdit_User.Properties.AppearanceDropDown.Options.UseFont = true;
+            this.lookUpEdit_User.Properties.AutoHeight = false;
+            this.lookUpEdit_User.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.lookUpEdit_User.Size = new System.Drawing.Size(237, 52);
+            this.lookUpEdit_User.TabIndex = 108;
+            // 
+            // simpleButton_Cancel
+            // 
+            this.simpleButton_Cancel.Appearance.Font = new System.Drawing.Font("굴림체", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
+            this.simpleButton_Cancel.Appearance.Options.UseFont = true;
+            this.simpleButton_Cancel.Location = new System.Drawing.Point(190, 12);
+            this.simpleButton_Cancel.Name = "simpleButton_Cancel";
+            this.simpleButton_Cancel.Size = new System.Drawing.Size(75, 45);
+            this.simpleButton_Cancel.TabIndex = 109;
+            this.simpleButton_Cancel.Text = "닫기";
+            this.simpleButton_Cancel.Click += new System.EventHandler(this.simpleButton_Cancel_Click);
+            // 
+            // FormLogin
+            // 
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
+            this.ClientSize = new System.Drawing.Size(293, 525);
+            this.ControlBox = false;
+            this.Controls.Add(this.simpleButton_Cancel);
+            this.Controls.Add(this.lookUpEdit_User);
+            this.Controls.Add(this.textEdit_PIN);
+            this.Controls.Add(this.simpleButton_Backspace);
+            this.Controls.Add(this.simpleButton10);
+            this.Controls.Add(this.simpleButton1_X);
+            this.Controls.Add(this.simpleButton6);
+            this.Controls.Add(this.simpleButton7);
+            this.Controls.Add(this.simpleButton8);
+            this.Controls.Add(this.simpleButton3);
+            this.Controls.Add(this.simpleButton4);
+            this.Controls.Add(this.simpleButton5);
+            this.Controls.Add(this.simpleButton_3);
+            this.Controls.Add(this.simpleButton_2);
+            this.Controls.Add(this.simpleButton_1);
+            this.Name = "FormLogin";
+            this.ShowIcon = false;
+            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_PIN.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_User.Properties)).EndInit();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private DevExpress.XtraEditors.SimpleButton simpleButton_1;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_2;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_3;
+        private DevExpress.XtraEditors.SimpleButton simpleButton3;
+        private DevExpress.XtraEditors.SimpleButton simpleButton4;
+        private DevExpress.XtraEditors.SimpleButton simpleButton5;
+        private DevExpress.XtraEditors.SimpleButton simpleButton6;
+        private DevExpress.XtraEditors.SimpleButton simpleButton7;
+        private DevExpress.XtraEditors.SimpleButton simpleButton8;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Backspace;
+        private DevExpress.XtraEditors.SimpleButton simpleButton10;
+        private DevExpress.XtraEditors.SimpleButton simpleButton1_X;
+        private DevExpress.XtraEditors.TextEdit textEdit_PIN;
+        private DevExpress.XtraEditors.LookUpEdit lookUpEdit_User;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Cancel;
+    }
+}(No newline at end of file)
 
KHSCALE_TP/FormLogin.cs (added)
+++ KHSCALE_TP/FormLogin.cs
@@ -0,0 +1,112 @@
+using DevExpress.XtraEditors;
+using PublicLib;
+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;
+
+namespace KHSCALE_TP
+{
+    public partial class FormLogin : Form
+    {
+        U3Database u3Database = new U3Database();
+        string m_COMP_CD = "";
+
+        string Login_ID = "";
+        string Login_NM = "";
+
+        public FormLogin(string COMP_CD)
+        {
+            InitializeComponent();
+
+            m_COMP_CD = COMP_CD;
+            DataView grpUser = new DataView(GetUserTable());
+            UtilClass.SetLookup(this.lookUpEdit_User, grpUser, "USR_ID", "USR_NM", true);
+        }
+
+        private DataTable GetUserTable()
+        {
+            try
+            {
+                return u3Database.OpenSQL("select a.USR_ID, a.USR_NM from dbo.T_SYS_USER a where a.COMP_CD = '" + m_COMP_CD + "'  and isnull(a.DEL_YN,'N') = 'N' and isnull(a.PRODUCTION_YN,'N') = 'Y' order by a.USR_NM"
+                    + "");
+            }
+            catch (Exception ex)
+            {
+                XtraMessageBox.Show(ex.Message);
+            }
+            return null;
+        }
+
+        private void simpleButton_Cancel_Click(object sender, EventArgs e)
+        {
+            this.Close();
+        }
+
+        private void simpleButton_Number_Click(object sender, EventArgs e)
+        {
+            bool bCehck = false;
+            if (textEdit_PIN.Text.Length <= 3)
+            {
+                textEdit_PIN.Text += ((SimpleButton)sender).Text;
+                textEdit_PIN.ForeColor = Color.Black;
+                bCehck = true;
+            }
+            if (textEdit_PIN.Text.Length == 4 && bCehck)
+            {
+                InputCheck();
+            }
+
+        }
+
+        private void simpleButton1_X_Click(object sender, EventArgs e)
+        {
+            textEdit_PIN.Text = "";
+            textEdit_PIN.ForeColor = Color.Black;
+        }
+
+        private void simpleButton_Backspace_Click(object sender, EventArgs e)
+        {
+            if (textEdit_PIN.Text.Length < 1) return;
+            textEdit_PIN.Text = textEdit_PIN.Text.Substring(0, textEdit_PIN.Text.Length - 1);
+            textEdit_PIN.ForeColor = Color.Black;
+        }
+
+        private void InputCheck()
+        {
+            try
+            {
+                this.Cursor = Cursors.WaitCursor;
+                DataTable dt = u3Database.OpenSQL("select a.USR_ID, a.USR_NM from dbo.T_SYS_USER a where a.COMP_CD = '" + m_COMP_CD + "'  and isnull(a.DEL_YN,'N') = 'N' and isnull(a.PRODUCTION_YN,'N') = 'Y'" +
+                    " and '" + this.lookUpEdit_User.EditValue + "' = a.USR_ID and TOUCH_PIN_NO = '" + textEdit_PIN.Text + "'" +
+                    " order by a.USR_NM"
+                    + "");
+
+                if (dt != null)
+                {
+                    if (dt.Rows.Count > 0)
+                    {
+                        ConstClass._USR_ID = dt.Rows[0]["USR_ID"].ToString();
+                        ConstClass._USR_NM = dt.Rows[0]["USR_NM"].ToString();
+                        this.DialogResult = DialogResult.Yes;
+                    }
+                    else
+                    {
+                        textEdit_PIN.ForeColor = Color.Red;
+                    }
+                }
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                XtraMessageBox.Show(ex.Message);
+            }
+            this.Cursor = Cursors.Arrow;
+        }
+    }
+}
 
KHSCALE_TP/FormLogin.resx (added)
+++ KHSCALE_TP/FormLogin.resx
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+</root>(No newline at end of file)
 
KHSCALE_TP/FormScale.Designer.cs (added)
+++ KHSCALE_TP/FormScale.Designer.cs
@@ -0,0 +1,384 @@
+namespace KHSCALE_TP
+{
+    partial class FormScale
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.components = new System.ComponentModel.Container();
+            this.timer_min = new System.Windows.Forms.Timer(this.components);
+            this.timer_save = new System.Windows.Forms.Timer(this.components);
+            this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
+            this.textEdit_ipaddr = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
+            this.textEdit_com = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
+            this.textEdit_rxcount = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
+            this.textEdit_updtime = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
+            this.button_test = new System.Windows.Forms.Button();
+            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
+            this.textEdit_value = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
+            this.textEdit_tpid = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
+            this.panelControl5.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ipaddr.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
+            this.panelControl1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_com.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
+            this.panelControl2.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_rxcount.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
+            this.panelControl3.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_updtime.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
+            this.panelControl4.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_value.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
+            this.panelControl6.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_tpid.Properties)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // timer_min
+            // 
+            this.timer_min.Tick += new System.EventHandler(this.timer_min_Tick);
+            // 
+            // timer_save
+            // 
+            this.timer_save.Tick += new System.EventHandler(this.timer_save_Tick);
+            // 
+            // panelControl5
+            // 
+            this.panelControl5.Controls.Add(this.textEdit_ipaddr);
+            this.panelControl5.Controls.Add(this.labelControl4);
+            this.panelControl5.Location = new System.Drawing.Point(12, 23);
+            this.panelControl5.Name = "panelControl5";
+            this.panelControl5.Size = new System.Drawing.Size(345, 40);
+            this.panelControl5.TabIndex = 109;
+            this.panelControl5.TabStop = true;
+            // 
+            // textEdit_ipaddr
+            // 
+            this.textEdit_ipaddr.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.textEdit_ipaddr.Enabled = false;
+            this.textEdit_ipaddr.Location = new System.Drawing.Point(115, 2);
+            this.textEdit_ipaddr.Name = "textEdit_ipaddr";
+            this.textEdit_ipaddr.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.textEdit_ipaddr.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textEdit_ipaddr.Properties.Appearance.Options.UseBackColor = true;
+            this.textEdit_ipaddr.Properties.Appearance.Options.UseFont = true;
+            this.textEdit_ipaddr.Properties.AutoHeight = false;
+            this.textEdit_ipaddr.Properties.ReadOnly = true;
+            this.textEdit_ipaddr.Size = new System.Drawing.Size(228, 36);
+            this.textEdit_ipaddr.TabIndex = 1;
+            // 
+            // labelControl4
+            // 
+            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl4.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl4.Location = new System.Drawing.Point(2, 2);
+            this.labelControl4.Name = "labelControl4";
+            this.labelControl4.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl4.Size = new System.Drawing.Size(113, 36);
+            this.labelControl4.TabIndex = 0;
+            this.labelControl4.Text = "IP주소";
+            // 
+            // panelControl1
+            // 
+            this.panelControl1.Controls.Add(this.textEdit_com);
+            this.panelControl1.Controls.Add(this.labelControl1);
+            this.panelControl1.Location = new System.Drawing.Point(12, 115);
+            this.panelControl1.Name = "panelControl1";
+            this.panelControl1.Size = new System.Drawing.Size(437, 40);
+            this.panelControl1.TabIndex = 110;
+            this.panelControl1.TabStop = true;
+            // 
+            // textEdit_com
+            // 
+            this.textEdit_com.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.textEdit_com.Enabled = false;
+            this.textEdit_com.Location = new System.Drawing.Point(115, 2);
+            this.textEdit_com.Name = "textEdit_com";
+            this.textEdit_com.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.textEdit_com.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textEdit_com.Properties.Appearance.Options.UseBackColor = true;
+            this.textEdit_com.Properties.Appearance.Options.UseFont = true;
+            this.textEdit_com.Properties.AutoHeight = false;
+            this.textEdit_com.Properties.ReadOnly = true;
+            this.textEdit_com.Size = new System.Drawing.Size(320, 36);
+            this.textEdit_com.TabIndex = 1;
+            // 
+            // labelControl1
+            // 
+            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl1.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl1.Location = new System.Drawing.Point(2, 2);
+            this.labelControl1.Name = "labelControl1";
+            this.labelControl1.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl1.Size = new System.Drawing.Size(113, 36);
+            this.labelControl1.TabIndex = 0;
+            this.labelControl1.Text = "통신설정";
+            // 
+            // panelControl2
+            // 
+            this.panelControl2.Controls.Add(this.textEdit_rxcount);
+            this.panelControl2.Controls.Add(this.labelControl2);
+            this.panelControl2.Location = new System.Drawing.Point(12, 161);
+            this.panelControl2.Name = "panelControl2";
+            this.panelControl2.Size = new System.Drawing.Size(437, 40);
+            this.panelControl2.TabIndex = 111;
+            this.panelControl2.TabStop = true;
+            // 
+            // textEdit_rxcount
+            // 
+            this.textEdit_rxcount.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.textEdit_rxcount.Enabled = false;
+            this.textEdit_rxcount.Location = new System.Drawing.Point(115, 2);
+            this.textEdit_rxcount.Name = "textEdit_rxcount";
+            this.textEdit_rxcount.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.textEdit_rxcount.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textEdit_rxcount.Properties.Appearance.Options.UseBackColor = true;
+            this.textEdit_rxcount.Properties.Appearance.Options.UseFont = true;
+            this.textEdit_rxcount.Properties.AutoHeight = false;
+            this.textEdit_rxcount.Properties.ReadOnly = true;
+            this.textEdit_rxcount.Size = new System.Drawing.Size(320, 36);
+            this.textEdit_rxcount.TabIndex = 1;
+            // 
+            // labelControl2
+            // 
+            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl2.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl2.Location = new System.Drawing.Point(2, 2);
+            this.labelControl2.Name = "labelControl2";
+            this.labelControl2.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl2.Size = new System.Drawing.Size(113, 36);
+            this.labelControl2.TabIndex = 0;
+            this.labelControl2.Text = "RX 횟수";
+            // 
+            // panelControl3
+            // 
+            this.panelControl3.Controls.Add(this.textEdit_updtime);
+            this.panelControl3.Controls.Add(this.labelControl3);
+            this.panelControl3.Location = new System.Drawing.Point(12, 207);
+            this.panelControl3.Name = "panelControl3";
+            this.panelControl3.Size = new System.Drawing.Size(437, 40);
+            this.panelControl3.TabIndex = 112;
+            this.panelControl3.TabStop = true;
+            // 
+            // textEdit_updtime
+            // 
+            this.textEdit_updtime.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.textEdit_updtime.Enabled = false;
+            this.textEdit_updtime.Location = new System.Drawing.Point(115, 2);
+            this.textEdit_updtime.Name = "textEdit_updtime";
+            this.textEdit_updtime.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.textEdit_updtime.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textEdit_updtime.Properties.Appearance.Options.UseBackColor = true;
+            this.textEdit_updtime.Properties.Appearance.Options.UseFont = true;
+            this.textEdit_updtime.Properties.AutoHeight = false;
+            this.textEdit_updtime.Properties.ReadOnly = true;
+            this.textEdit_updtime.Size = new System.Drawing.Size(320, 36);
+            this.textEdit_updtime.TabIndex = 1;
+            // 
+            // labelControl3
+            // 
+            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl3.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl3.Location = new System.Drawing.Point(2, 2);
+            this.labelControl3.Name = "labelControl3";
+            this.labelControl3.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl3.Size = new System.Drawing.Size(113, 36);
+            this.labelControl3.TabIndex = 0;
+            this.labelControl3.Text = "갱신시각";
+            // 
+            // button_test
+            // 
+            this.button_test.Location = new System.Drawing.Point(363, 23);
+            this.button_test.Name = "button_test";
+            this.button_test.Size = new System.Drawing.Size(86, 40);
+            this.button_test.TabIndex = 113;
+            this.button_test.Text = "...";
+            this.button_test.UseVisualStyleBackColor = true;
+            this.button_test.Click += new System.EventHandler(this.button_test_Click);
+            // 
+            // panelControl4
+            // 
+            this.panelControl4.Controls.Add(this.textEdit_value);
+            this.panelControl4.Controls.Add(this.labelControl5);
+            this.panelControl4.Location = new System.Drawing.Point(12, 253);
+            this.panelControl4.Name = "panelControl4";
+            this.panelControl4.Size = new System.Drawing.Size(437, 40);
+            this.panelControl4.TabIndex = 114;
+            this.panelControl4.TabStop = true;
+            // 
+            // textEdit_value
+            // 
+            this.textEdit_value.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.textEdit_value.Enabled = false;
+            this.textEdit_value.Location = new System.Drawing.Point(115, 2);
+            this.textEdit_value.Name = "textEdit_value";
+            this.textEdit_value.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.textEdit_value.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textEdit_value.Properties.Appearance.Options.UseBackColor = true;
+            this.textEdit_value.Properties.Appearance.Options.UseFont = true;
+            this.textEdit_value.Properties.AutoHeight = false;
+            this.textEdit_value.Properties.ReadOnly = true;
+            this.textEdit_value.Size = new System.Drawing.Size(320, 36);
+            this.textEdit_value.TabIndex = 1;
+            // 
+            // labelControl5
+            // 
+            this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl5.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl5.Location = new System.Drawing.Point(2, 2);
+            this.labelControl5.Name = "labelControl5";
+            this.labelControl5.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl5.Size = new System.Drawing.Size(113, 36);
+            this.labelControl5.TabIndex = 0;
+            this.labelControl5.Text = "측정값";
+            // 
+            // panelControl6
+            // 
+            this.panelControl6.Controls.Add(this.textEdit_tpid);
+            this.panelControl6.Controls.Add(this.labelControl6);
+            this.panelControl6.Location = new System.Drawing.Point(12, 69);
+            this.panelControl6.Name = "panelControl6";
+            this.panelControl6.Size = new System.Drawing.Size(437, 40);
+            this.panelControl6.TabIndex = 115;
+            this.panelControl6.TabStop = true;
+            // 
+            // textEdit_tpid
+            // 
+            this.textEdit_tpid.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.textEdit_tpid.Enabled = false;
+            this.textEdit_tpid.Location = new System.Drawing.Point(115, 2);
+            this.textEdit_tpid.Name = "textEdit_tpid";
+            this.textEdit_tpid.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.textEdit_tpid.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.textEdit_tpid.Properties.Appearance.Options.UseBackColor = true;
+            this.textEdit_tpid.Properties.Appearance.Options.UseFont = true;
+            this.textEdit_tpid.Properties.AutoHeight = false;
+            this.textEdit_tpid.Properties.ReadOnly = true;
+            this.textEdit_tpid.Size = new System.Drawing.Size(320, 36);
+            this.textEdit_tpid.TabIndex = 1;
+            // 
+            // labelControl6
+            // 
+            this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl6.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl6.Location = new System.Drawing.Point(2, 2);
+            this.labelControl6.Name = "labelControl6";
+            this.labelControl6.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl6.Size = new System.Drawing.Size(113, 36);
+            this.labelControl6.TabIndex = 0;
+            this.labelControl6.Text = "터치패널ID";
+            // 
+            // FormScale
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ClientSize = new System.Drawing.Size(461, 322);
+            this.Controls.Add(this.panelControl6);
+            this.Controls.Add(this.panelControl4);
+            this.Controls.Add(this.button_test);
+            this.Controls.Add(this.panelControl3);
+            this.Controls.Add(this.panelControl2);
+            this.Controls.Add(this.panelControl1);
+            this.Controls.Add(this.panelControl5);
+            this.DoubleBuffered = true;
+            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+            this.Name = "FormScale";
+            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+            this.Text = "FormScale";
+            this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormScale_FormClosing);
+            this.Load += new System.EventHandler(this.FormScale_Load);
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
+            this.panelControl5.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_ipaddr.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
+            this.panelControl1.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_com.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
+            this.panelControl2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_rxcount.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
+            this.panelControl3.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_updtime.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
+            this.panelControl4.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_value.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
+            this.panelControl6.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.textEdit_tpid.Properties)).EndInit();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.Timer timer_min;
+        private System.Windows.Forms.Timer timer_save;
+        private DevExpress.XtraEditors.PanelControl panelControl5;
+        private DevExpress.XtraEditors.TextEdit textEdit_ipaddr;
+        private DevExpress.XtraEditors.LabelControl labelControl4;
+        private DevExpress.XtraEditors.PanelControl panelControl1;
+        private DevExpress.XtraEditors.TextEdit textEdit_com;
+        private DevExpress.XtraEditors.LabelControl labelControl1;
+        private DevExpress.XtraEditors.PanelControl panelControl2;
+        private DevExpress.XtraEditors.TextEdit textEdit_rxcount;
+        private DevExpress.XtraEditors.LabelControl labelControl2;
+        private DevExpress.XtraEditors.PanelControl panelControl3;
+        private DevExpress.XtraEditors.TextEdit textEdit_updtime;
+        private DevExpress.XtraEditors.LabelControl labelControl3;
+        private System.Windows.Forms.Button button_test;
+        private DevExpress.XtraEditors.PanelControl panelControl4;
+        private DevExpress.XtraEditors.TextEdit textEdit_value;
+        private DevExpress.XtraEditors.LabelControl labelControl5;
+        private DevExpress.XtraEditors.PanelControl panelControl6;
+        private DevExpress.XtraEditors.TextEdit textEdit_tpid;
+        private DevExpress.XtraEditors.LabelControl labelControl6;
+    }
+}(No newline at end of file)
 
KHSCALE_TP/FormScale.cs (added)
+++ KHSCALE_TP/FormScale.cs
@@ -0,0 +1,136 @@
+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.Net;
+
+namespace KHSCALE_TP
+{
+    public partial class FormScale : Form
+    {
+        // 전자 저울 변수 선언
+        private SerialBase m_ser = null;
+        private string m_strip = "";
+        private string m_strTouchid = "";
+
+        public FormScale()
+        {
+            InitializeComponent();
+        }
+
+        private void FormScale_Load(object sender, EventArgs e)
+        {
+            this.WindowState = FormWindowState.Minimized;
+
+            IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
+            foreach (IPAddress ip in host.AddressList)
+            {
+                m_strip = ip.ToString();
+            }
+
+            m_strip = "192.168.1.121";
+
+            U3Database db = new U3Database();
+            DataTable dt = db.OpenSQL("select * from T_STD_MACH where MACH_TYPE = 'TP'");
+            foreach (DataRow dr in dt.Rows)
+            {
+                if (dr["REMARK01"].ToString() == m_strip)
+                {
+                    m_strTouchid = dr["MACH_CD"].ToString();
+                    this.textEdit_tpid.Text = m_strTouchid;
+                }
+            }
+
+            SetScale();
+
+            this.textEdit_ipaddr.Text = m_strip;
+            if (m_ser != null)
+                this.textEdit_com.Text = m_ser.GetComSetting();
+            else
+                this.textEdit_com.Text = "통신설정 실패";
+
+            timer_min.Enabled = true;
+            timer_min.Interval = 20000;
+            timer_save.Enabled = true;
+            timer_save.Interval = 1000;
+        }
+
+        private void SetScale()
+        {
+            //CAS 501/600
+            if (m_strip == "192.168.1.121" || m_strip == "192.168.1.124")
+            {
+                m_ser = new ComCasCi501();
+                m_ser.Init("COM1", 9600, 0, 8, 1);
+            }
+            //ICS9000
+            else if (m_strip == "192.168.1.125")
+            {
+                m_ser = new ComIcs9000();
+                m_ser.Init("COM1", 9600, 0, 8, 1);
+            }
+            //FS-1020C
+            else if (m_strip == "192.168.1.126" || m_strip == "192.168.1.127" || m_strip == "192.168.1.128" || m_strip == "192.168.1.122" || m_strip == "192.168.1.123")
+            {
+                m_ser = new ComFs1020c();
+                m_ser.Init("COM1", 9600, 0, 8, 1);
+            }
+            else if (m_strip == "192.168.1.129")
+            {
+                m_ser = new ComFs1020c();
+                // 구리스는 COM2 / 그 외는 COM1
+                m_ser.Init("COM2", 9600, 0, 8, 1);
+            }
+        }
+
+        private void timer_min_Tick(object sender, EventArgs e)
+        {
+            this.WindowState = FormWindowState.Minimized;
+        }
+
+        private void timer_save_Tick(object sender, EventArgs e)
+        {
+            if (m_ser != null)
+            {
+                this.textEdit_value.Text = m_ser.GetValue().ToString();
+                this.textEdit_rxcount.Text = m_ser.GetRecvCount().ToString();
+                this.textEdit_updtime.Text = m_ser.GetUpdTime().ToString("yyyy-MM-dd HH:mm:ss");
+
+                string strSQL = "update T_HT_REAL_SCALE set ";
+                strSQL += " SCALE_VALUE = " + m_ser.GetValue().ToString() + ",";
+                strSQL += " REG_IP = '" + m_strip + "',";
+                strSQL += " REG_DT = getdate() ";
+                strSQL += " where COMP_CD = '0001' and TOUCH_CD = '" + m_strTouchid + "'";
+
+                U3Database db = new U3Database();
+                db.ExcuteSql(strSQL);
+            }
+            else
+            {
+                this.textEdit_value.Text = "";
+                this.textEdit_rxcount.Text = "";
+                this.textEdit_updtime.Text = "";
+            }
+        }
+
+        private void button_test_Click(object sender, EventArgs e)
+        {
+            //Application.Restart();
+        }
+
+        private void FormScale_FormClosing(object sender, FormClosingEventArgs e)
+        {
+            // 윈도우 종료가 아닐때만 프로그램 종료 안되게
+            if (e.CloseReason != CloseReason.WindowsShutDown)
+            {
+                this.WindowState = FormWindowState.Minimized;
+                e.Cancel = true;
+            }
+        }
+    }
+}
 
KHSCALE_TP/FormScale.resx (added)
+++ KHSCALE_TP/FormScale.resx
@@ -0,0 +1,129 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <metadata name="timer_min.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>17, 17</value>
+  </metadata>
+  <metadata name="timer_save.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>121, 18</value>
+  </metadata>
+  <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>65</value>
+  </metadata>
+</root>(No newline at end of file)
 
KHSCALE_TP/KHSCALE_TP.csproj (added)
+++ KHSCALE_TP/KHSCALE_TP.csproj
@@ -0,0 +1,310 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
+  <PropertyGroup>
+    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+    <ProjectGuid>{2E133560-4F54-4D44-A0DB-EDB6C5C36E84}</ProjectGuid>
+    <OutputType>WinExe</OutputType>
+    <RootNamespace>KHSCALE_TP</RootNamespace>
+    <AssemblyName>KHSCALE_TP</AssemblyName>
+    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
+    <FileAlignment>512</FileAlignment>
+    <Deterministic>true</Deterministic>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugSymbols>true</DebugSymbols>
+    <DebugType>full</DebugType>
+    <Optimize>false</Optimize>
+    <OutputPath>bin\Debug\</OutputPath>
+    <DefineConstants>DEBUG;TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
+    <PlatformTarget>AnyCPU</PlatformTarget>
+    <DebugType>pdbonly</DebugType>
+    <Optimize>true</Optimize>
+    <OutputPath>bin\Release\</OutputPath>
+    <DefineConstants>TRACE</DefineConstants>
+    <ErrorReport>prompt</ErrorReport>
+    <WarningLevel>4</WarningLevel>
+  </PropertyGroup>
+  <PropertyGroup>
+    <ApplicationIcon>content-window_icon-icons.com_58037.ico</ApplicationIcon>
+  </PropertyGroup>
+  <ItemGroup>
+    <Reference Include="AegisImplicitMail, Version=1.0.0.1, Culture=neutral, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\AegisImplicitMail.dll</HintPath>
+    </Reference>
+    <Reference Include="ClientLib">
+      <HintPath>..\GUSALE_TP\bin\Debug\ClientLib.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.BonusSkins.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.BonusSkins.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Charts.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Charts.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.CodeParser.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.CodeParser.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Data.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Data.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.DataAccess.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.DataAccess.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.DataAccess.v14.1.UI, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.DataAccess.v14.1.UI.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Docs.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Docs.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Office.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Office.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Pdf.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Pdf.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Pdf.v14.1.Drawing, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Pdf.v14.1.Drawing.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.PivotGrid.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.PivotGrid.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Printing.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Printing.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.RichEdit.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.RichEdit.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Snap.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Snap.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Sparkline.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Sparkline.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Spreadsheet.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Spreadsheet.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Utils.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Utils.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Utils.v14.1.UI, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Utils.v14.1.UI.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.Xpo.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.Xpo.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraBars.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraBars.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraCharts.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraCharts.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraCharts.v14.1.Extensions, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraCharts.v14.1.Extensions.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraCharts.v14.1.UI, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraCharts.v14.1.UI.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraCharts.v14.1.Wizard, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraCharts.v14.1.Wizard.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraEditors.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraGauges.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraGauges.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraGrid.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraGrid.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraLayout.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraLayout.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraNavBar.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraNavBar.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraPdfViewer.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraPdfViewer.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraPivotGrid.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraPivotGrid.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraPrinting.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraPrinting.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraReports.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraReports.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraReports.v14.1.Extensions, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraReports.v14.1.Extensions.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraRichEdit.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraRichEdit.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraScheduler.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraScheduler.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraScheduler.v14.1.Core, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraScheduler.v14.1.Core.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraTreeList.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraTreeList.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraVerticalGrid.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraVerticalGrid.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="DevExpress.XtraWizard.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\DevExpress.XtraWizard.v14.1.dll</HintPath>
+    </Reference>
+    <Reference Include="PublicLib, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
+      <SpecificVersion>False</SpecificVersion>
+      <HintPath>..\GUSALE_TP\bin\Debug\PublicLib.dll</HintPath>
+    </Reference>
+    <Reference Include="System" />
+    <Reference Include="System.Core" />
+    <Reference Include="System.Xml.Linq" />
+    <Reference Include="System.Data.DataSetExtensions" />
+    <Reference Include="Microsoft.CSharp" />
+    <Reference Include="System.Data" />
+    <Reference Include="System.Deployment" />
+    <Reference Include="System.Drawing" />
+    <Reference Include="System.Net.Http" />
+    <Reference Include="System.Windows.Forms" />
+    <Reference Include="System.Xml" />
+  </ItemGroup>
+  <ItemGroup>
+    <Compile Include="ComCasCi501.cs" />
+    <Compile Include="ComFs1020c.cs" />
+    <Compile Include="ComIcs9000.cs" />
+    <Compile Include="FormLogin.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="FormLogin.Designer.cs">
+      <DependentUpon>FormLogin.cs</DependentUpon>
+    </Compile>
+    <Compile Include="FormScale.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="FormScale.Designer.cs">
+      <DependentUpon>FormScale.cs</DependentUpon>
+    </Compile>
+    <Compile Include="MainForm.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="MainForm.Designer.cs">
+      <DependentUpon>MainForm.cs</DependentUpon>
+    </Compile>
+    <Compile Include="Program.cs" />
+    <Compile Include="Properties\AssemblyInfo.cs" />
+    <Compile Include="SerialBase.cs" />
+    <Compile Include="SerialPort.cs" />
+    <Compile Include="U3Config.cs" />
+    <Compile Include="U3Database.cs" />
+    <Compile Include="U3Util.cs" />
+    <Compile Include="UcInsertWork.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="UcInsertWork.Designer.cs">
+      <DependentUpon>UcInsertWork.cs</DependentUpon>
+    </Compile>
+    <Compile Include="UcOrderList.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="UcOrderList.Designer.cs">
+      <DependentUpon>UcOrderList.cs</DependentUpon>
+    </Compile>
+    <Compile Include="UcWork.cs">
+      <SubType>UserControl</SubType>
+    </Compile>
+    <Compile Include="UcWork.Designer.cs">
+      <DependentUpon>UcWork.cs</DependentUpon>
+    </Compile>
+    <EmbeddedResource Include="FormScale.resx">
+      <DependentUpon>FormScale.cs</DependentUpon>
+    </EmbeddedResource>
+    <EmbeddedResource Include="MainForm.resx">
+      <DependentUpon>MainForm.cs</DependentUpon>
+    </EmbeddedResource>
+    <EmbeddedResource Include="Properties\licenses.licx" />
+    <EmbeddedResource Include="Properties\Resources.resx">
+      <Generator>ResXFileCodeGenerator</Generator>
+      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
+      <SubType>Designer</SubType>
+    </EmbeddedResource>
+    <Compile Include="Properties\Resources.Designer.cs">
+      <AutoGen>True</AutoGen>
+      <DependentUpon>Resources.resx</DependentUpon>
+    </Compile>
+    <EmbeddedResource Include="UcInsertWork.resx">
+      <DependentUpon>UcInsertWork.cs</DependentUpon>
+    </EmbeddedResource>
+    <EmbeddedResource Include="UcOrderList.resx">
+      <DependentUpon>UcOrderList.cs</DependentUpon>
+    </EmbeddedResource>
+    <EmbeddedResource Include="UcWork.resx">
+      <DependentUpon>UcWork.cs</DependentUpon>
+    </EmbeddedResource>
+    <None Include="Properties\Settings.settings">
+      <Generator>SettingsSingleFileGenerator</Generator>
+      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
+    </None>
+    <Compile Include="Properties\Settings.Designer.cs">
+      <AutoGen>True</AutoGen>
+      <DependentUpon>Settings.settings</DependentUpon>
+      <DesignTimeSharedInput>True</DesignTimeSharedInput>
+    </Compile>
+  </ItemGroup>
+  <ItemGroup>
+    <None Include="App.config" />
+  </ItemGroup>
+  <ItemGroup>
+    <Content Include="content-window_icon-icons.com_58037.ico" />
+  </ItemGroup>
+  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
+</Project>(No newline at end of file)
 
KHSCALE_TP/MainForm.Designer.cs (added)
+++ KHSCALE_TP/MainForm.Designer.cs
@@ -0,0 +1,130 @@
+namespace KHSCALE_TP
+{
+    partial class MainForm
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+
+        #region Windows Form 디자이너에서 생성한 코드
+
+        /// <summary>
+        /// 디자이너 지원에 필요한 메서드입니다. 
+        /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.simpleButton_Cancel = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl_Manu = new DevExpress.XtraEditors.PanelControl();
+            this.labelControl_User = new DevExpress.XtraEditors.LabelControl();
+            this.simpleButton_Login = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl_Sub = new DevExpress.XtraEditors.PanelControl();
+            this.panelControl_Main = new DevExpress.XtraEditors.PanelControl();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Manu)).BeginInit();
+            this.panelControl_Manu.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Sub)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Main)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // simpleButton_Cancel
+            // 
+            this.simpleButton_Cancel.Appearance.Font = new System.Drawing.Font("굴림체", 9F);
+            this.simpleButton_Cancel.Appearance.Options.UseFont = true;
+            this.simpleButton_Cancel.Location = new System.Drawing.Point(938, 5);
+            this.simpleButton_Cancel.Name = "simpleButton_Cancel";
+            this.simpleButton_Cancel.Size = new System.Drawing.Size(81, 39);
+            this.simpleButton_Cancel.TabIndex = 21;
+            this.simpleButton_Cancel.Text = "닫기";
+            this.simpleButton_Cancel.Click += new System.EventHandler(this.simpleButton_Cancel_Click);
+            // 
+            // panelControl_Manu
+            // 
+            this.panelControl_Manu.Controls.Add(this.labelControl_User);
+            this.panelControl_Manu.Controls.Add(this.simpleButton_Login);
+            this.panelControl_Manu.Controls.Add(this.simpleButton_Cancel);
+            this.panelControl_Manu.Dock = System.Windows.Forms.DockStyle.Top;
+            this.panelControl_Manu.Location = new System.Drawing.Point(0, 0);
+            this.panelControl_Manu.Name = "panelControl_Manu";
+            this.panelControl_Manu.Size = new System.Drawing.Size(1024, 50);
+            this.panelControl_Manu.TabIndex = 23;
+            // 
+            // labelControl_User
+            // 
+            this.labelControl_User.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl_User.Location = new System.Drawing.Point(162, 9);
+            this.labelControl_User.Name = "labelControl_User";
+            this.labelControl_User.Size = new System.Drawing.Size(0, 29);
+            this.labelControl_User.TabIndex = 23;
+            // 
+            // simpleButton_Login
+            // 
+            this.simpleButton_Login.Appearance.Font = new System.Drawing.Font("Tahoma", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_Login.Appearance.Options.UseFont = true;
+            this.simpleButton_Login.Location = new System.Drawing.Point(5, 5);
+            this.simpleButton_Login.Name = "simpleButton_Login";
+            this.simpleButton_Login.Size = new System.Drawing.Size(151, 39);
+            this.simpleButton_Login.TabIndex = 22;
+            this.simpleButton_Login.Text = "LOGIN";
+            this.simpleButton_Login.Click += new System.EventHandler(this.simpleButton_Login_Click);
+            // 
+            // panelControl_Sub
+            // 
+            this.panelControl_Sub.Dock = System.Windows.Forms.DockStyle.Left;
+            this.panelControl_Sub.Location = new System.Drawing.Point(0, 50);
+            this.panelControl_Sub.Name = "panelControl_Sub";
+            this.panelControl_Sub.Size = new System.Drawing.Size(124, 550);
+            this.panelControl_Sub.TabIndex = 24;
+            this.panelControl_Sub.Visible = false;
+            // 
+            // panelControl_Main
+            // 
+            this.panelControl_Main.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.panelControl_Main.Location = new System.Drawing.Point(124, 50);
+            this.panelControl_Main.Name = "panelControl_Main";
+            this.panelControl_Main.Size = new System.Drawing.Size(900, 550);
+            this.panelControl_Main.TabIndex = 25;
+            // 
+            // MainForm
+            // 
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
+            this.ClientSize = new System.Drawing.Size(1024, 600);
+            this.Controls.Add(this.panelControl_Main);
+            this.Controls.Add(this.panelControl_Sub);
+            this.Controls.Add(this.panelControl_Manu);
+            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
+            this.Name = "MainForm";
+            this.Text = "MainForm";
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Manu)).EndInit();
+            this.panelControl_Manu.ResumeLayout(false);
+            this.panelControl_Manu.PerformLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Sub)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Main)).EndInit();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Cancel;
+        private DevExpress.XtraEditors.PanelControl panelControl_Manu;
+        private DevExpress.XtraEditors.PanelControl panelControl_Sub;
+        private DevExpress.XtraEditors.PanelControl panelControl_Main;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Login;
+        private DevExpress.XtraEditors.LabelControl labelControl_User;
+    }
+}(No newline at end of file)
 
KHSCALE_TP/MainForm.cs (added)
+++ KHSCALE_TP/MainForm.cs
@@ -0,0 +1,60 @@
+using PublicLib;
+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;
+
+namespace KHSCALE_TP
+{
+    public partial class MainForm : Form
+    {
+        public MainForm()
+        {
+            InitializeComponent();
+
+            ConstClass._USR_ID = "";
+            ConstClass._USR_NM = "";
+            ConstClass._COMP_CD = "0001";
+
+            UcWork w = new UcWork();
+            w.Dock = DockStyle.Fill;
+
+
+            panelControl_Main.Controls.Add(w);
+        }
+
+        private void simpleButton_Cancel_Click(object sender, EventArgs e)
+        {
+            this.Close();
+        }
+
+        private void simpleButton_Login_Click(object sender, EventArgs e)
+        {
+            //if (simpleButton_Login.Text == "LOGIN")
+            //{
+            //    FormLogin login = new FormLogin(ConstClass._COMP_CD);
+            //    if (login.ShowDialog() == DialogResult.Yes)
+            //    {
+            //        if (ConstClass._USR_ID != "")
+            //        {
+            //            labelControl_User.Text = ConstClass._USR_NM + " 님";
+            //            simpleButton_Login.Text = "LOGOUT";
+            //        }
+            //    }
+
+            //}
+            //else
+            //{
+            //    ConstClass._USR_ID = "";
+            //    ConstClass._USR_NM = "";
+            //    labelControl_User.Text = "";
+            //    simpleButton_Login.Text = "LOGIN";
+            //}
+        }
+    }
+}
 
KHSCALE_TP/MainForm.resx (added)
+++ KHSCALE_TP/MainForm.resx
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+</root>(No newline at end of file)
 
KHSCALE_TP/Program.cs (added)
+++ KHSCALE_TP/Program.cs
@@ -0,0 +1,24 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace KHSCALE_TP
+{
+    internal static class Program
+    {
+        /// <summary>
+        /// 해당 애플리케이션의 주 진입점입니다.
+        /// </summary>
+        [STAThread]
+        static void Main()
+        {
+            U3Config config = new U3Config();
+
+            Application.EnableVisualStyles();
+            Application.SetCompatibleTextRenderingDefault(false);
+            Application.Run(new FormScale());
+        }
+    }
+}
 
KHSCALE_TP/Properties/AssemblyInfo.cs (added)
+++ KHSCALE_TP/Properties/AssemblyInfo.cs
@@ -0,0 +1,36 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// 어셈블리에 대한 일반 정보는 다음 특성 집합을 통해 
+// 제어됩니다. 어셈블리와 관련된 정보를 수정하려면
+// 이러한 특성 값을 변경하세요.
+[assembly: AssemblyTitle("KHSCALE_TP")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("KHSCALE_TP")]
+[assembly: AssemblyCopyright("Copyright ©  2022")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// ComVisible을 false로 설정하면 이 어셈블리의 형식이 COM 구성 요소에 
+// 표시되지 않습니다. COM에서 이 어셈블리의 형식에 액세스하려면
+// 해당 형식에 대해 ComVisible 특성을 true로 설정하세요.
+[assembly: ComVisible(false)]
+
+// 이 프로젝트가 COM에 노출되는 경우 다음 GUID는 typelib의 ID를 나타냅니다.
+[assembly: Guid("2e133560-4f54-4d44-a0db-edb6c5c36e84")]
+
+// 어셈블리의 버전 정보는 다음 네 가지 값으로 구성됩니다.
+//
+//      주 버전
+//      부 버전 
+//      빌드 번호
+//      수정 버전
+//
+// 모든 값을 지정하거나 아래와 같이 '*'를 사용하여 빌드 번호 및 수정 번호를
+// 기본값으로 할 수 있습니다.
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
 
KHSCALE_TP/Properties/Resources.Designer.cs (added)
+++ KHSCALE_TP/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     이 코드는 도구를 사용하여 생성되었습니다.
+//     런타임 버전:4.0.30319.42000
+//
+//     파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면
+//     이러한 변경 내용이 손실됩니다.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace KHSCALE_TP.Properties
+{
+
+
+    /// <summary>
+    ///   지역화된 문자열 등을 찾기 위한 강력한 형식의 리소스 클래스입니다.
+    /// </summary>
+    // 이 클래스는 ResGen 또는 Visual Studio와 같은 도구를 통해 StronglyTypedResourceBuilder
+    // 클래스에서 자동으로 생성되었습니다.
+    // 멤버를 추가하거나 제거하려면 .ResX 파일을 편집한 다음 /str 옵션을 사용하여
+    // ResGen을 다시 실행하거나 VS 프로젝트를 다시 빌드하십시오.
+    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+    [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+    internal class Resources
+    {
+
+        private static global::System.Resources.ResourceManager resourceMan;
+
+        private static global::System.Globalization.CultureInfo resourceCulture;
+
+        [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+        internal Resources()
+        {
+        }
+
+        /// <summary>
+        ///   이 클래스에서 사용하는 캐시된 ResourceManager 인스턴스를 반환합니다.
+        /// </summary>
+        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+        internal static global::System.Resources.ResourceManager ResourceManager
+        {
+            get
+            {
+                if ((resourceMan == null))
+                {
+                    global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("KHSCALE_TP.Properties.Resources", typeof(Resources).Assembly);
+                    resourceMan = temp;
+                }
+                return resourceMan;
+            }
+        }
+
+        /// <summary>
+        ///   이 강력한 형식의 리소스 클래스를 사용하여 모든 리소스 조회에 대해 현재 스레드의 CurrentUICulture 속성을
+        ///   재정의합니다.
+        /// </summary>
+        [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+        internal static global::System.Globalization.CultureInfo Culture
+        {
+            get
+            {
+                return resourceCulture;
+            }
+            set
+            {
+                resourceCulture = value;
+            }
+        }
+    }
+}
 
KHSCALE_TP/Properties/Resources.resx (added)
+++ KHSCALE_TP/Properties/Resources.resx
@@ -0,0 +1,117 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+</root>(No newline at end of file)
 
KHSCALE_TP/Properties/Settings.Designer.cs (added)
+++ KHSCALE_TP/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     This code was generated by a tool.
+//     Runtime Version:4.0.30319.42000
+//
+//     Changes to this file may cause incorrect behavior and will be lost if
+//     the code is regenerated.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+namespace KHSCALE_TP.Properties
+{
+
+
+    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+    internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+    {
+
+        private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+        public static Settings Default
+        {
+            get
+            {
+                return defaultInstance;
+            }
+        }
+    }
+}
 
KHSCALE_TP/Properties/Settings.settings (added)
+++ KHSCALE_TP/Properties/Settings.settings
@@ -0,0 +1,7 @@
+<?xml version='1.0' encoding='utf-8'?>
+<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)">
+  <Profiles>
+    <Profile Name="(Default)" />
+  </Profiles>
+  <Settings />
+</SettingsFile>
 
KHSCALE_TP/Properties/licenses.licx (added)
+++ KHSCALE_TP/Properties/licenses.licx
@@ -0,0 +1,9 @@
+DevExpress.XtraEditors.LookUpEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraEditors.DateEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraEditors.Repository.RepositoryItemComboBox, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraEditors.Repository.RepositoryItemDateEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraEditors.Repository.RepositoryItemTextEdit, DevExpress.XtraEditors.v14.1, Version=14.1.10.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
 
KHSCALE_TP/SerialBase.cs (added)
+++ KHSCALE_TP/SerialBase.cs
@@ -0,0 +1,167 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Threading;
+using System.IO.Ports;
+
+namespace KHSCALE_TP
+{
+    public class SerialBase
+    {
+        protected object m_lock = new object();
+        protected float m_value = 0;
+        protected Thread m_t1 = null;
+        protected bool m_bThreadRun = true;
+        protected int m_recvCount = 0;
+        protected DateTime m_dtRecv = DateTime.MinValue;
+
+        protected string m_portName = "COM1";
+        protected int m_baudRate = 9600;
+        protected int m_parity = 0;
+        protected int m_dataBits = 8;
+        protected float m_stopBits = 1;
+
+        public string GetComSetting()
+        {
+            return m_portName + "," + m_baudRate.ToString() + "," + m_parity.ToString() + "," + m_dataBits.ToString() + "," + m_stopBits.ToString();
+        }
+
+        // 통신 프레임 사이즈가 고정일 경우 그 사이즈를 지정. 정해진 사이즈가 없으면 -1 리턴하고, 구분자로 프레임 구분하도록
+        protected virtual int GetFrameSize()
+        {
+            return -1;
+        }
+
+        // 통신 프레임 간의 구분자가 있을 경우 그 구분자를 지정
+        protected virtual char GetFrameDelimiter()
+        {
+            return '\n';
+        }
+
+        protected virtual bool Parse(List<byte> buffRecv)
+        {
+            return false;
+        }
+
+        public float GetValue()
+        {
+            lock (m_lock)
+            {
+                return m_value;
+            }
+        }
+
+        protected void SetValue(float val)
+        {
+            lock (m_lock)
+            {
+                m_value = val;
+                m_dtRecv = DateTime.Now;
+            }
+        }
+
+        public float GetRecvCount()
+        {
+            lock (m_lock)
+            {
+                return m_recvCount;
+            }
+        }
+
+        public DateTime GetUpdTime()
+        {
+            lock (m_lock)
+            {
+                return m_dtRecv;
+            }
+        }
+
+        // portName: COM1, COM2, ....
+        // baudRate: 9600, 19200, ...
+        // parity: 0=None, 1=Odd, 2=Even
+        // dataBits: 7, 8, ...
+        // stopBits: 1, 1.5, 2
+        public void Init(string portName, int baudRate, int parity, int dataBits, float stopBits)
+        {
+            m_portName = portName;
+            m_baudRate = baudRate;
+            m_parity = parity;
+            m_dataBits = dataBits;
+            m_stopBits = stopBits;
+
+            m_t1 = new Thread(new ThreadStart(SerialRun));
+            m_t1.Start();
+        }
+
+        public void Close()
+        {
+            m_bThreadRun = false;
+            if (m_t1 != null) m_t1.Join();
+        }
+
+        private void SerialRun()
+        {
+            m_bThreadRun = true;
+            SerialPort serial = null;
+
+            while (m_bThreadRun)
+            {
+                serial = new SerialPort();
+
+                Parity parity = Parity.None;
+                if (m_parity == 0) parity = Parity.None;
+                if (m_parity == 1) parity = Parity.Odd;
+                if (m_parity == 2) parity = Parity.Even;
+
+                StopBits stopBits = StopBits.None;
+                if (m_stopBits == 1) stopBits = StopBits.One;
+                if (m_stopBits == 1.5) stopBits = StopBits.OnePointFive;
+                if (m_stopBits == 2) stopBits = StopBits.Two;
+
+                while (m_bThreadRun)
+                {
+                    if (serial.m_IsConn == false)
+                    {
+                        serial.Init(m_portName, m_baudRate, parity, m_dataBits, stopBits);
+                        //Program.m_MainForm.UpdateListBox(serial.m_strPortMsg);
+                    }
+
+                    if (serial.m_IsConn)
+                    {
+                        serial.Read();
+                        if (serial.m_strPortMsg.Length > 0)
+                        {
+                            //Program.m_MainForm.UpdateListBox(serial.m_strPortMsg);
+                        }
+
+                        m_recvCount = serial.m_recvCount;
+
+                        List<byte> buff = serial.GetBuffer(false);
+                        if (buff.Count == 0) continue;
+
+                        int nFrameSize = GetFrameSize();
+
+                        if ((nFrameSize > 0 && serial.GetBufferSize() >= nFrameSize)
+                            || (buff[buff.Count - 1] == GetFrameDelimiter()))
+                        {
+                            if (Parse(buff))
+                            {
+                                serial.ClearBuffer();
+                                //Program.m_MainForm.UpdateValue(this.GetValue());
+                            }
+                            //Program.m_MainForm.UpdateListBox("[" + buff.Count.ToString() + "] " + Encoding.Default.GetString(buff.ToArray()));
+                        }
+                    }
+                    else
+                    {
+                        System.Threading.Thread.Sleep(10000);
+                    }
+                }
+            }
+            serial.Close();
+        }
+
+    }
+}
 
KHSCALE_TP/SerialPort.cs (added)
+++ KHSCALE_TP/SerialPort.cs
@@ -0,0 +1,130 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.IO.Ports;
+
+namespace KHSCALE_TP
+{
+    public class SerialPort
+    {
+        public bool m_IsConn = false;
+        public string m_strPortMsg = "";
+        public int m_recvCount = 0;
+
+        private System.IO.Ports.SerialPort port = null;
+        private List<byte> m_buffer = new List<byte>();
+
+        public void AddBuffer(byte[] data)
+        {
+            lock (this)
+            {
+                m_buffer.AddRange(data);
+            }
+        }
+
+        public List<byte> GetBuffer(bool bClear)
+        {
+            List<byte> buffer = new List<byte>();
+
+            lock (this)
+            {
+                buffer.AddRange(m_buffer);
+                if (bClear) m_buffer.Clear();
+            }
+            return buffer;
+        }
+
+        public void ClearBuffer()
+        {
+            lock (this)
+            {
+                m_buffer.Clear();
+            }
+        }
+
+        public int GetBufferSize()
+        {
+            lock (this)
+            {
+                return m_buffer.Count;
+            }
+        }
+
+        public void Close()
+        {
+            try
+            {
+                if (port != null) port.Close();
+            }
+            catch
+            {
+            }
+            port = null;
+            m_IsConn = false;
+        }
+
+        public void Init(string portName, int baudRate, Parity parity, int dataBits, StopBits stopBits)
+        {
+            try
+            {
+                port = new System.IO.Ports.SerialPort(portName, baudRate, parity, dataBits, stopBits);
+                //port.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived);
+                port.ReadBufferSize = 1024 * 1024;
+                port.Open();
+
+                m_IsConn = true;
+                m_strPortMsg = portName + " 포트를 정상적으로 오픈하였습니다.";
+            }
+            catch (Exception ex)
+            {
+                m_strPortMsg = portName + " " + ex.Message;
+                m_IsConn = false;
+            }
+        }
+
+        public void Read()
+        {
+            m_strPortMsg = "";
+            try
+            {
+                port.ReadTimeout = 1;
+                while (port.BytesToRead > 0)
+                {
+                    int bytesToRead = port.BytesToRead;
+                    if (bytesToRead > 0)
+                    {
+                        byte[] bytesBuffer = new byte[bytesToRead];
+                        int readBytes = port.Read(bytesBuffer, 0, bytesToRead);
+
+                        if (readBytes > 0)
+                        {
+                            m_recvCount++;
+                            byte[] bytesBuffer2 = new byte[readBytes];
+                            Array.Copy(bytesBuffer, bytesBuffer2, readBytes);
+                            AddBuffer(bytesBuffer2);
+                        }
+                    }
+                    if (GetBufferSize() >= 256)
+                    {
+                        port.DiscardInBuffer();
+                        return;
+                    }
+                    System.Threading.Thread.Sleep(1);
+                }
+            }
+            catch (Exception ex)
+            {
+                m_strPortMsg = ex.Message;
+                Close();
+            }
+        }
+
+        private void port_DataReceived(object sender, SerialDataReceivedEventArgs e)
+        {
+            //Console.WriteLine(port.ReadExisting());
+        }
+
+    }
+}
 
KHSCALE_TP/U3Config.cs (added)
+++ KHSCALE_TP/U3Config.cs
@@ -0,0 +1,64 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Runtime.InteropServices;
+using System.Windows.Forms;
+
+namespace KHSCALE_TP
+{
+    public class U3Config
+    {
+        public const bool FLAG_TEST = true;
+        public const int MAX_DI = 4;
+        public const int MAX_DEV = 100;
+        static public string m_SqlConnStr = "";
+
+        [DllImport("kernel32")]
+        private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
+        [DllImport("kernel32")]
+        private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
+
+        protected string GetIniFile()
+        {
+            string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+            return AppPath + "\\Config.ini";
+        }
+
+        protected string GetIniValue(string Section, string Key, string defvalue)
+        {
+            StringBuilder temp = new StringBuilder(255);
+            int i = GetPrivateProfileString(Section, Key, defvalue, temp, 255, GetIniFile());
+            return temp.ToString();
+        }
+
+        protected void SetIniValue(string Section, string Key, string Value)
+        {
+            WritePrivateProfileString(Section, Key, Value, GetIniFile());
+        }
+
+        //public string m_StrMqttIP = "";
+        public string m_StrSqlServerIP = "";
+
+        public U3Config()
+        {
+            Load();
+
+            m_SqlConnStr = "Provider=SQLOLEDB.1;Password=tlrmsjtm~1@3;Persist Security Info=False;User ID=sa;Initial Catalog=U3SMES;Data Source=signus-sf1.koreacentral.cloudapp.azure.com,14443";
+        }
+
+        public void Save()
+        {
+            //SetIniValue("MQTT", "IPADDR", m_StrMqttIP);
+            SetIniValue("SQLSERVER", "IPADDR", m_StrSqlServerIP);
+        }
+
+        public void Load()
+        {
+            m_StrSqlServerIP = GetIniValue("SQLSERVER", "IPADDR", "192.168.1.17");
+            //m_StrMqttIP = GetIniValue("MQTT", "IPADDR", "192.168.0.200");
+            //m_StrSqlServerIP = GetIniValue("SQLSERVER", "IPADDR", "192.168.0.240");
+        }
+    }
+}
 
KHSCALE_TP/U3Database.cs (added)
+++ KHSCALE_TP/U3Database.cs
@@ -0,0 +1,157 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Data;
+using System.Data.OleDb;
+
+namespace KHSCALE_TP
+{
+    public class U3Database
+    {
+        private OleDbConnection mCN = null;
+        private OleDbCommand mCmd = null;
+
+        public bool SetSqlServer()
+        {
+            try
+            {
+                mCN = new OleDbConnection();
+                mCN.ConnectionString = U3Config.m_SqlConnStr;
+                mCN.Open();
+                return true;
+            }
+            catch (Exception ex)
+            {
+                U3Util.ErrorLog("Can't connect to database." + Environment.NewLine + ex.Message);
+                return false;
+            }
+        }
+
+        public DataTable OpenSQL(string strSQL)
+        {
+            DataTable retTable = new DataTable();
+
+            try
+            {
+                mCN = new OleDbConnection();
+                mCN.ConnectionString = U3Config.m_SqlConnStr;
+                mCN.Open();
+
+                mCmd = new OleDbCommand(strSQL, mCN);
+                OleDbDataAdapter da = new OleDbDataAdapter(mCmd);
+                da.Fill(retTable);
+            }
+            catch (Exception ex)
+            {
+                U3Util.ErrorLog(strSQL);
+                U3Util.ErrorLog(ex.Message);
+            }
+            finally
+            {
+                if (mCN != null) mCN.Close();
+            }
+            return retTable;
+        }
+
+
+        public DataSet OpenSQLSet(string strSQL)
+        {
+            DataSet retTable = new DataSet();
+
+            try
+            {
+                mCN = new OleDbConnection();
+                mCN.ConnectionString = U3Config.m_SqlConnStr;
+                mCN.Open();
+
+                mCmd = new OleDbCommand(strSQL, mCN);
+                OleDbDataAdapter da = new OleDbDataAdapter(mCmd);
+                da.Fill(retTable);
+            }
+            catch (Exception ex)
+            {
+                U3Util.ErrorLog(strSQL);
+                U3Util.ErrorLog(ex.Message);
+            }
+            finally
+            {
+                if (mCN != null) mCN.Close();
+            }
+            return retTable;
+        }
+
+        public int ExcuteSql(string strSql)
+        {
+            try
+            {
+                mCN = new OleDbConnection();
+                mCN.ConnectionString = U3Config.m_SqlConnStr;
+                mCN.Open();
+
+                mCmd = new OleDbCommand(strSql, mCN);
+                int iResult = mCmd.ExecuteNonQuery();
+
+                return iResult;
+            }
+            catch (Exception ex)
+            {
+                U3Util.ErrorLog(strSql);
+                U3Util.ErrorLog(ex.Message);
+                return 0;
+            }
+            finally
+            {
+                if (mCN != null) mCN.Close();
+            }
+        }
+
+        public bool ExcuteSqls(List<string> strSqls)
+        {
+            string strMsg = "";
+            return ExcuteSqls(strSqls, out strMsg);
+        }
+
+        public bool ExcuteSqls(List<string> strSqls, out string strMessage)
+        {
+            string strSQL = string.Empty;
+            try
+            {
+                mCN = new OleDbConnection();
+                mCN.ConnectionString = U3Config.m_SqlConnStr;
+                mCN.Open();
+
+                mCmd = new OleDbCommand();
+                mCmd.Connection = mCN;
+            }
+            catch (Exception ex)
+            {
+                U3Util.ErrorLog(ex.Message);
+                if (mCN != null) mCN.Close();
+                strMessage = "DB접속 오류: " + ex.Message;
+                return false;
+            }
+
+            int count = 0;
+            foreach (string strSql in strSqls)
+            {
+                strSQL = strSql;
+                try
+                {
+                    mCmd.CommandText = strSql;
+                    mCmd.ExecuteNonQuery();
+                    count++;
+                }
+                catch (Exception ex)
+                {
+                    U3Util.ErrorLog(strSQL);
+                    U3Util.ErrorLog(ex.Message);
+                }
+            }
+            if (mCN != null) mCN.Close();
+            strMessage = string.Format("SQL 실행 완료({0}건 실행, {1}건 성공)", strSqls.Count, count);
+            return true;
+        }
+    }
+}
 
KHSCALE_TP/U3Util.cs (added)
+++ KHSCALE_TP/U3Util.cs
@@ -0,0 +1,194 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using System.IO;
+using System.Drawing;
+using System.Drawing.Imaging;
+using System.Drawing.Drawing2D;
+
+namespace KHSCALE_TP
+{
+    public class U3Util
+    {
+        static public Random rnd = new Random(new System.DateTime().Millisecond);
+
+        static public string GetErrorLogFile(bool bFullPath)
+        {
+            string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+            string AppName = Application.ExecutablePath.Substring(Application.ExecutablePath.LastIndexOf("\\") + 1);
+            string AppTitle = AppName.Substring(0, AppName.LastIndexOf("."));
+
+            if (bFullPath)
+                return AppPath + "\\" + AppTitle + "Error.txt";
+            else
+                return AppTitle + "Error.txt";
+        }
+
+        static public string GetEventLogFile(bool bFullPath)
+        {
+            string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+            string AppName = Application.ExecutablePath.Substring(Application.ExecutablePath.LastIndexOf("\\") + 1);
+            string AppTitle = AppName.Substring(0, AppName.LastIndexOf("."));
+
+            if (bFullPath)
+                return AppPath + "\\" + AppTitle + "Event.txt";
+            else
+                return AppTitle + "Event.txt";
+        }
+
+        static public string GetImagePath()
+        {
+            string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+            return AppPath + "\\" + "Images";
+        }
+
+        public static Bitmap ResizeImage(Image image, int width, int height)
+        {
+            var destRect = new Rectangle(0, 0, width, height);
+            var destImage = new Bitmap(width, height);
+
+            destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution);
+
+            using (var graphics = Graphics.FromImage(destImage))
+            {
+                graphics.CompositingMode = CompositingMode.SourceCopy;
+                graphics.CompositingQuality = CompositingQuality.HighQuality;
+                graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
+                graphics.SmoothingMode = SmoothingMode.HighQuality;
+                graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;
+
+                using (var wrapMode = new ImageAttributes())
+                {
+                    wrapMode.SetWrapMode(WrapMode.TileFlipXY);
+                    graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, wrapMode);
+                }
+            }
+            return destImage;
+        }
+
+        public static void ErrorLog(string strLog)
+        {
+            try
+            {
+                FileLog(strLog, GetErrorLogFile(false));
+            }
+            catch
+            {
+            }
+        }
+
+        public static void EventLog(string strLog)
+        {
+            try
+            {
+                FileLog(strLog, GetEventLogFile(false));
+            }
+            catch
+            {
+            }
+        }
+
+        public static void FileLog(string strLog, string strFileName)
+        {
+            string str = "";
+
+            DateTime t = DateTime.Now;
+            str = t.ToString("(yyyy-MM-dd HH:mm:ss.fff) ");
+            str += strLog;
+
+            try
+            {
+                string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+                string strLogFile = AppPath + "\\" + strFileName;
+                FileBackup(strLogFile);
+                FileWrite(strLogFile, str);
+            }
+            catch (Exception ex)
+            {
+                throw new Exception("FileLog->:" + ex.Message);
+            }
+        }
+
+        public static void FileBackup(string strLogFile)
+        {
+            if (File.Exists(strLogFile))
+            {
+                try
+                {
+                    FileInfo f = new FileInfo(strLogFile);
+                    if (f.Length >= (2 * 1024 * 1024))
+                    {
+                        System.IO.File.Delete(strLogFile + ".bak");
+                        f.MoveTo(strLogFile + ".bak");
+                    }
+                }
+                catch (Exception ex)
+                {
+                    throw new Exception("FileBackup->:" + ex.Message);
+                }
+            }
+        }
+
+        public static void FileWrite(string strLogFile, string str)
+        {
+            try
+            {
+                FileStream fs = new FileStream(strLogFile, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
+                fs.Seek(0, SeekOrigin.End);
+                StreamWriter swFromFile = new StreamWriter(fs);
+                swFromFile.WriteLine(str);
+                swFromFile.Close();
+                fs.Close();
+            }
+            catch (Exception ex)
+            {
+                ErrorLog("FileWrite->:" + ex.Message);
+            }
+        }
+
+        public static string FileRead(string strFileName)
+        {
+            if (System.IO.File.Exists(strFileName) == false) return "";
+
+            string result = "";
+            try
+            {
+                FileStream fs = new FileStream(strFileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
+                fs.Seek(0, SeekOrigin.Begin);
+                StreamReader srFile = new StreamReader(fs, Encoding.Default, true);
+                result = srFile.ReadToEnd();
+                srFile.Close();
+                fs.Close();
+            }
+            catch (Exception ex)
+            {
+                ErrorLog("FileRead->:" + ex.Message);
+            }
+            return result;
+        }
+
+        public static bool GetBit(byte b, int bitNumber)
+        {
+            return (b & (1 << bitNumber)) != 0;
+        }
+
+        public static bool GetBit(short s, int bitNumber)
+        {
+            return (s & (1 << bitNumber)) != 0;
+        }
+
+        static public DateTime FromUnixTime(long unixTime)
+        {
+            var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
+            return epoch.AddSeconds(unixTime);
+        }
+
+        static public Int32 ToUnixTime(DateTime dt)
+        {
+            return (Int32)(dt.Subtract(new DateTime(1970, 1, 1, 0, 0, 0))).TotalSeconds;
+        }
+    }
+}
 
KHSCALE_TP/UcInsertWork.Designer.cs (added)
+++ KHSCALE_TP/UcInsertWork.Designer.cs
@@ -0,0 +1,1283 @@
+namespace KHSCALE_TP
+{
+    partial class UcInsertWork
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region 구성 요소 디자이너에서 생성한 코드
+
+        /// <summary> 
+        /// 디자이너 지원에 필요한 메서드입니다. 
+        /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            this.components = new System.ComponentModel.Container();
+            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
+            this.timer1 = new System.Windows.Forms.Timer(this.components);
+            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
+            this.gridControl_Main = new DevExpress.XtraGrid.GridControl();
+            this.gridView_Main = new DevExpress.XtraGrid.Views.Grid.GridView();
+            this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.repositoryItemLookUpEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemLookUpEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemButtonEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
+            this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemLookUpEdit9 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
+            this.repositoryItemTextEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit10 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.simpleButton_Reset = new DevExpress.XtraEditors.SimpleButton();
+            this.txt_e = new System.Windows.Forms.TextBox();
+            this.txt_s = new System.Windows.Forms.TextBox();
+            this.simpleButton1_e = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton1_s = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_Backspace = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton10 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_X = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton6 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton7 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton3 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton4 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton5 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_3 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_2 = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_1 = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl9 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_ip = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl8 = new DevExpress.XtraEditors.PanelControl();
+            this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_jlot = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_lot = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_jpartno = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
+            this.simpleButton_CANCEL = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_INPUT = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_tqty = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_qty = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_jpartnm = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
+            this.barcode = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl36 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_orderno = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
+            this.helpProvider1 = new System.Windows.Forms.HelpProvider();
+            this.txt_partno = new System.Windows.Forms.TextBox();
+            this.panelControl10 = new DevExpress.XtraEditors.PanelControl();
+            this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
+            this.lookUpEdit_Mach = new DevExpress.XtraEditors.LookUpEdit();
+            this.lookUpEdit_center = new DevExpress.XtraEditors.LookUpEdit();
+            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
+            this.splitContainer1.Panel1.SuspendLayout();
+            this.splitContainer1.Panel2.SuspendLayout();
+            this.splitContainer1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Main)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_Main)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit6)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit7)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit6)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit8)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit9)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit10)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).BeginInit();
+            this.panelControl9.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_ip.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).BeginInit();
+            this.panelControl8.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
+            this.panelControl6.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_jlot.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
+            this.panelControl3.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_lot.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
+            this.panelControl7.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_jpartno.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
+            this.panelControl5.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_tqty.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
+            this.panelControl4.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_qty.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
+            this.panelControl2.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_jpartnm.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
+            this.panelControl1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.barcode.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl36)).BeginInit();
+            this.panelControl36.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_orderno.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).BeginInit();
+            this.panelControl10.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_Mach.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_center.Properties)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // splitContainer1
+            // 
+            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
+            this.splitContainer1.Name = "splitContainer1";
+            // 
+            // splitContainer1.Panel1
+            // 
+            this.splitContainer1.Panel1.Controls.Add(this.gridControl_Main);
+            // 
+            // splitContainer1.Panel2
+            // 
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl10);
+            this.splitContainer1.Panel2.Controls.Add(this.txt_partno);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_Reset);
+            this.splitContainer1.Panel2.Controls.Add(this.txt_e);
+            this.splitContainer1.Panel2.Controls.Add(this.txt_s);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton1_e);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton1_s);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_Backspace);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton10);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_X);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton6);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton7);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton8);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton3);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton4);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton5);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_3);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_2);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_1);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl9);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl8);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl6);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl3);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl7);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_CANCEL);
+            this.splitContainer1.Panel2.Controls.Add(this.simpleButton_INPUT);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl5);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl4);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl2);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl1);
+            this.splitContainer1.Panel2.Controls.Add(this.panelControl36);
+            this.splitContainer1.Size = new System.Drawing.Size(1024, 550);
+            this.splitContainer1.SplitterDistance = 430;
+            this.splitContainer1.TabIndex = 0;
+            // 
+            // gridControl_Main
+            // 
+            this.gridControl_Main.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.gridControl_Main.Location = new System.Drawing.Point(0, 0);
+            this.gridControl_Main.MainView = this.gridView_Main;
+            this.gridControl_Main.Name = "gridControl_Main";
+            this.gridControl_Main.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
+            this.repositoryItemLookUpEdit6,
+            this.repositoryItemButtonEdit4,
+            this.repositoryItemLookUpEdit7,
+            this.repositoryItemButtonEdit5,
+            this.repositoryItemButtonEdit6,
+            this.repositoryItemComboBox3,
+            this.repositoryItemTextEdit3,
+            this.repositoryItemLookUpEdit8,
+            this.repositoryItemLookUpEdit9,
+            this.repositoryItemDateEdit2,
+            this.repositoryItemTextEdit4,
+            this.repositoryItemLookUpEdit10});
+            this.gridControl_Main.Size = new System.Drawing.Size(430, 550);
+            this.gridControl_Main.TabIndex = 124;
+            this.gridControl_Main.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
+            this.gridView_Main});
+            // 
+            // gridView_Main
+            // 
+            this.gridView_Main.Appearance.FooterPanel.Options.UseFont = true;
+            this.gridView_Main.Appearance.HeaderPanel.Options.UseFont = true;
+            this.gridView_Main.Appearance.HeaderPanel.Options.UseTextOptions = true;
+            this.gridView_Main.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridView_Main.Appearance.Row.Options.UseFont = true;
+            this.gridView_Main.ColumnPanelRowHeight = 40;
+            this.gridView_Main.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
+            this.gridColumn53,
+            this.gridColumn54,
+            this.gridColumn55,
+            this.gridColumn56,
+            this.gridColumn60,
+            this.gridColumn57,
+            this.gridColumn58,
+            this.gridColumn59,
+            this.gridColumn1});
+            this.gridView_Main.FooterPanelHeight = 23;
+            this.gridView_Main.GridControl = this.gridControl_Main;
+            this.gridView_Main.Name = "gridView_Main";
+            this.gridView_Main.OptionsCustomization.AllowSort = false;
+            this.gridView_Main.OptionsNavigation.EnterMoveNextColumn = true;
+            this.gridView_Main.OptionsView.ColumnAutoWidth = false;
+            this.gridView_Main.OptionsView.ShowGroupPanel = false;
+            this.gridView_Main.RowHeight = 40;
+            this.gridView_Main.RowStyle += new DevExpress.XtraGrid.Views.Grid.RowStyleEventHandler(this.gridView_Main_RowStyle);
+            // 
+            // gridColumn53
+            // 
+            this.gridColumn53.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn53.AppearanceCell.Options.UseFont = true;
+            this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn53.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn53.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn53.Caption = "공정";
+            this.gridColumn53.FieldName = "operation";
+            this.gridColumn53.Name = "gridColumn53";
+            this.gridColumn53.OptionsColumn.AllowEdit = false;
+            this.gridColumn53.OptionsColumn.AllowFocus = false;
+            this.gridColumn53.Width = 72;
+            // 
+            // gridColumn54
+            // 
+            this.gridColumn54.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn54.AppearanceCell.Options.UseFont = true;
+            this.gridColumn54.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn54.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn54.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn54.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn54.Caption = "투입순번";
+            this.gridColumn54.FieldName = "note";
+            this.gridColumn54.Name = "gridColumn54";
+            this.gridColumn54.OptionsColumn.AllowEdit = false;
+            this.gridColumn54.OptionsColumn.AllowFocus = false;
+            this.gridColumn54.Visible = true;
+            this.gridColumn54.VisibleIndex = 0;
+            this.gridColumn54.Width = 89;
+            // 
+            // gridColumn55
+            // 
+            this.gridColumn55.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn55.AppearanceCell.Options.UseFont = true;
+            this.gridColumn55.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn55.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn55.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn55.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn55.Caption = "자품목번호";
+            this.gridColumn55.FieldName = "resource_used";
+            this.gridColumn55.Name = "gridColumn55";
+            this.gridColumn55.OptionsColumn.AllowEdit = false;
+            this.gridColumn55.OptionsColumn.AllowFocus = false;
+            this.gridColumn55.Visible = true;
+            this.gridColumn55.VisibleIndex = 1;
+            this.gridColumn55.Width = 177;
+            // 
+            // gridColumn56
+            // 
+            this.gridColumn56.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn56.AppearanceCell.Options.UseFont = true;
+            this.gridColumn56.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn56.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn56.Caption = "명세";
+            this.gridColumn56.FieldName = "description";
+            this.gridColumn56.Name = "gridColumn56";
+            this.gridColumn56.OptionsColumn.AllowEdit = false;
+            this.gridColumn56.OptionsColumn.AllowFocus = false;
+            this.gridColumn56.Visible = true;
+            this.gridColumn56.VisibleIndex = 2;
+            this.gridColumn56.Width = 228;
+            // 
+            // gridColumn60
+            // 
+            this.gridColumn60.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn60.AppearanceCell.Options.UseFont = true;
+            this.gridColumn60.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn60.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn60.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn60.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn60.Caption = "투입량";
+            this.gridColumn60.DisplayFormat.FormatString = "N02";
+            this.gridColumn60.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.gridColumn60.FieldName = "in_qty";
+            this.gridColumn60.Name = "gridColumn60";
+            this.gridColumn60.OptionsColumn.AllowEdit = false;
+            this.gridColumn60.OptionsColumn.AllowFocus = false;
+            this.gridColumn60.Width = 129;
+            // 
+            // gridColumn57
+            // 
+            this.gridColumn57.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn57.AppearanceCell.Options.UseFont = true;
+            this.gridColumn57.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn57.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn57.Caption = "합계수량";
+            this.gridColumn57.FieldName = "qty_total";
+            this.gridColumn57.Name = "gridColumn57";
+            this.gridColumn57.OptionsColumn.AllowEdit = false;
+            this.gridColumn57.OptionsColumn.AllowFocus = false;
+            this.gridColumn57.Width = 136;
+            // 
+            // gridColumn58
+            // 
+            this.gridColumn58.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn58.AppearanceCell.Options.UseFont = true;
+            this.gridColumn58.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn58.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn58.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn58.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn58.Caption = "단위";
+            this.gridColumn58.FieldName = "uom";
+            this.gridColumn58.Name = "gridColumn58";
+            this.gridColumn58.OptionsColumn.AllowEdit = false;
+            this.gridColumn58.OptionsColumn.AllowFocus = false;
+            this.gridColumn58.Width = 80;
+            // 
+            // gridColumn59
+            // 
+            this.gridColumn59.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn59.AppearanceCell.Options.UseFont = true;
+            this.gridColumn59.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn59.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
+            this.gridColumn59.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn59.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn59.Caption = "현재고";
+            this.gridColumn59.DisplayFormat.FormatString = "N02";
+            this.gridColumn59.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.gridColumn59.FieldName = "stock_qty";
+            this.gridColumn59.Name = "gridColumn59";
+            this.gridColumn59.OptionsColumn.AllowEdit = false;
+            this.gridColumn59.OptionsColumn.AllowFocus = false;
+            this.gridColumn59.Width = 121;
+            // 
+            // gridColumn1
+            // 
+            this.gridColumn1.Caption = "수량";
+            this.gridColumn1.DisplayFormat.FormatString = "N02";
+            this.gridColumn1.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.gridColumn1.FieldName = "QTY";
+            this.gridColumn1.Name = "gridColumn1";
+            this.gridColumn1.Visible = true;
+            this.gridColumn1.VisibleIndex = 3;
+            // 
+            // repositoryItemLookUpEdit6
+            // 
+            this.repositoryItemLookUpEdit6.AutoHeight = false;
+            this.repositoryItemLookUpEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit6.Name = "repositoryItemLookUpEdit6";
+            // 
+            // repositoryItemButtonEdit4
+            // 
+            this.repositoryItemButtonEdit4.AutoHeight = false;
+            this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "상세", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
+            this.repositoryItemButtonEdit4.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
+            this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
+            // 
+            // repositoryItemLookUpEdit7
+            // 
+            this.repositoryItemLookUpEdit7.AutoHeight = false;
+            this.repositoryItemLookUpEdit7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit7.Name = "repositoryItemLookUpEdit7";
+            // 
+            // repositoryItemButtonEdit5
+            // 
+            this.repositoryItemButtonEdit5.AutoHeight = false;
+            this.repositoryItemButtonEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton()});
+            this.repositoryItemButtonEdit5.Name = "repositoryItemButtonEdit5";
+            // 
+            // repositoryItemButtonEdit6
+            // 
+            this.repositoryItemButtonEdit6.AutoHeight = false;
+            this.repositoryItemButtonEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Search)});
+            this.repositoryItemButtonEdit6.Name = "repositoryItemButtonEdit6";
+            // 
+            // repositoryItemComboBox3
+            // 
+            this.repositoryItemComboBox3.AutoHeight = false;
+            this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemComboBox3.Items.AddRange(new object[] {
+            "증가",
+            "감소"});
+            this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
+            // 
+            // repositoryItemTextEdit3
+            // 
+            this.repositoryItemTextEdit3.AutoHeight = false;
+            this.repositoryItemTextEdit3.Mask.EditMask = "yy-MM-dd HH:mm:ss";
+            this.repositoryItemTextEdit3.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
+            this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
+            // 
+            // repositoryItemLookUpEdit8
+            // 
+            this.repositoryItemLookUpEdit8.AutoHeight = false;
+            this.repositoryItemLookUpEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit8.Name = "repositoryItemLookUpEdit8";
+            // 
+            // repositoryItemLookUpEdit9
+            // 
+            this.repositoryItemLookUpEdit9.AutoHeight = false;
+            this.repositoryItemLookUpEdit9.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit9.Name = "repositoryItemLookUpEdit9";
+            // 
+            // repositoryItemDateEdit2
+            // 
+            this.repositoryItemDateEdit2.AutoHeight = false;
+            this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit2.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
+            // 
+            // repositoryItemTextEdit4
+            // 
+            this.repositoryItemTextEdit4.AutoHeight = false;
+            this.repositoryItemTextEdit4.Mask.EditMask = "p";
+            this.repositoryItemTextEdit4.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
+            this.repositoryItemTextEdit4.Mask.UseMaskAsDisplayFormat = true;
+            this.repositoryItemTextEdit4.Name = "repositoryItemTextEdit4";
+            // 
+            // repositoryItemLookUpEdit10
+            // 
+            this.repositoryItemLookUpEdit10.AutoHeight = false;
+            this.repositoryItemLookUpEdit10.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit10.Name = "repositoryItemLookUpEdit10";
+            // 
+            // simpleButton_Reset
+            // 
+            this.simpleButton_Reset.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_Reset.Appearance.Options.UseFont = true;
+            this.simpleButton_Reset.Location = new System.Drawing.Point(108, 436);
+            this.simpleButton_Reset.LookAndFeel.SkinMaskColor = System.Drawing.Color.DodgerBlue;
+            this.simpleButton_Reset.LookAndFeel.SkinName = "McSkin";
+            this.simpleButton_Reset.LookAndFeel.UseDefaultLookAndFeel = false;
+            this.simpleButton_Reset.Name = "simpleButton_Reset";
+            this.simpleButton_Reset.Size = new System.Drawing.Size(82, 53);
+            this.simpleButton_Reset.TabIndex = 172;
+            this.simpleButton_Reset.Text = "리셋";
+            this.simpleButton_Reset.Visible = false;
+            this.simpleButton_Reset.Click += new System.EventHandler(this.simpleButton_Reset_Click);
+            // 
+            // txt_e
+            // 
+            this.txt_e.Location = new System.Drawing.Point(114, 517);
+            this.txt_e.Name = "txt_e";
+            this.txt_e.Size = new System.Drawing.Size(100, 21);
+            this.txt_e.TabIndex = 171;
+            // 
+            // txt_s
+            // 
+            this.txt_s.Location = new System.Drawing.Point(8, 517);
+            this.txt_s.Name = "txt_s";
+            this.txt_s.Size = new System.Drawing.Size(100, 21);
+            this.txt_s.TabIndex = 2;
+            // 
+            // simpleButton1_e
+            // 
+            this.simpleButton1_e.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton1_e.Appearance.Options.UseFont = true;
+            this.simpleButton1_e.Location = new System.Drawing.Point(205, 436);
+            this.simpleButton1_e.LookAndFeel.SkinMaskColor = System.Drawing.Color.Red;
+            this.simpleButton1_e.LookAndFeel.SkinName = "McSkin";
+            this.simpleButton1_e.LookAndFeel.UseDefaultLookAndFeel = false;
+            this.simpleButton1_e.Name = "simpleButton1_e";
+            this.simpleButton1_e.Size = new System.Drawing.Size(82, 53);
+            this.simpleButton1_e.TabIndex = 170;
+            this.simpleButton1_e.Text = "종료";
+            this.simpleButton1_e.Click += new System.EventHandler(this.simpleButton1_e_Click);
+            // 
+            // simpleButton1_s
+            // 
+            this.simpleButton1_s.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton1_s.Appearance.Options.UseFont = true;
+            this.simpleButton1_s.Location = new System.Drawing.Point(15, 436);
+            this.simpleButton1_s.LookAndFeel.SkinMaskColor = System.Drawing.Color.Lime;
+            this.simpleButton1_s.LookAndFeel.SkinName = "McSkin";
+            this.simpleButton1_s.LookAndFeel.UseDefaultLookAndFeel = false;
+            this.simpleButton1_s.Name = "simpleButton1_s";
+            this.simpleButton1_s.Size = new System.Drawing.Size(82, 53);
+            this.simpleButton1_s.TabIndex = 169;
+            this.simpleButton1_s.Text = "시작";
+            this.simpleButton1_s.Click += new System.EventHandler(this.simpleButton1_s_Click);
+            // 
+            // simpleButton_Backspace
+            // 
+            this.simpleButton_Backspace.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_Backspace.Appearance.Options.UseFont = true;
+            this.simpleButton_Backspace.Location = new System.Drawing.Point(309, 403);
+            this.simpleButton_Backspace.Name = "simpleButton_Backspace";
+            this.simpleButton_Backspace.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton_Backspace.TabIndex = 167;
+            this.simpleButton_Backspace.Text = "◀";
+            this.simpleButton_Backspace.Click += new System.EventHandler(this.simpleButton_Backspace_Click);
+            // 
+            // simpleButton10
+            // 
+            this.simpleButton10.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton10.Appearance.Options.UseFont = true;
+            this.simpleButton10.Location = new System.Drawing.Point(399, 403);
+            this.simpleButton10.Name = "simpleButton10";
+            this.simpleButton10.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton10.TabIndex = 166;
+            this.simpleButton10.Text = "0";
+            this.simpleButton10.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton_X
+            // 
+            this.simpleButton_X.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_X.Appearance.Options.UseFont = true;
+            this.simpleButton_X.Location = new System.Drawing.Point(486, 403);
+            this.simpleButton_X.Name = "simpleButton_X";
+            this.simpleButton_X.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton_X.TabIndex = 165;
+            this.simpleButton_X.Text = "X";
+            this.simpleButton_X.Click += new System.EventHandler(this.simpleButton_X_Click);
+            // 
+            // simpleButton6
+            // 
+            this.simpleButton6.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton6.Appearance.Options.UseFont = true;
+            this.simpleButton6.Location = new System.Drawing.Point(486, 359);
+            this.simpleButton6.Name = "simpleButton6";
+            this.simpleButton6.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton6.TabIndex = 164;
+            this.simpleButton6.Text = "9";
+            this.simpleButton6.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton7
+            // 
+            this.simpleButton7.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton7.Appearance.Options.UseFont = true;
+            this.simpleButton7.Location = new System.Drawing.Point(399, 359);
+            this.simpleButton7.Name = "simpleButton7";
+            this.simpleButton7.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton7.TabIndex = 163;
+            this.simpleButton7.Text = "8";
+            this.simpleButton7.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton8
+            // 
+            this.simpleButton8.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton8.Appearance.Options.UseFont = true;
+            this.simpleButton8.Location = new System.Drawing.Point(309, 359);
+            this.simpleButton8.Name = "simpleButton8";
+            this.simpleButton8.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton8.TabIndex = 162;
+            this.simpleButton8.Text = "7";
+            this.simpleButton8.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton3
+            // 
+            this.simpleButton3.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton3.Appearance.Options.UseFont = true;
+            this.simpleButton3.Location = new System.Drawing.Point(486, 315);
+            this.simpleButton3.Name = "simpleButton3";
+            this.simpleButton3.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton3.TabIndex = 161;
+            this.simpleButton3.Text = "6";
+            this.simpleButton3.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton4
+            // 
+            this.simpleButton4.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton4.Appearance.Options.UseFont = true;
+            this.simpleButton4.Location = new System.Drawing.Point(399, 315);
+            this.simpleButton4.Name = "simpleButton4";
+            this.simpleButton4.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton4.TabIndex = 160;
+            this.simpleButton4.Text = "5";
+            this.simpleButton4.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton5
+            // 
+            this.simpleButton5.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton5.Appearance.Options.UseFont = true;
+            this.simpleButton5.Location = new System.Drawing.Point(309, 315);
+            this.simpleButton5.Name = "simpleButton5";
+            this.simpleButton5.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton5.TabIndex = 159;
+            this.simpleButton5.Text = "4";
+            this.simpleButton5.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton_3
+            // 
+            this.simpleButton_3.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_3.Appearance.Options.UseFont = true;
+            this.simpleButton_3.Location = new System.Drawing.Point(486, 271);
+            this.simpleButton_3.Name = "simpleButton_3";
+            this.simpleButton_3.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton_3.TabIndex = 158;
+            this.simpleButton_3.Text = "3";
+            this.simpleButton_3.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton_2
+            // 
+            this.simpleButton_2.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_2.Appearance.Options.UseFont = true;
+            this.simpleButton_2.Location = new System.Drawing.Point(399, 271);
+            this.simpleButton_2.Name = "simpleButton_2";
+            this.simpleButton_2.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton_2.TabIndex = 157;
+            this.simpleButton_2.Text = "2";
+            this.simpleButton_2.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // simpleButton_1
+            // 
+            this.simpleButton_1.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_1.Appearance.Options.UseFont = true;
+            this.simpleButton_1.Location = new System.Drawing.Point(309, 271);
+            this.simpleButton_1.Name = "simpleButton_1";
+            this.simpleButton_1.Size = new System.Drawing.Size(81, 38);
+            this.simpleButton_1.TabIndex = 156;
+            this.simpleButton_1.Text = "1";
+            this.simpleButton_1.Click += new System.EventHandler(this.simpleButton_Number_Click);
+            // 
+            // panelControl9
+            // 
+            this.panelControl9.Controls.Add(this.txt_ip);
+            this.panelControl9.Controls.Add(this.labelControl9);
+            this.panelControl9.Location = new System.Drawing.Point(15, 386);
+            this.panelControl9.Name = "panelControl9";
+            this.panelControl9.Size = new System.Drawing.Size(274, 40);
+            this.panelControl9.TabIndex = 155;
+            this.panelControl9.TabStop = true;
+            this.panelControl9.Visible = false;
+            // 
+            // txt_ip
+            // 
+            this.txt_ip.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_ip.Enabled = false;
+            this.txt_ip.Location = new System.Drawing.Point(93, 2);
+            this.txt_ip.Name = "txt_ip";
+            this.txt_ip.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_ip.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_ip.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_ip.Properties.Appearance.Options.UseFont = true;
+            this.txt_ip.Properties.AutoHeight = false;
+            this.txt_ip.Properties.ReadOnly = true;
+            this.txt_ip.Size = new System.Drawing.Size(179, 36);
+            this.txt_ip.TabIndex = 1;
+            // 
+            // labelControl9
+            // 
+            this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl9.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl9.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl9.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl9.Location = new System.Drawing.Point(2, 2);
+            this.labelControl9.Name = "labelControl9";
+            this.labelControl9.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl9.Size = new System.Drawing.Size(91, 36);
+            this.labelControl9.TabIndex = 0;
+            this.labelControl9.Text = "IP";
+            // 
+            // panelControl8
+            // 
+            this.panelControl8.Controls.Add(this.lookUpEdit_center);
+            this.panelControl8.Controls.Add(this.labelControl8);
+            this.panelControl8.Location = new System.Drawing.Point(306, 148);
+            this.panelControl8.Name = "panelControl8";
+            this.panelControl8.Size = new System.Drawing.Size(262, 40);
+            this.panelControl8.TabIndex = 154;
+            this.panelControl8.TabStop = true;
+            // 
+            // labelControl8
+            // 
+            this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl8.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl8.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl8.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl8.Location = new System.Drawing.Point(2, 2);
+            this.labelControl8.Name = "labelControl8";
+            this.labelControl8.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl8.Size = new System.Drawing.Size(91, 36);
+            this.labelControl8.TabIndex = 106;
+            this.labelControl8.Text = "교반기";
+            // 
+            // panelControl6
+            // 
+            this.panelControl6.Controls.Add(this.txt_jlot);
+            this.panelControl6.Controls.Add(this.labelControl6);
+            this.panelControl6.Location = new System.Drawing.Point(15, 208);
+            this.panelControl6.Name = "panelControl6";
+            this.panelControl6.Size = new System.Drawing.Size(274, 40);
+            this.panelControl6.TabIndex = 153;
+            this.panelControl6.TabStop = true;
+            // 
+            // txt_jlot
+            // 
+            this.txt_jlot.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_jlot.Enabled = false;
+            this.txt_jlot.Location = new System.Drawing.Point(93, 2);
+            this.txt_jlot.Name = "txt_jlot";
+            this.txt_jlot.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_jlot.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_jlot.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_jlot.Properties.Appearance.Options.UseFont = true;
+            this.txt_jlot.Properties.AutoHeight = false;
+            this.txt_jlot.Properties.ReadOnly = true;
+            this.txt_jlot.Size = new System.Drawing.Size(179, 36);
+            this.txt_jlot.TabIndex = 1;
+            // 
+            // labelControl6
+            // 
+            this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl6.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl6.Location = new System.Drawing.Point(2, 2);
+            this.labelControl6.Name = "labelControl6";
+            this.labelControl6.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl6.Size = new System.Drawing.Size(91, 36);
+            this.labelControl6.TabIndex = 0;
+            this.labelControl6.Text = "자품목LOT";
+            // 
+            // panelControl3
+            // 
+            this.panelControl3.Controls.Add(this.txt_lot);
+            this.panelControl3.Controls.Add(this.labelControl3);
+            this.panelControl3.Location = new System.Drawing.Point(306, 30);
+            this.panelControl3.Name = "panelControl3";
+            this.panelControl3.Size = new System.Drawing.Size(262, 40);
+            this.panelControl3.TabIndex = 152;
+            this.panelControl3.TabStop = true;
+            // 
+            // txt_lot
+            // 
+            this.txt_lot.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_lot.Enabled = false;
+            this.txt_lot.Location = new System.Drawing.Point(93, 2);
+            this.txt_lot.Name = "txt_lot";
+            this.txt_lot.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_lot.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_lot.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_lot.Properties.Appearance.Options.UseFont = true;
+            this.txt_lot.Properties.AutoHeight = false;
+            this.txt_lot.Properties.ReadOnly = true;
+            this.txt_lot.Size = new System.Drawing.Size(167, 36);
+            this.txt_lot.TabIndex = 1;
+            // 
+            // labelControl3
+            // 
+            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl3.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl3.Location = new System.Drawing.Point(2, 2);
+            this.labelControl3.Name = "labelControl3";
+            this.labelControl3.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl3.Size = new System.Drawing.Size(91, 36);
+            this.labelControl3.TabIndex = 0;
+            this.labelControl3.Text = "LOT";
+            // 
+            // panelControl7
+            // 
+            this.panelControl7.Controls.Add(this.txt_jpartno);
+            this.panelControl7.Controls.Add(this.labelControl7);
+            this.panelControl7.Location = new System.Drawing.Point(306, 89);
+            this.panelControl7.Name = "panelControl7";
+            this.panelControl7.Size = new System.Drawing.Size(262, 40);
+            this.panelControl7.TabIndex = 151;
+            this.panelControl7.TabStop = true;
+            // 
+            // txt_jpartno
+            // 
+            this.txt_jpartno.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_jpartno.Enabled = false;
+            this.txt_jpartno.Location = new System.Drawing.Point(93, 2);
+            this.txt_jpartno.Name = "txt_jpartno";
+            this.txt_jpartno.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_jpartno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_jpartno.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_jpartno.Properties.Appearance.Options.UseFont = true;
+            this.txt_jpartno.Properties.AutoHeight = false;
+            this.txt_jpartno.Properties.ReadOnly = true;
+            this.txt_jpartno.Size = new System.Drawing.Size(167, 36);
+            this.txt_jpartno.TabIndex = 1;
+            // 
+            // labelControl7
+            // 
+            this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl7.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl7.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl7.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl7.Location = new System.Drawing.Point(2, 2);
+            this.labelControl7.Name = "labelControl7";
+            this.labelControl7.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl7.Size = new System.Drawing.Size(91, 36);
+            this.labelControl7.TabIndex = 0;
+            this.labelControl7.Text = "자품목번호";
+            // 
+            // simpleButton_CANCEL
+            // 
+            this.simpleButton_CANCEL.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_CANCEL.Appearance.Options.UseFont = true;
+            this.simpleButton_CANCEL.Location = new System.Drawing.Point(486, 447);
+            this.simpleButton_CANCEL.LookAndFeel.SkinMaskColor = System.Drawing.Color.Red;
+            this.simpleButton_CANCEL.LookAndFeel.SkinName = "McSkin";
+            this.simpleButton_CANCEL.LookAndFeel.UseDefaultLookAndFeel = false;
+            this.simpleButton_CANCEL.Name = "simpleButton_CANCEL";
+            this.simpleButton_CANCEL.Size = new System.Drawing.Size(82, 53);
+            this.simpleButton_CANCEL.TabIndex = 150;
+            this.simpleButton_CANCEL.Text = "취소";
+            this.simpleButton_CANCEL.Click += new System.EventHandler(this.simpleButton_CANCEL_Click);
+            // 
+            // simpleButton_INPUT
+            // 
+            this.simpleButton_INPUT.Appearance.Font = new System.Drawing.Font("Tahoma", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_INPUT.Appearance.Options.UseFont = true;
+            this.simpleButton_INPUT.Location = new System.Drawing.Point(308, 447);
+            this.simpleButton_INPUT.LookAndFeel.SkinMaskColor = System.Drawing.Color.Lime;
+            this.simpleButton_INPUT.LookAndFeel.SkinName = "McSkin";
+            this.simpleButton_INPUT.LookAndFeel.UseDefaultLookAndFeel = false;
+            this.simpleButton_INPUT.Name = "simpleButton_INPUT";
+            this.simpleButton_INPUT.Size = new System.Drawing.Size(82, 53);
+            this.simpleButton_INPUT.TabIndex = 149;
+            this.simpleButton_INPUT.Text = "입력";
+            this.simpleButton_INPUT.Click += new System.EventHandler(this.simpleButton_INPUT_Click);
+            // 
+            // panelControl5
+            // 
+            this.panelControl5.Controls.Add(this.txt_tqty);
+            this.panelControl5.Controls.Add(this.labelControl5);
+            this.panelControl5.Location = new System.Drawing.Point(15, 330);
+            this.panelControl5.Name = "panelControl5";
+            this.panelControl5.Size = new System.Drawing.Size(274, 40);
+            this.panelControl5.TabIndex = 148;
+            this.panelControl5.TabStop = true;
+            // 
+            // txt_tqty
+            // 
+            this.txt_tqty.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_tqty.Enabled = false;
+            this.txt_tqty.Location = new System.Drawing.Point(91, 2);
+            this.txt_tqty.Name = "txt_tqty";
+            this.txt_tqty.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_tqty.Properties.Appearance.Options.UseFont = true;
+            this.txt_tqty.Properties.AutoHeight = false;
+            this.txt_tqty.Properties.DisplayFormat.FormatString = "N02";
+            this.txt_tqty.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.txt_tqty.Size = new System.Drawing.Size(181, 36);
+            this.txt_tqty.TabIndex = 1;
+            // 
+            // labelControl5
+            // 
+            this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl5.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl5.Location = new System.Drawing.Point(2, 2);
+            this.labelControl5.Name = "labelControl5";
+            this.labelControl5.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl5.Size = new System.Drawing.Size(89, 36);
+            this.labelControl5.TabIndex = 0;
+            this.labelControl5.Text = "총 투입량";
+            // 
+            // panelControl4
+            // 
+            this.panelControl4.Controls.Add(this.txt_qty);
+            this.panelControl4.Controls.Add(this.labelControl4);
+            this.panelControl4.Location = new System.Drawing.Point(15, 271);
+            this.panelControl4.Name = "panelControl4";
+            this.panelControl4.Size = new System.Drawing.Size(274, 40);
+            this.panelControl4.TabIndex = 147;
+            this.panelControl4.TabStop = true;
+            // 
+            // txt_qty
+            // 
+            this.txt_qty.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_qty.Location = new System.Drawing.Point(91, 2);
+            this.txt_qty.Name = "txt_qty";
+            this.txt_qty.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_qty.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_qty.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_qty.Properties.Appearance.Options.UseFont = true;
+            this.txt_qty.Properties.AutoHeight = false;
+            this.txt_qty.Properties.DisplayFormat.FormatString = "N02";
+            this.txt_qty.Properties.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.txt_qty.Size = new System.Drawing.Size(181, 36);
+            this.txt_qty.TabIndex = 1;
+            // 
+            // labelControl4
+            // 
+            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl4.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl4.Location = new System.Drawing.Point(2, 2);
+            this.labelControl4.Name = "labelControl4";
+            this.labelControl4.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl4.Size = new System.Drawing.Size(89, 36);
+            this.labelControl4.TabIndex = 0;
+            this.labelControl4.Text = "투입량";
+            // 
+            // panelControl2
+            // 
+            this.panelControl2.Controls.Add(this.txt_jpartnm);
+            this.panelControl2.Controls.Add(this.labelControl2);
+            this.panelControl2.Location = new System.Drawing.Point(15, 148);
+            this.panelControl2.Name = "panelControl2";
+            this.panelControl2.Size = new System.Drawing.Size(274, 40);
+            this.panelControl2.TabIndex = 146;
+            this.panelControl2.TabStop = true;
+            // 
+            // txt_jpartnm
+            // 
+            this.txt_jpartnm.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_jpartnm.Enabled = false;
+            this.txt_jpartnm.Location = new System.Drawing.Point(93, 2);
+            this.txt_jpartnm.Name = "txt_jpartnm";
+            this.txt_jpartnm.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_jpartnm.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_jpartnm.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_jpartnm.Properties.Appearance.Options.UseFont = true;
+            this.txt_jpartnm.Properties.AutoHeight = false;
+            this.txt_jpartnm.Properties.ReadOnly = true;
+            this.txt_jpartnm.Size = new System.Drawing.Size(179, 36);
+            this.txt_jpartnm.TabIndex = 1;
+            // 
+            // labelControl2
+            // 
+            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl2.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl2.Location = new System.Drawing.Point(2, 2);
+            this.labelControl2.Name = "labelControl2";
+            this.labelControl2.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl2.Size = new System.Drawing.Size(91, 36);
+            this.labelControl2.TabIndex = 0;
+            this.labelControl2.Text = "자품목명";
+            // 
+            // panelControl1
+            // 
+            this.panelControl1.Controls.Add(this.barcode);
+            this.panelControl1.Controls.Add(this.labelControl1);
+            this.panelControl1.Location = new System.Drawing.Point(15, 89);
+            this.panelControl1.Name = "panelControl1";
+            this.panelControl1.Size = new System.Drawing.Size(274, 40);
+            this.panelControl1.TabIndex = 145;
+            this.panelControl1.TabStop = true;
+            // 
+            // barcode
+            // 
+            this.barcode.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.barcode.Location = new System.Drawing.Point(93, 2);
+            this.barcode.Name = "barcode";
+            this.barcode.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.barcode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.barcode.Properties.Appearance.Options.UseBackColor = true;
+            this.barcode.Properties.Appearance.Options.UseFont = true;
+            this.barcode.Properties.AutoHeight = false;
+            this.barcode.Size = new System.Drawing.Size(179, 36);
+            this.barcode.TabIndex = 1;
+            // 
+            // labelControl1
+            // 
+            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl1.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl1.Location = new System.Drawing.Point(2, 2);
+            this.labelControl1.Name = "labelControl1";
+            this.labelControl1.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl1.Size = new System.Drawing.Size(91, 36);
+            this.labelControl1.TabIndex = 0;
+            this.labelControl1.Text = "자재 바코드";
+            // 
+            // panelControl36
+            // 
+            this.panelControl36.Controls.Add(this.txt_orderno);
+            this.panelControl36.Controls.Add(this.labelControl37);
+            this.panelControl36.Location = new System.Drawing.Point(15, 30);
+            this.panelControl36.Name = "panelControl36";
+            this.panelControl36.Size = new System.Drawing.Size(274, 40);
+            this.panelControl36.TabIndex = 144;
+            this.panelControl36.TabStop = true;
+            // 
+            // txt_orderno
+            // 
+            this.txt_orderno.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_orderno.Enabled = false;
+            this.txt_orderno.Location = new System.Drawing.Point(93, 2);
+            this.txt_orderno.Name = "txt_orderno";
+            this.txt_orderno.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_orderno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_orderno.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_orderno.Properties.Appearance.Options.UseFont = true;
+            this.txt_orderno.Properties.AutoHeight = false;
+            this.txt_orderno.Properties.ReadOnly = true;
+            this.txt_orderno.Size = new System.Drawing.Size(179, 36);
+            this.txt_orderno.TabIndex = 1;
+            // 
+            // labelControl37
+            // 
+            this.labelControl37.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl37.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl37.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl37.Location = new System.Drawing.Point(2, 2);
+            this.labelControl37.Name = "labelControl37";
+            this.labelControl37.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl37.Size = new System.Drawing.Size(91, 36);
+            this.labelControl37.TabIndex = 0;
+            this.labelControl37.Text = "작업지시번호";
+            // 
+            // txt_partno
+            // 
+            this.txt_partno.Location = new System.Drawing.Point(220, 517);
+            this.txt_partno.Name = "txt_partno";
+            this.txt_partno.Size = new System.Drawing.Size(79, 21);
+            this.txt_partno.TabIndex = 173;
+            // 
+            // panelControl10
+            // 
+            this.panelControl10.Controls.Add(this.lookUpEdit_Mach);
+            this.panelControl10.Controls.Add(this.labelControl10);
+            this.panelControl10.Location = new System.Drawing.Point(306, 208);
+            this.panelControl10.Name = "panelControl10";
+            this.panelControl10.Size = new System.Drawing.Size(262, 40);
+            this.panelControl10.TabIndex = 155;
+            this.panelControl10.TabStop = true;
+            // 
+            // labelControl10
+            // 
+            this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl10.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl10.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl10.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl10.Location = new System.Drawing.Point(2, 2);
+            this.labelControl10.Name = "labelControl10";
+            this.labelControl10.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl10.Size = new System.Drawing.Size(91, 36);
+            this.labelControl10.TabIndex = 106;
+            this.labelControl10.Text = "베이스탱크";
+            // 
+            // lookUpEdit_Mach
+            // 
+            this.lookUpEdit_Mach.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.lookUpEdit_Mach.Location = new System.Drawing.Point(93, 2);
+            this.lookUpEdit_Mach.Name = "lookUpEdit_Mach";
+            this.lookUpEdit_Mach.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lookUpEdit_Mach.Properties.Appearance.Options.UseFont = true;
+            this.lookUpEdit_Mach.Properties.AppearanceDropDown.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
+            this.lookUpEdit_Mach.Properties.AppearanceDropDown.Options.UseFont = true;
+            this.lookUpEdit_Mach.Properties.AutoHeight = false;
+            this.lookUpEdit_Mach.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.lookUpEdit_Mach.Properties.DropDownRows = 5;
+            this.lookUpEdit_Mach.Size = new System.Drawing.Size(167, 36);
+            this.lookUpEdit_Mach.TabIndex = 108;
+            this.lookUpEdit_Mach.EditValueChanged += new System.EventHandler(this.lookUpEdit_Mach_EditValueChanged);
+            // 
+            // lookUpEdit_center
+            // 
+            this.lookUpEdit_center.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.lookUpEdit_center.Location = new System.Drawing.Point(93, 2);
+            this.lookUpEdit_center.Name = "lookUpEdit_center";
+            this.lookUpEdit_center.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lookUpEdit_center.Properties.Appearance.Options.UseFont = true;
+            this.lookUpEdit_center.Properties.AppearanceDropDown.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
+            this.lookUpEdit_center.Properties.AppearanceDropDown.Options.UseFont = true;
+            this.lookUpEdit_center.Properties.AutoHeight = false;
+            this.lookUpEdit_center.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.lookUpEdit_center.Properties.DropDownRows = 5;
+            this.lookUpEdit_center.Size = new System.Drawing.Size(167, 36);
+            this.lookUpEdit_center.TabIndex = 109;
+            // 
+            // UcInsertWork
+            // 
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
+            this.ClientSize = new System.Drawing.Size(1024, 550);
+            this.ControlBox = false;
+            this.Controls.Add(this.splitContainer1);
+            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+            this.Name = "UcInsertWork";
+            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
+            this.Load += new System.EventHandler(this.UcInsertWork_Load);
+            this.splitContainer1.Panel1.ResumeLayout(false);
+            this.splitContainer1.Panel2.ResumeLayout(false);
+            this.splitContainer1.Panel2.PerformLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
+            this.splitContainer1.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Main)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_Main)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit6)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit7)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit6)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit8)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit9)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit10)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl9)).EndInit();
+            this.panelControl9.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_ip.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl8)).EndInit();
+            this.panelControl8.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
+            this.panelControl6.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_jlot.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
+            this.panelControl3.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_lot.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
+            this.panelControl7.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_jpartno.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
+            this.panelControl5.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_tqty.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
+            this.panelControl4.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_qty.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
+            this.panelControl2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_jpartnm.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
+            this.panelControl1.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.barcode.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl36)).EndInit();
+            this.panelControl36.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_orderno.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl10)).EndInit();
+            this.panelControl10.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_Mach.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_center.Properties)).EndInit();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+        private System.Windows.Forms.Timer timer1;
+        private System.Windows.Forms.SplitContainer splitContainer1;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Backspace;
+        private DevExpress.XtraEditors.SimpleButton simpleButton10;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_X;
+        private DevExpress.XtraEditors.SimpleButton simpleButton6;
+        private DevExpress.XtraEditors.SimpleButton simpleButton7;
+        private DevExpress.XtraEditors.SimpleButton simpleButton8;
+        private DevExpress.XtraEditors.SimpleButton simpleButton3;
+        private DevExpress.XtraEditors.SimpleButton simpleButton4;
+        private DevExpress.XtraEditors.SimpleButton simpleButton5;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_3;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_2;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_1;
+        private DevExpress.XtraEditors.PanelControl panelControl9;
+        private DevExpress.XtraEditors.TextEdit txt_ip;
+        private DevExpress.XtraEditors.LabelControl labelControl9;
+        private DevExpress.XtraEditors.PanelControl panelControl8;
+        private DevExpress.XtraEditors.LabelControl labelControl8;
+        private DevExpress.XtraEditors.PanelControl panelControl6;
+        private DevExpress.XtraEditors.TextEdit txt_jlot;
+        private DevExpress.XtraEditors.LabelControl labelControl6;
+        private DevExpress.XtraEditors.PanelControl panelControl3;
+        private DevExpress.XtraEditors.TextEdit txt_lot;
+        private DevExpress.XtraEditors.LabelControl labelControl3;
+        private DevExpress.XtraEditors.PanelControl panelControl7;
+        private DevExpress.XtraEditors.TextEdit txt_jpartno;
+        private DevExpress.XtraEditors.LabelControl labelControl7;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_CANCEL;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_INPUT;
+        private DevExpress.XtraEditors.PanelControl panelControl5;
+        private DevExpress.XtraEditors.TextEdit txt_tqty;
+        private DevExpress.XtraEditors.LabelControl labelControl5;
+        private DevExpress.XtraEditors.PanelControl panelControl4;
+        private DevExpress.XtraEditors.TextEdit txt_qty;
+        private DevExpress.XtraEditors.LabelControl labelControl4;
+        private DevExpress.XtraEditors.PanelControl panelControl2;
+        private DevExpress.XtraEditors.TextEdit txt_jpartnm;
+        private DevExpress.XtraEditors.LabelControl labelControl2;
+        private DevExpress.XtraEditors.PanelControl panelControl1;
+        private DevExpress.XtraEditors.TextEdit barcode;
+        private DevExpress.XtraEditors.LabelControl labelControl1;
+        private DevExpress.XtraEditors.PanelControl panelControl36;
+        private DevExpress.XtraEditors.TextEdit txt_orderno;
+        private DevExpress.XtraEditors.LabelControl labelControl37;
+        private DevExpress.XtraGrid.GridControl gridControl_Main;
+        private DevExpress.XtraGrid.Views.Grid.GridView gridView_Main;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn53;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn54;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn55;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn56;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn60;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn57;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn58;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn59;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit6;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit4;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit7;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit5;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit6;
+        private DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBox3;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit3;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit8;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit9;
+        private DevExpress.XtraEditors.Repository.RepositoryItemDateEdit repositoryItemDateEdit2;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit4;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit10;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn1;
+        private DevExpress.XtraEditors.SimpleButton simpleButton1_s;
+        private DevExpress.XtraEditors.SimpleButton simpleButton1_e;
+        private System.Windows.Forms.TextBox txt_s;
+        private System.Windows.Forms.HelpProvider helpProvider1;
+        private System.Windows.Forms.TextBox txt_e;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Reset;
+        private System.Windows.Forms.TextBox txt_partno;
+        private DevExpress.XtraEditors.PanelControl panelControl10;
+        private DevExpress.XtraEditors.LookUpEdit lookUpEdit_Mach;
+        private DevExpress.XtraEditors.LabelControl labelControl10;
+        private DevExpress.XtraEditors.LookUpEdit lookUpEdit_center;
+    }
+}(No newline at end of file)
 
KHSCALE_TP/UcInsertWork.cs (added)
+++ KHSCALE_TP/UcInsertWork.cs
@@ -0,0 +1,426 @@
+using ClientLib;
+using ClientLib.CommonService2;
+using DevExpress.XtraEditors;
+using PublicLib;
+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.Runtime.InteropServices;
+using System.Data.SqlClient;
+using System.Net;
+
+namespace KHSCALE_TP
+{
+    public partial class UcInsertWork : Form
+    {
+        [DllImport("user32.dll")]
+        static extern uint keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);
+
+        string BarData = "";
+
+        public bool m_HIDE = false;
+
+        U3Database u3Database = new U3Database();
+
+        private string m_ORDER_NO = "";
+        private string m_ORDER_LOT = "";
+        private string m_ORDER_PART = "";
+
+        private bool m_FirstInput = true;
+
+        // 전자 저울 변수 선언
+        private SerialBase m_ser = null;
+
+        public UcInsertWork()
+        {
+            InitializeComponent();
+
+            DataView grpMach = new DataView(GetMachTable());
+            UtilClass.SetLookup(this.lookUpEdit_Mach, grpMach, "MACH_CD", "MACH_NM", true, true);
+
+            DataView grpcenter = new DataView(GetcenterTable());
+            UtilClass.SetLookup(this.lookUpEdit_center, grpcenter, "WORKCENTER", "CENTER_NAME", true, true);
+
+            string localIP = "Not available, please check your network seetings!";
+            IPHostEntry host = Dns.GetHostEntry(Dns.GetHostName());
+            foreach (IPAddress ip in host.AddressList)
+            {
+                localIP = ip.ToString();
+                txt_ip.Text = localIP;
+            }
+
+            SetScale();
+        }
+
+        public void Search()
+        {
+            try
+            {
+                DataTable dt = null;
+
+                dt = u3Database.OpenSQL("select * from T_KH_SAL_WORK_D a where a.ORDER_NO = '" + txt_orderno.Text + "' and a.PLOT_NO = '" + txt_lot.Text + "'");
+
+                // 기존에 저장된 데이터가 있는지 확인하여 있으면 기존에 저장된 데이터를 불러옴(자재만)
+                if (dt.Rows.Count == 0)
+                {
+                    gridControl_Main.DataSource = null;
+
+                    //OnInitButtonClicked();
+
+                    DataTable resultComp3 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m104 '" + txt_orderno.Text + "', '" + txt_lot.Text + "'");
+
+                    gridControl_Main.DataSource = resultComp3;
+
+                    barcode.SelectAll();
+                }
+                else if (dt.Rows.Count != 0)
+                {
+                    gridControl_Main.DataSource = null;
+
+                    //OnInitButtonClicked();
+
+                    //DataTable dt1 = null;
+
+                    //쿼리 수정 필
+                    //DataTable resultComp3 = u3Database.OpenSQL("select a.process_key, a.note, a.resource_used, a.[description], b.QTY as in_qty, a.uom2 as uom, a.qty_total from T_KH_SAL_ORDER a left join T_KH_SAL_WORK_D b on a.order_no = b.ORDER_NO and a.lot = b.PLOT_NO and a.resource_used = b.JPART_NO where a.order_no = '" + txt_orderno.Text + "' and a.lot = '" + txt_lot.Text + "'");
+                    DataTable resultComp3 = u3Database.OpenSQL("EXEC KHJPARTINDATA '" + txt_orderno.Text + "', '" + txt_lot.Text + "'");
+
+                    gridControl_Main.DataSource = resultComp3;
+
+                }
+            }
+            catch (Exception ex)
+            {
+                this.ActiveControl = barcode;
+                barcode.SelectAll();
+
+                XtraMessageBox.Show(ex.Message);
+            }
+
+        }
+
+        //전자저울 셋팅
+        private void SetScale()
+        {
+            //CAS 501/600
+            if (txt_ip.Text == "192.168.1.121" || txt_ip.Text == "192.168.1.124")
+            {
+                m_ser = new ComCasCi501();
+                m_ser.Init("COM1", 9600, 0, 8, 1);
+            }
+            //ICS9000
+            else if (txt_ip.Text == "192.168.1.125")
+            {
+                m_ser = new ComIcs9000();
+                m_ser.Init("COM1", 9600, 0, 8, 1);
+            }
+            //FS-1020C
+            else if (txt_ip.Text == "192.168.1.126" || txt_ip.Text == "192.168.1.127" || txt_ip.Text == "192.168.1.128" || txt_ip.Text == "192.168.1.122" || txt_ip.Text == "192.168.1.123")
+            {
+                m_ser = new ComFs1020c();
+                m_ser.Init("COM1", 9600, 0, 8, 1);
+            }
+            else if (txt_ip.Text == "192.168.1.129")
+            {
+                m_ser = new ComFs1020c();
+                // 구리스는 COM2 / 그 외는 COM1
+                m_ser.Init("COM2", 9600, 0, 8, 1);
+            }
+        }
+
+        private DataTable GetMachTable()
+        {
+            try
+            {
+                return u3Database.OpenSQL("select 'N' as SEL_FIELD, a.MACH_CD, a.MACH_NO, a.MACH_NM from dbo.T_STD_MACH a where a.COMP_CD = '" + ConstClass._COMP_CD + "' and isnull(a.DEL_YN,'N') = 'N' and a.MACH_TYPE = '04' and a.MACH_NM like '%' + 'PV' + '%' order by a.MACH_CD");
+            }
+            catch (Exception ex)
+            {
+                XtraMessageBox.Show(ex.Message);
+            }
+            return null;
+        }
+
+        private DataTable GetcenterTable()
+        {
+            try
+            {
+                return u3Database.OpenSQL("select 'N' as SEL_FIELD, a.WORKCENTER, a.CENTER_NAME from dbo.T_STD_CENTER a where a.COMP_CD = '" + ConstClass._COMP_CD + "'");
+            }
+            catch (Exception ex)
+            {
+                XtraMessageBox.Show(ex.Message);
+            }
+            return null;
+        }
+
+        public void SetData(string ORDER_NO, string ORDER_LOT, string PART_NO)
+        {
+            m_ORDER_NO = ORDER_NO;
+            m_ORDER_LOT = ORDER_LOT;
+            m_ORDER_PART = PART_NO;
+
+            txt_orderno.Text = m_ORDER_NO;
+            txt_lot.Text = m_ORDER_LOT;
+            txt_partno.Text = m_ORDER_PART;
+
+            Search();
+        }
+
+        private void UcInsertWork_Load(object sender, EventArgs e)
+        {
+            //timer1.Interval = 1000;
+            //timer1.Enabled = true;
+
+            // 저울의 현재 값 받기
+
+            //float value = m_ser.GetValue();
+        }
+
+        public void barcode_search(string BarData)
+        {
+            try
+            {
+                OnInitButtonClicked();
+
+                string[] arValues = barcode.Text.Trim().Split(' ');
+
+                string jp = arValues[0];
+                string l = arValues[1];
+
+                string jp1 = jp.Substring(1, 8);
+
+                txt_jpartno.Text = jp1;
+                txt_jlot.Text = l;
+
+                DataTable dt1 = u3Database.OpenSQL("select a.[description] from T_KH_SAL_ORDER a where a.order_no = '" + txt_orderno.Text + "' and a.lot = '" + txt_lot.Text + "' and a.resource_used = '" + jp1.ToString() + "'");
+
+                txt_jpartnm.Text = dt1.Rows[0]["description"].ToString();
+
+                barcode.SelectAll();
+
+            }
+            catch (Exception ex)
+            {
+                this.ActiveControl = barcode;
+                barcode.SelectAll();
+
+                XtraMessageBox.Show(ex.Message);
+            }
+
+            m_FirstInput = true;
+
+        }
+
+        private void OnInitButtonClicked()
+        {
+            //barcode.Text = "";
+            txt_jpartno.Text = "";
+            txt_jpartnm.Text = "";
+            txt_jlot.Text = "";
+            txt_qty.Text = "";
+            txt_tqty.Text = "";
+        }
+
+        private void Input()
+        {
+            try
+            {
+                this.Cursor = Cursors.WaitCursor;
+
+                txt_qty.Text = txt_qty.Text == "" ? "0" : txt_qty.Text;
+                int in_qty = Convert.ToInt32(txt_qty.Text);
+
+                u3Database.ExcuteSql("INSERT INTO T_KH_SAL_WORK_D (ORDER_NO, PPART_NO, PLOT_NO, JPART_NO, JLOT_NO, QTY, REG_ID, REG_DT, UP_ID, UP_DT) VALUES (" +
+                " '" + txt_orderno.Text + "'" +
+                " ,'" + txt_partno.Text + "'" +
+                " ,'" + txt_lot.Text + "'" +
+                " ,'" + txt_jpartno.Text + "'" +
+                " ,'" + txt_jlot.Text + "'" +
+                " ,'" + in_qty + "'" +
+                " ,'" + ConstClass._USR_ID + "'" +
+                " ,'" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'" +
+                " ,'" + ConstClass._USR_ID + "'" +
+                " ,'" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'" +
+                ")");
+
+                XtraMessageBox.Show("자재투입 완료되었습니다.");
+
+                OnInitButtonClicked();
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                XtraMessageBox.Show(ex.Message);
+            }
+            this.Cursor = Cursors.Arrow;
+        }
+
+        private void Start()
+        {
+
+        }
+
+        private void simpleButton_CANCEL_Click(object sender, EventArgs e)
+        {
+            //m_ser.Close();
+            this.Close();
+            m_HIDE = true;
+        }
+
+        private void simpleButton_INPUT_Click(object sender, EventArgs e)
+        {
+            //작업지시에 대한 원자재 투입 실적 저장
+            Input();
+        }
+
+        private void barcode_KeyUp(object sender, KeyEventArgs e)
+        {
+            if (e.KeyCode == Keys.Enter)
+            {
+                e.SuppressKeyPress = true;
+
+                barcode_search(BarData);
+            }
+            else
+            {
+
+            }
+        }
+
+        private void simpleButton_Backspace_Click(object sender, EventArgs e)
+        {
+            txt_qty.Text = txt_qty.Text.Substring(0, txt_qty.Text.Length - 1);
+        }
+
+        private void simpleButton_Number_Click(object sender, EventArgs e)
+        {
+            if (m_FirstInput)
+            {
+                txt_qty.Text = "";
+                m_FirstInput = false;
+            }
+            txt_qty.Text += ((SimpleButton)sender).Text;
+        }
+
+        private void simpleButton_X_Click(object sender, EventArgs e)
+        {
+            txt_qty.Text = "";
+        }
+
+        private void lookUpEdit_Mach_EditValueChanged(object sender, EventArgs e)
+        {
+            try
+            {
+                if (lookUpEdit_Mach.EditValue.ToString() != String.Empty || lookUpEdit_Mach.EditValue.ToString() != "")
+                {
+                    this.Cursor = Cursors.WaitCursor;
+
+                    //string sDate = this.dateEdit_ORDER_DT.DateTime.ToString("yyyy-MM-dd");
+
+                    string sDate = DateTime.Now.ToString("yyyy-MM-dd");
+
+                    string mc = lookUpEdit_Mach.EditValue.ToString();
+
+                    DataTable resultData = null;
+
+                    resultData = u3Database.OpenSQL("select ISNULL(a.REAL_DATA,'0') as REAL_DATA, b.REMARK01, b.REMARK02 from T_HT_REAL_DATA a inner join T_STD_MACH b on a.MACH_CD = b.MACH_CD where a.COMP_CD = '0001' and a.MACH_CD = '" + mc.ToString() + "' and SUBSTRING(CONVERT(varchar(20),a.REG_DT,23),0,11) = '" + sDate + "'");
+
+                    //resultData = u3Database.OpenSQL("select ISNULL(a.REAL_DATA,'0') as REAL_DATA, b.REMARK01, b.REMARK02 from T_HT_REAL_DATA a inner join T_STD_MACH b on a.MACH_CD = b.MACH_CD where a.COMP_CD = '0001' and a.MACH_CD = '" + mc.ToString() + "'");
+
+                    string pv = resultData.Rows[0]["REAL_DATA"].ToString();
+
+                    double pvs = Convert.ToDouble(pv);
+
+                    txt_qty.Text = pvs.ToString();
+
+                    txt_jpartno.Text = resultData.Rows[0]["REMARK01"].ToString();
+
+                    txt_jpartnm.Text = resultData.Rows[0]["REMARK02"].ToString();
+
+                    txt_jlot.Text = sDate;
+
+                    this.Cursor = Cursors.Arrow;
+                }
+                else
+                {
+                    return;
+                }
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                MessageBox.Show(ex.Message);
+            }
+        }
+
+        private void gridView_Main_RowStyle(object sender, DevExpress.XtraGrid.Views.Grid.RowStyleEventArgs e)
+        {
+            DevExpress.XtraGrid.Views.Grid.GridView View = sender as DevExpress.XtraGrid.Views.Grid.GridView;
+
+            try
+            {
+                DataRow dr = View.GetDataRow(e.RowHandle);
+
+                if (Convert.ToDouble(dr["QTY"]) > 0)
+                {
+                    e.Appearance.BackColor = System.Drawing.Color.DeepSkyBlue;
+                    e.HighPriority = true;
+                }
+            }
+            catch
+            {
+
+            }
+        }
+
+        private void simpleButton1_s_Click(object sender, EventArgs e)
+        {
+            txt_s.Text = "";
+            txt_e.Text = "";
+            txt_ip.Text = "";
+            float value = m_ser.GetValue();
+            txt_s.Text = value.ToString();
+
+
+            if(txt_s.Text!="")
+            {
+                simpleButton1_s.LookAndFeel.SkinMaskColor = Color.Black;
+                simpleButton_Reset.Visible = true;
+            }
+        }
+
+        private void simpleButton1_e_Click(object sender, EventArgs e)
+        {
+            float value = m_ser.GetValue();
+
+            txt_e.Text = value.ToString();
+
+            string s = txt_s.Text;
+
+            string e1= txt_e.Text;
+
+            double ss = Convert.ToDouble(s);
+
+            double ee = Convert.ToDouble(e1);
+
+            txt_qty.Text = Convert.ToString(ss - ee);
+
+        }
+
+        private void simpleButton_Reset_Click(object sender, EventArgs e)
+        {
+            txt_s.Text = "";
+            txt_e.Text = "";
+            txt_ip.Text = "";
+            simpleButton1_s.LookAndFeel.SkinMaskColor = Color.Lime;
+            simpleButton_Reset.Visible = false;
+        }
+    }
+}
 
KHSCALE_TP/UcInsertWork.resx (added)
+++ KHSCALE_TP/UcInsertWork.resx
@@ -0,0 +1,126 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <metadata name="timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>17, 17</value>
+  </metadata>
+  <metadata name="helpProvider1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>104, 17</value>
+  </metadata>
+</root>(No newline at end of file)
 
KHSCALE_TP/UcOrderList.Designer.cs (added)
+++ KHSCALE_TP/UcOrderList.Designer.cs
@@ -0,0 +1,726 @@
+namespace KHSCALE_TP
+{
+    partial class UcOrderList
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region 구성 요소 디자이너에서 생성한 코드
+
+        /// <summary> 
+        /// 디자이너 지원에 필요한 메서드입니다. 
+        /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UcOrderList));
+            DevExpress.XtraGrid.GridLevelNode gridLevelNode1 = new DevExpress.XtraGrid.GridLevelNode();
+            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
+            this.panelControl_Manu = new DevExpress.XtraEditors.PanelControl();
+            this.toggleSwitch_END = new DevExpress.XtraEditors.ToggleSwitch();
+            this.simpleButton_ReFresh = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_partnm = new DevExpress.XtraEditors.TextEdit();
+            this.lable2 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_partno = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
+            this.simpleButton_Work = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
+            this.lookUpEdit_Mach = new DevExpress.XtraEditors.LookUpEdit();
+            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl36 = new DevExpress.XtraEditors.PanelControl();
+            this.dateEdit_ORDER_DT = new DevExpress.XtraEditors.DateEdit();
+            this.simpleButton_Next = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_Pre = new DevExpress.XtraEditors.SimpleButton();
+            this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
+            this.gridControl_Main = new DevExpress.XtraGrid.GridControl();
+            this.gridView_Main = new DevExpress.XtraGrid.Views.Grid.GridView();
+            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit_ITEM_SPEC = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemLookUpEdit_ITEM_CD = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit_Mokh = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemButtonEdit_Detail = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
+            this.repositoryItemTextEdit_DataTime = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit_PROC = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemLookUpEdit_WORKER = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemDateEdit_END_DT = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
+            this.repositoryItemTextEdit_RATIO = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit_MACH = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Manu)).BeginInit();
+            this.panelControl_Manu.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.toggleSwitch_END.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
+            this.panelControl4.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partnm.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
+            this.panelControl5.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partno.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
+            this.panelControl2.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_Mach.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl36)).BeginInit();
+            this.panelControl36.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
+            this.panelControl1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Main)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_Main)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ORDER_UNIT_CD)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_ITEM_SPEC)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ITEM_CD)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Mokh)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Detail)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_DataTime)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_PROC)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_WORKER)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_RATIO)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_MACH)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // panelControl_Manu
+            // 
+            this.panelControl_Manu.Controls.Add(this.toggleSwitch_END);
+            this.panelControl_Manu.Controls.Add(this.simpleButton_ReFresh);
+            this.panelControl_Manu.Controls.Add(this.panelControl4);
+            this.panelControl_Manu.Controls.Add(this.panelControl5);
+            this.panelControl_Manu.Controls.Add(this.simpleButton_Work);
+            this.panelControl_Manu.Controls.Add(this.panelControl2);
+            this.panelControl_Manu.Controls.Add(this.panelControl36);
+            this.panelControl_Manu.Dock = System.Windows.Forms.DockStyle.Top;
+            this.panelControl_Manu.Location = new System.Drawing.Point(0, 0);
+            this.panelControl_Manu.Name = "panelControl_Manu";
+            this.panelControl_Manu.Size = new System.Drawing.Size(1008, 153);
+            this.panelControl_Manu.TabIndex = 24;
+            // 
+            // toggleSwitch_END
+            // 
+            this.toggleSwitch_END.Location = new System.Drawing.Point(377, 104);
+            this.toggleSwitch_END.Name = "toggleSwitch_END";
+            this.toggleSwitch_END.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.toggleSwitch_END.Properties.Appearance.Options.UseFont = true;
+            this.toggleSwitch_END.Properties.Appearance.Options.UseTextOptions = true;
+            this.toggleSwitch_END.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
+            this.toggleSwitch_END.Properties.AutoHeight = false;
+            this.toggleSwitch_END.Properties.LookAndFeel.SkinMaskColor = System.Drawing.Color.Black;
+            this.toggleSwitch_END.Properties.LookAndFeel.SkinMaskColor2 = System.Drawing.Color.White;
+            this.toggleSwitch_END.Properties.LookAndFeel.UseDefaultLookAndFeel = false;
+            this.toggleSwitch_END.Properties.OffText = "미완료표시";
+            this.toggleSwitch_END.Properties.OnText = "전체표시";
+            this.toggleSwitch_END.Size = new System.Drawing.Size(235, 37);
+            this.toggleSwitch_END.TabIndex = 112;
+            this.toggleSwitch_END.Toggled += new System.EventHandler(this.toggleSwitch_END_Toggled);
+            // 
+            // simpleButton_ReFresh
+            // 
+            this.simpleButton_ReFresh.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_ReFresh.Appearance.Options.UseFont = true;
+            this.simpleButton_ReFresh.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_ReFresh.Image")));
+            this.simpleButton_ReFresh.Location = new System.Drawing.Point(618, 7);
+            this.simpleButton_ReFresh.Name = "simpleButton_ReFresh";
+            this.simpleButton_ReFresh.Size = new System.Drawing.Size(106, 140);
+            this.simpleButton_ReFresh.TabIndex = 110;
+            this.simpleButton_ReFresh.Text = "새로\r\n고침";
+            this.simpleButton_ReFresh.Click += new System.EventHandler(this.simpleButton_ReFresh_Click);
+            // 
+            // panelControl4
+            // 
+            this.panelControl4.Controls.Add(this.txt_partnm);
+            this.panelControl4.Controls.Add(this.lable2);
+            this.panelControl4.Location = new System.Drawing.Point(311, 56);
+            this.panelControl4.Name = "panelControl4";
+            this.panelControl4.Size = new System.Drawing.Size(301, 40);
+            this.panelControl4.TabIndex = 109;
+            this.panelControl4.TabStop = true;
+            // 
+            // txt_partnm
+            // 
+            this.txt_partnm.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_partnm.Enabled = false;
+            this.txt_partnm.Location = new System.Drawing.Point(80, 2);
+            this.txt_partnm.Name = "txt_partnm";
+            this.txt_partnm.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_partnm.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_partnm.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_partnm.Properties.Appearance.Options.UseFont = true;
+            this.txt_partnm.Properties.AutoHeight = false;
+            this.txt_partnm.Properties.ReadOnly = true;
+            this.txt_partnm.Size = new System.Drawing.Size(219, 36);
+            this.txt_partnm.TabIndex = 1;
+            // 
+            // lable2
+            // 
+            this.lable2.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lable2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.lable2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.lable2.Dock = System.Windows.Forms.DockStyle.Left;
+            this.lable2.Location = new System.Drawing.Point(2, 2);
+            this.lable2.Name = "lable2";
+            this.lable2.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.lable2.Size = new System.Drawing.Size(78, 36);
+            this.lable2.TabIndex = 0;
+            this.lable2.Text = "제품명";
+            // 
+            // panelControl5
+            // 
+            this.panelControl5.Controls.Add(this.txt_partno);
+            this.panelControl5.Controls.Add(this.labelControl4);
+            this.panelControl5.Location = new System.Drawing.Point(5, 56);
+            this.panelControl5.Name = "panelControl5";
+            this.panelControl5.Size = new System.Drawing.Size(302, 40);
+            this.panelControl5.TabIndex = 108;
+            this.panelControl5.TabStop = true;
+            // 
+            // txt_partno
+            // 
+            this.txt_partno.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_partno.Enabled = false;
+            this.txt_partno.Location = new System.Drawing.Point(80, 2);
+            this.txt_partno.Name = "txt_partno";
+            this.txt_partno.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_partno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_partno.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_partno.Properties.Appearance.Options.UseFont = true;
+            this.txt_partno.Properties.AutoHeight = false;
+            this.txt_partno.Properties.ReadOnly = true;
+            this.txt_partno.Size = new System.Drawing.Size(220, 36);
+            this.txt_partno.TabIndex = 1;
+            // 
+            // labelControl4
+            // 
+            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl4.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl4.Location = new System.Drawing.Point(2, 2);
+            this.labelControl4.Name = "labelControl4";
+            this.labelControl4.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl4.Size = new System.Drawing.Size(78, 36);
+            this.labelControl4.TabIndex = 0;
+            this.labelControl4.Text = "제품코드";
+            // 
+            // simpleButton_Work
+            // 
+            this.simpleButton_Work.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_Work.Appearance.Options.UseFont = true;
+            this.simpleButton_Work.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Work.Image")));
+            this.simpleButton_Work.Location = new System.Drawing.Point(730, 7);
+            this.simpleButton_Work.Name = "simpleButton_Work";
+            this.simpleButton_Work.Size = new System.Drawing.Size(278, 140);
+            this.simpleButton_Work.TabIndex = 107;
+            this.simpleButton_Work.Text = "작업입력";
+            this.simpleButton_Work.Click += new System.EventHandler(this.simpleButton_Work_Click);
+            // 
+            // panelControl2
+            // 
+            this.panelControl2.Controls.Add(this.lookUpEdit_Mach);
+            this.panelControl2.Controls.Add(this.labelControl1);
+            this.panelControl2.Location = new System.Drawing.Point(311, 5);
+            this.panelControl2.Name = "panelControl2";
+            this.panelControl2.Size = new System.Drawing.Size(299, 40);
+            this.panelControl2.TabIndex = 106;
+            this.panelControl2.TabStop = true;
+            // 
+            // lookUpEdit_Mach
+            // 
+            this.lookUpEdit_Mach.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.lookUpEdit_Mach.Location = new System.Drawing.Point(80, 2);
+            this.lookUpEdit_Mach.Name = "lookUpEdit_Mach";
+            this.lookUpEdit_Mach.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lookUpEdit_Mach.Properties.Appearance.Options.UseFont = true;
+            this.lookUpEdit_Mach.Properties.AppearanceDropDown.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold);
+            this.lookUpEdit_Mach.Properties.AppearanceDropDown.Options.UseFont = true;
+            this.lookUpEdit_Mach.Properties.AutoHeight = false;
+            this.lookUpEdit_Mach.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.lookUpEdit_Mach.Properties.DropDownRows = 5;
+            this.lookUpEdit_Mach.Size = new System.Drawing.Size(217, 36);
+            this.lookUpEdit_Mach.TabIndex = 107;
+            this.lookUpEdit_Mach.EditValueChanged += new System.EventHandler(this.lookUpEdit_Mach_EditValueChanged);
+            // 
+            // labelControl1
+            // 
+            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl1.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl1.Location = new System.Drawing.Point(2, 2);
+            this.labelControl1.Name = "labelControl1";
+            this.labelControl1.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl1.Size = new System.Drawing.Size(78, 36);
+            this.labelControl1.TabIndex = 106;
+            this.labelControl1.Text = "설비";
+            // 
+            // panelControl36
+            // 
+            this.panelControl36.Controls.Add(this.dateEdit_ORDER_DT);
+            this.panelControl36.Controls.Add(this.simpleButton_Next);
+            this.panelControl36.Controls.Add(this.simpleButton_Pre);
+            this.panelControl36.Controls.Add(this.labelControl37);
+            this.panelControl36.Location = new System.Drawing.Point(5, 5);
+            this.panelControl36.Name = "panelControl36";
+            this.panelControl36.Size = new System.Drawing.Size(300, 40);
+            this.panelControl36.TabIndex = 104;
+            this.panelControl36.TabStop = true;
+            // 
+            // dateEdit_ORDER_DT
+            // 
+            this.dateEdit_ORDER_DT.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.dateEdit_ORDER_DT.EditValue = new System.DateTime(2020, 12, 30, 0, 0, 0, 0);
+            this.dateEdit_ORDER_DT.Location = new System.Drawing.Point(115, 2);
+            this.dateEdit_ORDER_DT.Name = "dateEdit_ORDER_DT";
+            this.dateEdit_ORDER_DT.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.dateEdit_ORDER_DT.Properties.Appearance.Options.UseFont = true;
+            this.dateEdit_ORDER_DT.Properties.Appearance.Options.UseTextOptions = true;
+            this.dateEdit_ORDER_DT.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.dateEdit_ORDER_DT.Properties.AppearanceFocused.Options.UseTextOptions = true;
+            this.dateEdit_ORDER_DT.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.dateEdit_ORDER_DT.Properties.AutoHeight = false;
+            this.dateEdit_ORDER_DT.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.dateEdit_ORDER_DT.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.dateEdit_ORDER_DT.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
+            this.dateEdit_ORDER_DT.Properties.Mask.UseMaskAsDisplayFormat = true;
+            this.dateEdit_ORDER_DT.Size = new System.Drawing.Size(148, 36);
+            this.dateEdit_ORDER_DT.TabIndex = 107;
+            // 
+            // simpleButton_Next
+            // 
+            this.simpleButton_Next.Dock = System.Windows.Forms.DockStyle.Right;
+            this.simpleButton_Next.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Next.Image")));
+            this.simpleButton_Next.Location = new System.Drawing.Point(263, 2);
+            this.simpleButton_Next.Name = "simpleButton_Next";
+            this.simpleButton_Next.Size = new System.Drawing.Size(35, 36);
+            this.simpleButton_Next.TabIndex = 106;
+            this.simpleButton_Next.Click += new System.EventHandler(this.simpleButton_Next_Click);
+            // 
+            // simpleButton_Pre
+            // 
+            this.simpleButton_Pre.Dock = System.Windows.Forms.DockStyle.Left;
+            this.simpleButton_Pre.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Pre.Image")));
+            this.simpleButton_Pre.Location = new System.Drawing.Point(80, 2);
+            this.simpleButton_Pre.Name = "simpleButton_Pre";
+            this.simpleButton_Pre.Size = new System.Drawing.Size(35, 36);
+            this.simpleButton_Pre.TabIndex = 105;
+            this.simpleButton_Pre.Click += new System.EventHandler(this.simpleButton_Pre_Click);
+            // 
+            // labelControl37
+            // 
+            this.labelControl37.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl37.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl37.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl37.Location = new System.Drawing.Point(2, 2);
+            this.labelControl37.Name = "labelControl37";
+            this.labelControl37.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl37.Size = new System.Drawing.Size(78, 36);
+            this.labelControl37.TabIndex = 0;
+            this.labelControl37.Text = "작업일자";
+            // 
+            // panelControl1
+            // 
+            this.panelControl1.Controls.Add(this.gridControl_Main);
+            this.panelControl1.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.panelControl1.Location = new System.Drawing.Point(0, 153);
+            this.panelControl1.Name = "panelControl1";
+            this.panelControl1.Size = new System.Drawing.Size(1008, 358);
+            this.panelControl1.TabIndex = 25;
+            // 
+            // gridControl_Main
+            // 
+            this.gridControl_Main.Dock = System.Windows.Forms.DockStyle.Fill;
+            gridLevelNode1.RelationName = "Level1";
+            this.gridControl_Main.LevelTree.Nodes.AddRange(new DevExpress.XtraGrid.GridLevelNode[] {
+            gridLevelNode1});
+            this.gridControl_Main.Location = new System.Drawing.Point(2, 2);
+            this.gridControl_Main.MainView = this.gridView_Main;
+            this.gridControl_Main.Name = "gridControl_Main";
+            this.gridControl_Main.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD,
+            this.repositoryItemButtonEdit_ITEM_SPEC,
+            this.repositoryItemLookUpEdit_ITEM_CD,
+            this.repositoryItemButtonEdit_Mokh,
+            this.repositoryItemButtonEdit_Detail,
+            this.repositoryItemComboBox1,
+            this.repositoryItemTextEdit_DataTime,
+            this.repositoryItemLookUpEdit_PROC,
+            this.repositoryItemLookUpEdit_WORKER,
+            this.repositoryItemDateEdit_END_DT,
+            this.repositoryItemTextEdit_RATIO,
+            this.repositoryItemLookUpEdit_MACH});
+            this.gridControl_Main.Size = new System.Drawing.Size(1004, 354);
+            this.gridControl_Main.TabIndex = 121;
+            this.gridControl_Main.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
+            this.gridView_Main});
+            // 
+            // gridView_Main
+            // 
+            this.gridView_Main.Appearance.FooterPanel.Options.UseFont = true;
+            this.gridView_Main.Appearance.HeaderPanel.Options.UseFont = true;
+            this.gridView_Main.Appearance.HeaderPanel.Options.UseTextOptions = true;
+            this.gridView_Main.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridView_Main.Appearance.Row.Options.UseFont = true;
+            this.gridView_Main.ColumnPanelRowHeight = 40;
+            this.gridView_Main.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
+            this.gridColumn1,
+            this.gridColumn2,
+            this.gridColumn3,
+            this.gridColumn4,
+            this.gridColumn5,
+            this.gridColumn6,
+            this.gridColumn7,
+            this.gridColumn8});
+            this.gridView_Main.FooterPanelHeight = 23;
+            this.gridView_Main.GridControl = this.gridControl_Main;
+            this.gridView_Main.Name = "gridView_Main";
+            this.gridView_Main.OptionsCustomization.AllowSort = false;
+            this.gridView_Main.OptionsNavigation.EnterMoveNextColumn = true;
+            this.gridView_Main.OptionsView.ColumnAutoWidth = false;
+            this.gridView_Main.OptionsView.ShowGroupPanel = false;
+            this.gridView_Main.RowHeight = 40;
+            this.gridView_Main.FocusedRowChanged += new DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventHandler(this.gridView_Main_FocusedRowChanged);
+            // 
+            // gridColumn1
+            // 
+            this.gridColumn1.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn1.AppearanceCell.Options.UseFont = true;
+            this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn1.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn1.Caption = "작업지시번호";
+            this.gridColumn1.FieldName = "order_no";
+            this.gridColumn1.Name = "gridColumn1";
+            this.gridColumn1.OptionsColumn.AllowEdit = false;
+            this.gridColumn1.OptionsColumn.AllowFocus = false;
+            this.gridColumn1.Visible = true;
+            this.gridColumn1.VisibleIndex = 0;
+            this.gridColumn1.Width = 132;
+            // 
+            // gridColumn2
+            // 
+            this.gridColumn2.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn2.AppearanceCell.Options.UseFont = true;
+            this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn2.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn2.AppearanceHeader.Options.UseTextOptions = true;
+            this.gridColumn2.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn2.Caption = "LOT";
+            this.gridColumn2.FieldName = "lot";
+            this.gridColumn2.Name = "gridColumn2";
+            this.gridColumn2.OptionsColumn.AllowEdit = false;
+            this.gridColumn2.OptionsColumn.AllowFocus = false;
+            this.gridColumn2.Visible = true;
+            this.gridColumn2.VisibleIndex = 1;
+            this.gridColumn2.Width = 72;
+            // 
+            // gridColumn3
+            // 
+            this.gridColumn3.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn3.AppearanceCell.Options.UseFont = true;
+            this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn3.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn3.Caption = "생산품목";
+            this.gridColumn3.FieldName = "resource_no";
+            this.gridColumn3.Name = "gridColumn3";
+            this.gridColumn3.OptionsColumn.AllowEdit = false;
+            this.gridColumn3.OptionsColumn.AllowFocus = false;
+            this.gridColumn3.Visible = true;
+            this.gridColumn3.VisibleIndex = 2;
+            this.gridColumn3.Width = 156;
+            // 
+            // gridColumn4
+            // 
+            this.gridColumn4.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn4.AppearanceCell.Options.UseFont = true;
+            this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn4.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn4.Caption = "생산품목명";
+            this.gridColumn4.FieldName = "resource_name";
+            this.gridColumn4.Name = "gridColumn4";
+            this.gridColumn4.OptionsColumn.AllowEdit = false;
+            this.gridColumn4.OptionsColumn.AllowFocus = false;
+            this.gridColumn4.Visible = true;
+            this.gridColumn4.VisibleIndex = 3;
+            this.gridColumn4.Width = 299;
+            // 
+            // gridColumn5
+            // 
+            this.gridColumn5.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn5.AppearanceCell.Options.UseFont = true;
+            this.gridColumn5.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn5.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn5.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn5.Caption = "완료예정일";
+            this.gridColumn5.FieldName = "date_sched_curr";
+            this.gridColumn5.Name = "gridColumn5";
+            this.gridColumn5.OptionsColumn.AllowEdit = false;
+            this.gridColumn5.OptionsColumn.AllowFocus = false;
+            this.gridColumn5.Visible = true;
+            this.gridColumn5.VisibleIndex = 4;
+            this.gridColumn5.Width = 117;
+            // 
+            // gridColumn6
+            // 
+            this.gridColumn6.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn6.AppearanceCell.Options.UseFont = true;
+            this.gridColumn6.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn6.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn6.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn6.Caption = "작지상태";
+            this.gridColumn6.FieldName = "demand_status_desc";
+            this.gridColumn6.Name = "gridColumn6";
+            this.gridColumn6.OptionsColumn.AllowEdit = false;
+            this.gridColumn6.OptionsColumn.AllowFocus = false;
+            this.gridColumn6.Visible = true;
+            this.gridColumn6.VisibleIndex = 5;
+            this.gridColumn6.Width = 77;
+            // 
+            // gridColumn7
+            // 
+            this.gridColumn7.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn7.AppearanceCell.Options.UseFont = true;
+            this.gridColumn7.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn7.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn7.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn7.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn7.AppearanceHeader.Options.UseTextOptions = true;
+            this.gridColumn7.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn7.Caption = "공정";
+            this.gridColumn7.FieldName = "operation";
+            this.gridColumn7.Name = "gridColumn7";
+            this.gridColumn7.OptionsColumn.AllowEdit = false;
+            this.gridColumn7.OptionsColumn.AllowFocus = false;
+            this.gridColumn7.Visible = true;
+            this.gridColumn7.VisibleIndex = 6;
+            this.gridColumn7.Width = 63;
+            // 
+            // gridColumn8
+            // 
+            this.gridColumn8.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 10F, System.Drawing.FontStyle.Bold);
+            this.gridColumn8.AppearanceCell.Options.UseFont = true;
+            this.gridColumn8.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn8.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn8.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 13F, System.Drawing.FontStyle.Bold);
+            this.gridColumn8.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn8.AppearanceHeader.Options.UseTextOptions = true;
+            this.gridColumn8.AppearanceHeader.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn8.Caption = "작업장";
+            this.gridColumn8.FieldName = "initial_name";
+            this.gridColumn8.Name = "gridColumn8";
+            this.gridColumn8.OptionsColumn.AllowEdit = false;
+            this.gridColumn8.OptionsColumn.AllowFocus = false;
+            this.gridColumn8.Visible = true;
+            this.gridColumn8.VisibleIndex = 7;
+            this.gridColumn8.Width = 66;
+            // 
+            // repositoryItemLookUpEdit_ORDER_UNIT_CD
+            // 
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD.AutoHeight = false;
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD.Name = "repositoryItemLookUpEdit_ORDER_UNIT_CD";
+            // 
+            // repositoryItemButtonEdit_ITEM_SPEC
+            // 
+            this.repositoryItemButtonEdit_ITEM_SPEC.AutoHeight = false;
+            this.repositoryItemButtonEdit_ITEM_SPEC.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "상세", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
+            this.repositoryItemButtonEdit_ITEM_SPEC.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
+            this.repositoryItemButtonEdit_ITEM_SPEC.Name = "repositoryItemButtonEdit_ITEM_SPEC";
+            // 
+            // repositoryItemLookUpEdit_ITEM_CD
+            // 
+            this.repositoryItemLookUpEdit_ITEM_CD.AutoHeight = false;
+            this.repositoryItemLookUpEdit_ITEM_CD.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_ITEM_CD.Name = "repositoryItemLookUpEdit_ITEM_CD";
+            // 
+            // repositoryItemButtonEdit_Mokh
+            // 
+            this.repositoryItemButtonEdit_Mokh.AutoHeight = false;
+            this.repositoryItemButtonEdit_Mokh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton()});
+            this.repositoryItemButtonEdit_Mokh.Name = "repositoryItemButtonEdit_Mokh";
+            // 
+            // repositoryItemButtonEdit_Detail
+            // 
+            this.repositoryItemButtonEdit_Detail.AutoHeight = false;
+            this.repositoryItemButtonEdit_Detail.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Search)});
+            this.repositoryItemButtonEdit_Detail.Name = "repositoryItemButtonEdit_Detail";
+            // 
+            // repositoryItemComboBox1
+            // 
+            this.repositoryItemComboBox1.AutoHeight = false;
+            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemComboBox1.Items.AddRange(new object[] {
+            "증가",
+            "감소"});
+            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
+            // 
+            // repositoryItemTextEdit_DataTime
+            // 
+            this.repositoryItemTextEdit_DataTime.AutoHeight = false;
+            this.repositoryItemTextEdit_DataTime.Mask.EditMask = "yy-MM-dd HH:mm:ss";
+            this.repositoryItemTextEdit_DataTime.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
+            this.repositoryItemTextEdit_DataTime.Name = "repositoryItemTextEdit_DataTime";
+            // 
+            // repositoryItemLookUpEdit_PROC
+            // 
+            this.repositoryItemLookUpEdit_PROC.AutoHeight = false;
+            this.repositoryItemLookUpEdit_PROC.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_PROC.Name = "repositoryItemLookUpEdit_PROC";
+            // 
+            // repositoryItemLookUpEdit_WORKER
+            // 
+            this.repositoryItemLookUpEdit_WORKER.AutoHeight = false;
+            this.repositoryItemLookUpEdit_WORKER.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_WORKER.Name = "repositoryItemLookUpEdit_WORKER";
+            // 
+            // repositoryItemDateEdit_END_DT
+            // 
+            this.repositoryItemDateEdit_END_DT.AutoHeight = false;
+            this.repositoryItemDateEdit_END_DT.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit_END_DT.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit_END_DT.Name = "repositoryItemDateEdit_END_DT";
+            // 
+            // repositoryItemTextEdit_RATIO
+            // 
+            this.repositoryItemTextEdit_RATIO.AutoHeight = false;
+            this.repositoryItemTextEdit_RATIO.Mask.EditMask = "p";
+            this.repositoryItemTextEdit_RATIO.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
+            this.repositoryItemTextEdit_RATIO.Mask.UseMaskAsDisplayFormat = true;
+            this.repositoryItemTextEdit_RATIO.Name = "repositoryItemTextEdit_RATIO";
+            // 
+            // repositoryItemLookUpEdit_MACH
+            // 
+            this.repositoryItemLookUpEdit_MACH.AutoHeight = false;
+            this.repositoryItemLookUpEdit_MACH.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_MACH.Name = "repositoryItemLookUpEdit_MACH";
+            // 
+            // UcOrderList
+            // 
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
+            this.ClientSize = new System.Drawing.Size(1008, 511);
+            this.Controls.Add(this.panelControl1);
+            this.Controls.Add(this.panelControl_Manu);
+            this.Name = "UcOrderList";
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Manu)).EndInit();
+            this.panelControl_Manu.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.toggleSwitch_END.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
+            this.panelControl4.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partnm.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
+            this.panelControl5.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partno.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
+            this.panelControl2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.lookUpEdit_Mach.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl36)).EndInit();
+            this.panelControl36.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
+            this.panelControl1.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Main)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_Main)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ORDER_UNIT_CD)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_ITEM_SPEC)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ITEM_CD)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Mokh)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Detail)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_DataTime)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_PROC)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_WORKER)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_RATIO)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_MACH)).EndInit();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private DevExpress.XtraEditors.PanelControl panelControl_Manu;
+        private DevExpress.XtraEditors.PanelControl panelControl1;
+        private DevExpress.XtraEditors.PanelControl panelControl36;
+        private DevExpress.XtraEditors.DateEdit dateEdit_ORDER_DT;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Next;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Pre;
+        private DevExpress.XtraEditors.LabelControl labelControl37;
+        private DevExpress.XtraEditors.PanelControl panelControl2;
+        private DevExpress.XtraEditors.LookUpEdit lookUpEdit_Mach;
+        private DevExpress.XtraEditors.LabelControl labelControl1;
+        private DevExpress.XtraGrid.GridControl gridControl_Main;
+        private DevExpress.XtraGrid.Views.Grid.GridView gridView_Main;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_PROC;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_MACH;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_ORDER_UNIT_CD;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit_ITEM_SPEC;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_ITEM_CD;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit_Mokh;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit_Detail;
+        private DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBox1;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit_DataTime;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_WORKER;
+        private DevExpress.XtraEditors.Repository.RepositoryItemDateEdit repositoryItemDateEdit_END_DT;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit_RATIO;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Work;
+        private DevExpress.XtraEditors.PanelControl panelControl4;
+        private DevExpress.XtraEditors.TextEdit txt_partnm;
+        private DevExpress.XtraEditors.LabelControl lable2;
+        private DevExpress.XtraEditors.PanelControl panelControl5;
+        private DevExpress.XtraEditors.TextEdit txt_partno;
+        private DevExpress.XtraEditors.LabelControl labelControl4;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_ReFresh;
+        private DevExpress.XtraEditors.ToggleSwitch toggleSwitch_END;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn1;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn2;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn3;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn4;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn5;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn6;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn7;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn8;
+    }
+}(No newline at end of file)
 
KHSCALE_TP/UcOrderList.cs (added)
+++ KHSCALE_TP/UcOrderList.cs
@@ -0,0 +1,180 @@
+using ClientLib;
+using ClientLib.CommonService2;
+using DevExpress.XtraEditors;
+using PublicLib;
+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;
+
+namespace KHSCALE_TP
+{
+    public partial class UcOrderList : Form
+    {
+
+        U3Database u3Database = new U3Database();
+        U3Config u3Config = new U3Config();
+
+        public string orderno;
+        public string lot;
+
+        public UcOrderList()
+        {
+            InitializeComponent();
+            u3Database.SetSqlServer();
+
+            DataView grpMach = new DataView(GetMachTable());
+            UtilClass.SetLookup(this.lookUpEdit_Mach, grpMach, "MACH_CD", "MACH_NM", true, true);
+
+
+            dateEdit_ORDER_DT.DateTime = DateTime.Now;
+            searchProc();
+        }
+
+        public void searchProc()
+        {
+            try
+            {
+                this.Cursor = Cursors.WaitCursor;
+
+                gridControl_Main.DataSource = null;
+
+                string sDate = this.dateEdit_ORDER_DT.DateTime.ToString("yyyy-MM-dd");
+
+
+                DataTable resultData = null;
+
+
+                resultData = u3Database.OpenSQL("select a.order_no, a.lot, a.resource_no, a.resource_name, a.date_sched_curr, a.demand_status_desc, a.operation, a.initial_name from T_KH_SAL_ORDER a where a.cost_center = '10' and a.date_sched_curr = '" + sDate + "' group by a.order_no, a.lot, a.resource_no, a.resource_name, a.date_sched_curr, a.demand_status_desc, a.operation, a.initial_name");
+
+                gridControl_Main.DataSource = resultData;
+
+                //FilterSub(toggleSwitch_END.IsOn);
+
+                this.Cursor = Cursors.Arrow;
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                MessageBox.Show(ex.Message);
+            }
+        }
+
+        private DataTable GetMachTable()
+        {
+            try
+            {
+                this.Cursor = Cursors.WaitCursor;
+                return u3Database.OpenSQL("select 'N' as SEL_FIELD, a.MACH_CD, a.MACH_NO, a.MACH_NM from dbo.T_STD_MACH a where a.COMP_CD = '" + ConstClass._COMP_CD + "' and isnull(a.DEL_YN,'N') = 'N' order by a.MACH_CD");
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                XtraMessageBox.Show(ex.Message);
+            }
+            return null;
+        }
+
+        private void simpleButton_Pre_Click(object sender, EventArgs e)
+        {
+            try
+            {
+                dateEdit_ORDER_DT.DateTime = dateEdit_ORDER_DT.DateTime.AddDays(-1);
+                searchProc();
+            }
+            catch (Exception ex)
+            {
+
+            }
+        }
+
+        private void simpleButton_Next_Click(object sender, EventArgs e)
+        {
+            try
+            {
+                dateEdit_ORDER_DT.DateTime = dateEdit_ORDER_DT.DateTime.AddDays(1);
+                searchProc();
+            }
+            catch (Exception ex)
+            {
+
+            }
+        }
+
+        private void lookUpEdit_Mach_EditValueChanged(object sender, EventArgs e)
+        {
+            searchProc();
+        }
+
+        private void simpleButton_Work_Click(object sender, EventArgs e)
+        {
+            DataRow row = gridView_Main.GetFocusedDataRow();
+
+            if (row != null)
+            {
+                orderno = UtilClass.toStr(row["ORDER_NO"]);
+                lot = UtilClass.toStr(row["LOT"]);
+                this.DialogResult = DialogResult.Yes;
+                this.Close();
+            }
+
+        }
+
+        private void gridView_Main_FocusedRowChanged(object sender, DevExpress.XtraGrid.Views.Base.FocusedRowChangedEventArgs e)
+        {
+
+            DataRow row = gridView_Main.GetFocusedDataRow();
+
+            if (row == null)
+            {
+                return;
+            }
+            try
+            {
+                //txt_partno.Text = row["resource_no"].ToString();
+                //txt_partnm.Text = row["resource_name"].ToString();
+            }
+            catch (Exception ex)
+            {
+
+            }
+        }
+
+        private void simpleButton_ReFresh_Click(object sender, EventArgs e)
+        {
+            searchProc();
+        }
+
+        private void toggleSwitch_END_Toggled(object sender, EventArgs e)
+        {
+            FilterSub(toggleSwitch_END.IsOn);
+        }
+
+        private void FilterSub(bool toggle)
+        {
+
+            try
+            {
+                if (toggle)
+                {
+                    gridView_Main.ActiveFilterString = "";
+                }
+                else
+                {
+                    gridView_Main.ActiveFilterString = "[demand_status_desc] != '완료'";
+                }
+
+
+            }
+            catch (Exception ex)
+            {
+
+            }
+        }
+    }
+}
 
KHSCALE_TP/UcOrderList.resx (added)
+++ KHSCALE_TP/UcOrderList.resx
@@ -0,0 +1,276 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+  <data name="simpleButton_ReFresh.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+</value>
+  </data>
+  <data name="simpleButton_Work.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+        /wBqkiSvivDUAgAAAABJRU5ErkJggg==
+</value>
+  </data>
+  <data name="simpleButton_Next.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+</value>
+  </data>
+  <data name="simpleButton_Pre.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+        AAAAAElFTkSuQmCC
+</value>
+  </data>
+</root>(No newline at end of file)
 
KHSCALE_TP/UcWork.Designer.cs (added)
+++ KHSCALE_TP/UcWork.Designer.cs
@@ -0,0 +1,2391 @@
+namespace KHSCALE_TP
+{
+    partial class UcWork
+    {
+        /// <summary>
+        /// Required designer variable.
+        /// </summary>
+        private System.ComponentModel.IContainer components = null;
+
+        /// <summary>
+        /// Clean up any resources being used.
+        /// </summary>
+        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+        protected override void Dispose(bool disposing)
+        {
+            if (disposing && (components != null))
+            {
+                components.Dispose();
+            }
+            base.Dispose(disposing);
+        }
+
+        #region Windows Form Designer generated code
+
+        /// <summary>
+        /// Required method for Designer support - do not modify
+        /// the contents of this method with the code editor.
+        /// </summary>
+        private void InitializeComponent()
+        {
+            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UcWork));
+            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject1 = new DevExpress.Utils.SerializableAppearanceObject();
+            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject2 = new DevExpress.Utils.SerializableAppearanceObject();
+            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject3 = new DevExpress.Utils.SerializableAppearanceObject();
+            DevExpress.Utils.SerializableAppearanceObject serializableAppearanceObject4 = new DevExpress.Utils.SerializableAppearanceObject();
+            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
+            this.panelControl_Manu = new DevExpress.XtraEditors.PanelControl();
+            this.panelControl7 = new DevExpress.XtraEditors.PanelControl();
+            this.barcode = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl6 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_state = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl2 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_qty = new DevExpress.XtraEditors.TextEdit();
+            this.lable5 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_partnm = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
+            this.simpleButton_Search = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl3 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_partno = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
+            this.simpleButton_ReFresh = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl4 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_lotno = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
+            this.panelControl5 = new DevExpress.XtraEditors.PanelControl();
+            this.txt_workno = new DevExpress.XtraEditors.TextEdit();
+            this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
+            this.simpleButton_Work = new DevExpress.XtraEditors.SimpleButton();
+            this.panelControl36 = new DevExpress.XtraEditors.PanelControl();
+            this.dateEdit_ORDER_DT = new DevExpress.XtraEditors.DateEdit();
+            this.simpleButton_Next = new DevExpress.XtraEditors.SimpleButton();
+            this.simpleButton_Pre = new DevExpress.XtraEditors.SimpleButton();
+            this.labelControl37 = new DevExpress.XtraEditors.LabelControl();
+            this.tabControl1 = new System.Windows.Forms.TabControl();
+            this.tabPage1 = new System.Windows.Forms.TabPage();
+            this.splitContainer2 = new System.Windows.Forms.SplitContainer();
+            this.gridControl_P = new DevExpress.XtraGrid.GridControl();
+            this.gridView_P = new DevExpress.XtraGrid.Views.Grid.GridView();
+            this.gridColumn9 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn16 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn21 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn28 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn29 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn30 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn31 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn32 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn33 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn34 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn35 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn36 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn40 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit_ITEM_SPEC = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemLookUpEdit_ITEM_CD = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit_Mokh = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemButtonEdit_Detail = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemComboBox1 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
+            this.repositoryItemTextEdit_DataTime = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit_PROC = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemLookUpEdit_WORKER = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemDateEdit_END_DT = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
+            this.repositoryItemTextEdit_RATIO = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit_MACH = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.gridControl_B = new DevExpress.XtraGrid.GridControl();
+            this.gridView_B = new DevExpress.XtraGrid.Views.Grid.GridView();
+            this.gridColumn42 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn43 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn44 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn45 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn46 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn47 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn48 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn49 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn50 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn51 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.repositoryItemLookUpEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemLookUpEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemButtonEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemComboBox2 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
+            this.repositoryItemTextEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemLookUpEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemDateEdit1 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
+            this.repositoryItemTextEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.tabPage2 = new System.Windows.Forms.TabPage();
+            this.gridControl_Main = new DevExpress.XtraGrid.GridControl();
+            this.gridView_Main = new DevExpress.XtraGrid.Views.Grid.GridView();
+            this.gridColumn53 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn54 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn55 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn56 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn60 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn57 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn58 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn59 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.repositoryItemLookUpEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemLookUpEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemButtonEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemComboBox3 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
+            this.repositoryItemTextEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemLookUpEdit9 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemDateEdit2 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
+            this.repositoryItemTextEdit4 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit10 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.tabPage3 = new System.Windows.Forms.TabPage();
+            this.gridControl_note = new DevExpress.XtraGrid.GridControl();
+            this.gridView_note = new DevExpress.XtraGrid.Views.Grid.GridView();
+            this.gridColumn61 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn62 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn63 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.repositoryItemLookUpEdit11 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit7 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemLookUpEdit12 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemButtonEdit8 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemButtonEdit9 = new DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit();
+            this.repositoryItemComboBox4 = new DevExpress.XtraEditors.Repository.RepositoryItemComboBox();
+            this.repositoryItemTextEdit5 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit13 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemLookUpEdit14 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.repositoryItemDateEdit3 = new DevExpress.XtraEditors.Repository.RepositoryItemDateEdit();
+            this.repositoryItemTextEdit6 = new DevExpress.XtraEditors.Repository.RepositoryItemTextEdit();
+            this.repositoryItemLookUpEdit15 = new DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit();
+            this.gridColumn27 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn4 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn5 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn1 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn10 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn11 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn8 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn7 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn14 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn13 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn2 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn41 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn39 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn38 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn37 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn26 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn25 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn24 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn23 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn22 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn20 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn19 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn18 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn17 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn15 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn12 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn6 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn3 = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.end = new DevExpress.XtraGrid.Columns.GridColumn();
+            this.gridColumn52 = new DevExpress.XtraGrid.Columns.GridColumn();
+            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
+            this.splitContainer1.Panel1.SuspendLayout();
+            this.splitContainer1.Panel2.SuspendLayout();
+            this.splitContainer1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Manu)).BeginInit();
+            this.panelControl_Manu.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).BeginInit();
+            this.panelControl7.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.barcode.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).BeginInit();
+            this.panelControl6.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_state.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).BeginInit();
+            this.panelControl2.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_qty.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
+            this.panelControl1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partnm.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).BeginInit();
+            this.panelControl3.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partno.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).BeginInit();
+            this.panelControl4.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_lotno.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).BeginInit();
+            this.panelControl5.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.txt_workno.Properties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl36)).BeginInit();
+            this.panelControl36.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties)).BeginInit();
+            this.tabControl1.SuspendLayout();
+            this.tabPage1.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
+            this.splitContainer2.Panel1.SuspendLayout();
+            this.splitContainer2.Panel2.SuspendLayout();
+            this.splitContainer2.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_P)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_P)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ORDER_UNIT_CD)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_ITEM_SPEC)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ITEM_CD)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Mokh)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Detail)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_DataTime)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_PROC)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_WORKER)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_RATIO)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_MACH)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_B)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_B)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit3)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit4)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit5)).BeginInit();
+            this.tabPage2.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Main)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_Main)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit6)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit7)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit6)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit8)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit9)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit10)).BeginInit();
+            this.tabPage3.SuspendLayout();
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_note)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_note)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit11)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit7)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit12)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit8)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit9)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit13)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit14)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit15)).BeginInit();
+            this.SuspendLayout();
+            // 
+            // splitContainer1
+            // 
+            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.splitContainer1.IsSplitterFixed = true;
+            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
+            this.splitContainer1.Margin = new System.Windows.Forms.Padding(0);
+            this.splitContainer1.Name = "splitContainer1";
+            this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
+            // 
+            // splitContainer1.Panel1
+            // 
+            this.splitContainer1.Panel1.Controls.Add(this.panelControl_Manu);
+            // 
+            // splitContainer1.Panel2
+            // 
+            this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
+            this.splitContainer1.Size = new System.Drawing.Size(1024, 550);
+            this.splitContainer1.SplitterDistance = 197;
+            this.splitContainer1.TabIndex = 0;
+            // 
+            // panelControl_Manu
+            // 
+            this.panelControl_Manu.Controls.Add(this.panelControl7);
+            this.panelControl_Manu.Controls.Add(this.panelControl6);
+            this.panelControl_Manu.Controls.Add(this.panelControl2);
+            this.panelControl_Manu.Controls.Add(this.panelControl1);
+            this.panelControl_Manu.Controls.Add(this.simpleButton_Search);
+            this.panelControl_Manu.Controls.Add(this.panelControl3);
+            this.panelControl_Manu.Controls.Add(this.simpleButton_ReFresh);
+            this.panelControl_Manu.Controls.Add(this.panelControl4);
+            this.panelControl_Manu.Controls.Add(this.panelControl5);
+            this.panelControl_Manu.Controls.Add(this.simpleButton_Work);
+            this.panelControl_Manu.Controls.Add(this.panelControl36);
+            this.panelControl_Manu.Dock = System.Windows.Forms.DockStyle.Top;
+            this.panelControl_Manu.Location = new System.Drawing.Point(0, 0);
+            this.panelControl_Manu.Name = "panelControl_Manu";
+            this.panelControl_Manu.Size = new System.Drawing.Size(1024, 197);
+            this.panelControl_Manu.TabIndex = 25;
+            // 
+            // panelControl7
+            // 
+            this.panelControl7.Controls.Add(this.barcode);
+            this.panelControl7.Controls.Add(this.labelControl5);
+            this.panelControl7.Location = new System.Drawing.Point(311, 5);
+            this.panelControl7.Name = "panelControl7";
+            this.panelControl7.Size = new System.Drawing.Size(301, 40);
+            this.panelControl7.TabIndex = 115;
+            this.panelControl7.TabStop = true;
+            // 
+            // barcode
+            // 
+            this.barcode.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.barcode.EditValue = "";
+            this.barcode.ImeMode = System.Windows.Forms.ImeMode.NoControl;
+            this.barcode.Location = new System.Drawing.Point(80, 2);
+            this.barcode.Name = "barcode";
+            this.barcode.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.barcode.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.barcode.Properties.Appearance.Options.UseBackColor = true;
+            this.barcode.Properties.Appearance.Options.UseFont = true;
+            this.barcode.Properties.AutoHeight = false;
+            this.barcode.Size = new System.Drawing.Size(219, 36);
+            this.barcode.TabIndex = 1;
+            this.barcode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.barcode_KeyUp);
+            // 
+            // labelControl5
+            // 
+            this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl5.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl5.Location = new System.Drawing.Point(2, 2);
+            this.labelControl5.Name = "labelControl5";
+            this.labelControl5.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl5.Size = new System.Drawing.Size(78, 36);
+            this.labelControl5.TabIndex = 0;
+            this.labelControl5.Text = "바코드";
+            // 
+            // panelControl6
+            // 
+            this.panelControl6.Controls.Add(this.txt_state);
+            this.panelControl6.Controls.Add(this.labelControl6);
+            this.panelControl6.Location = new System.Drawing.Point(311, 149);
+            this.panelControl6.Name = "panelControl6";
+            this.panelControl6.Size = new System.Drawing.Size(301, 40);
+            this.panelControl6.TabIndex = 114;
+            this.panelControl6.TabStop = true;
+            // 
+            // txt_state
+            // 
+            this.txt_state.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_state.Enabled = false;
+            this.txt_state.Location = new System.Drawing.Point(80, 2);
+            this.txt_state.Name = "txt_state";
+            this.txt_state.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_state.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_state.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_state.Properties.Appearance.Options.UseFont = true;
+            this.txt_state.Properties.AutoHeight = false;
+            this.txt_state.Properties.ReadOnly = true;
+            this.txt_state.Size = new System.Drawing.Size(219, 36);
+            this.txt_state.TabIndex = 1;
+            // 
+            // labelControl6
+            // 
+            this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl6.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl6.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl6.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl6.Location = new System.Drawing.Point(2, 2);
+            this.labelControl6.Name = "labelControl6";
+            this.labelControl6.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl6.Size = new System.Drawing.Size(78, 36);
+            this.labelControl6.TabIndex = 0;
+            this.labelControl6.Text = "작지 상태";
+            // 
+            // panelControl2
+            // 
+            this.panelControl2.Controls.Add(this.txt_qty);
+            this.panelControl2.Controls.Add(this.lable5);
+            this.panelControl2.Location = new System.Drawing.Point(5, 149);
+            this.panelControl2.Name = "panelControl2";
+            this.panelControl2.Size = new System.Drawing.Size(302, 40);
+            this.panelControl2.TabIndex = 114;
+            this.panelControl2.TabStop = true;
+            // 
+            // txt_qty
+            // 
+            this.txt_qty.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_qty.Enabled = false;
+            this.txt_qty.Location = new System.Drawing.Point(80, 2);
+            this.txt_qty.Name = "txt_qty";
+            this.txt_qty.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_qty.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_qty.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_qty.Properties.Appearance.Options.UseFont = true;
+            this.txt_qty.Properties.AutoHeight = false;
+            this.txt_qty.Properties.ReadOnly = true;
+            this.txt_qty.Size = new System.Drawing.Size(220, 36);
+            this.txt_qty.TabIndex = 1;
+            // 
+            // lable5
+            // 
+            this.lable5.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.lable5.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.lable5.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.lable5.Dock = System.Windows.Forms.DockStyle.Left;
+            this.lable5.Location = new System.Drawing.Point(2, 2);
+            this.lable5.Name = "lable5";
+            this.lable5.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.lable5.Size = new System.Drawing.Size(78, 36);
+            this.lable5.TabIndex = 0;
+            this.lable5.Text = "수량(단위)";
+            // 
+            // panelControl1
+            // 
+            this.panelControl1.Controls.Add(this.txt_partnm);
+            this.panelControl1.Controls.Add(this.labelControl1);
+            this.panelControl1.Location = new System.Drawing.Point(311, 103);
+            this.panelControl1.Name = "panelControl1";
+            this.panelControl1.Size = new System.Drawing.Size(301, 40);
+            this.panelControl1.TabIndex = 113;
+            this.panelControl1.TabStop = true;
+            // 
+            // txt_partnm
+            // 
+            this.txt_partnm.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_partnm.Enabled = false;
+            this.txt_partnm.Location = new System.Drawing.Point(80, 2);
+            this.txt_partnm.Name = "txt_partnm";
+            this.txt_partnm.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_partnm.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_partnm.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_partnm.Properties.Appearance.Options.UseFont = true;
+            this.txt_partnm.Properties.AutoHeight = false;
+            this.txt_partnm.Properties.ReadOnly = true;
+            this.txt_partnm.Size = new System.Drawing.Size(219, 36);
+            this.txt_partnm.TabIndex = 1;
+            // 
+            // labelControl1
+            // 
+            this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl1.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl1.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl1.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl1.Location = new System.Drawing.Point(2, 2);
+            this.labelControl1.Name = "labelControl1";
+            this.labelControl1.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl1.Size = new System.Drawing.Size(78, 36);
+            this.labelControl1.TabIndex = 0;
+            this.labelControl1.Text = "품목명";
+            // 
+            // simpleButton_Search
+            // 
+            this.simpleButton_Search.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_Search.Appearance.Options.UseFont = true;
+            this.simpleButton_Search.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Search.Image")));
+            this.simpleButton_Search.Location = new System.Drawing.Point(618, 7);
+            this.simpleButton_Search.Name = "simpleButton_Search";
+            this.simpleButton_Search.Size = new System.Drawing.Size(140, 155);
+            this.simpleButton_Search.TabIndex = 112;
+            this.simpleButton_Search.Text = "작업지시 \r\n검색";
+            this.simpleButton_Search.Click += new System.EventHandler(this.simpleButton_Search_Click);
+            // 
+            // panelControl3
+            // 
+            this.panelControl3.Controls.Add(this.txt_partno);
+            this.panelControl3.Controls.Add(this.labelControl2);
+            this.panelControl3.Location = new System.Drawing.Point(5, 103);
+            this.panelControl3.Name = "panelControl3";
+            this.panelControl3.Size = new System.Drawing.Size(302, 40);
+            this.panelControl3.TabIndex = 111;
+            this.panelControl3.TabStop = true;
+            // 
+            // txt_partno
+            // 
+            this.txt_partno.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_partno.Enabled = false;
+            this.txt_partno.Location = new System.Drawing.Point(80, 2);
+            this.txt_partno.Name = "txt_partno";
+            this.txt_partno.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_partno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_partno.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_partno.Properties.Appearance.Options.UseFont = true;
+            this.txt_partno.Properties.AutoHeight = false;
+            this.txt_partno.Properties.ReadOnly = true;
+            this.txt_partno.Size = new System.Drawing.Size(220, 36);
+            this.txt_partno.TabIndex = 1;
+            // 
+            // labelControl2
+            // 
+            this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl2.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl2.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl2.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl2.Location = new System.Drawing.Point(2, 2);
+            this.labelControl2.Name = "labelControl2";
+            this.labelControl2.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl2.Size = new System.Drawing.Size(78, 36);
+            this.labelControl2.TabIndex = 0;
+            this.labelControl2.Text = "생산 품번";
+            // 
+            // simpleButton_ReFresh
+            // 
+            this.simpleButton_ReFresh.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_ReFresh.Appearance.Options.UseFont = true;
+            this.simpleButton_ReFresh.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_ReFresh.Image")));
+            this.simpleButton_ReFresh.Location = new System.Drawing.Point(764, 7);
+            this.simpleButton_ReFresh.Name = "simpleButton_ReFresh";
+            this.simpleButton_ReFresh.Size = new System.Drawing.Size(106, 155);
+            this.simpleButton_ReFresh.TabIndex = 110;
+            this.simpleButton_ReFresh.Text = "새로\r\n고침";
+            this.simpleButton_ReFresh.Click += new System.EventHandler(this.simpleButton_ReFresh_Click);
+            // 
+            // panelControl4
+            // 
+            this.panelControl4.Controls.Add(this.txt_lotno);
+            this.panelControl4.Controls.Add(this.labelControl3);
+            this.panelControl4.Location = new System.Drawing.Point(311, 56);
+            this.panelControl4.Name = "panelControl4";
+            this.panelControl4.Size = new System.Drawing.Size(301, 40);
+            this.panelControl4.TabIndex = 109;
+            this.panelControl4.TabStop = true;
+            // 
+            // txt_lotno
+            // 
+            this.txt_lotno.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_lotno.Enabled = false;
+            this.txt_lotno.Location = new System.Drawing.Point(80, 2);
+            this.txt_lotno.Name = "txt_lotno";
+            this.txt_lotno.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_lotno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_lotno.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_lotno.Properties.Appearance.Options.UseFont = true;
+            this.txt_lotno.Properties.AutoHeight = false;
+            this.txt_lotno.Properties.ReadOnly = true;
+            this.txt_lotno.Size = new System.Drawing.Size(219, 36);
+            this.txt_lotno.TabIndex = 1;
+            // 
+            // labelControl3
+            // 
+            this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl3.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl3.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl3.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl3.Location = new System.Drawing.Point(2, 2);
+            this.labelControl3.Name = "labelControl3";
+            this.labelControl3.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl3.Size = new System.Drawing.Size(78, 36);
+            this.labelControl3.TabIndex = 0;
+            this.labelControl3.Text = "LOT";
+            // 
+            // panelControl5
+            // 
+            this.panelControl5.Controls.Add(this.txt_workno);
+            this.panelControl5.Controls.Add(this.labelControl4);
+            this.panelControl5.Location = new System.Drawing.Point(5, 56);
+            this.panelControl5.Name = "panelControl5";
+            this.panelControl5.Size = new System.Drawing.Size(302, 40);
+            this.panelControl5.TabIndex = 108;
+            this.panelControl5.TabStop = true;
+            // 
+            // txt_workno
+            // 
+            this.txt_workno.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.txt_workno.Enabled = false;
+            this.txt_workno.Location = new System.Drawing.Point(80, 2);
+            this.txt_workno.Name = "txt_workno";
+            this.txt_workno.Properties.Appearance.BackColor = System.Drawing.Color.White;
+            this.txt_workno.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.txt_workno.Properties.Appearance.Options.UseBackColor = true;
+            this.txt_workno.Properties.Appearance.Options.UseFont = true;
+            this.txt_workno.Properties.AutoHeight = false;
+            this.txt_workno.Properties.ReadOnly = true;
+            this.txt_workno.Size = new System.Drawing.Size(220, 36);
+            this.txt_workno.TabIndex = 1;
+            // 
+            // labelControl4
+            // 
+            this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl4.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl4.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl4.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl4.Location = new System.Drawing.Point(2, 2);
+            this.labelControl4.Name = "labelControl4";
+            this.labelControl4.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl4.Size = new System.Drawing.Size(78, 36);
+            this.labelControl4.TabIndex = 0;
+            this.labelControl4.Text = "생산 오더";
+            // 
+            // simpleButton_Work
+            // 
+            this.simpleButton_Work.Appearance.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.simpleButton_Work.Appearance.Options.UseFont = true;
+            this.simpleButton_Work.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Work.Image")));
+            this.simpleButton_Work.Location = new System.Drawing.Point(876, 7);
+            this.simpleButton_Work.Name = "simpleButton_Work";
+            this.simpleButton_Work.Size = new System.Drawing.Size(143, 155);
+            this.simpleButton_Work.TabIndex = 107;
+            this.simpleButton_Work.Text = "작업저장";
+            this.simpleButton_Work.Click += new System.EventHandler(this.simpleButton_Work_Click);
+            // 
+            // panelControl36
+            // 
+            this.panelControl36.Controls.Add(this.dateEdit_ORDER_DT);
+            this.panelControl36.Controls.Add(this.simpleButton_Next);
+            this.panelControl36.Controls.Add(this.simpleButton_Pre);
+            this.panelControl36.Controls.Add(this.labelControl37);
+            this.panelControl36.Location = new System.Drawing.Point(5, 5);
+            this.panelControl36.Name = "panelControl36";
+            this.panelControl36.Size = new System.Drawing.Size(300, 40);
+            this.panelControl36.TabIndex = 104;
+            this.panelControl36.TabStop = true;
+            // 
+            // dateEdit_ORDER_DT
+            // 
+            this.dateEdit_ORDER_DT.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.dateEdit_ORDER_DT.EditValue = new System.DateTime(2020, 12, 30, 0, 0, 0, 0);
+            this.dateEdit_ORDER_DT.Location = new System.Drawing.Point(115, 2);
+            this.dateEdit_ORDER_DT.Name = "dateEdit_ORDER_DT";
+            this.dateEdit_ORDER_DT.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.dateEdit_ORDER_DT.Properties.Appearance.Options.UseFont = true;
+            this.dateEdit_ORDER_DT.Properties.Appearance.Options.UseTextOptions = true;
+            this.dateEdit_ORDER_DT.Properties.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.dateEdit_ORDER_DT.Properties.AppearanceFocused.Options.UseTextOptions = true;
+            this.dateEdit_ORDER_DT.Properties.AppearanceFocused.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.dateEdit_ORDER_DT.Properties.AutoHeight = false;
+            this.dateEdit_ORDER_DT.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.dateEdit_ORDER_DT.Properties.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.dateEdit_ORDER_DT.Properties.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTimeAdvancingCaret;
+            this.dateEdit_ORDER_DT.Properties.Mask.UseMaskAsDisplayFormat = true;
+            this.dateEdit_ORDER_DT.Size = new System.Drawing.Size(148, 36);
+            this.dateEdit_ORDER_DT.TabIndex = 107;
+            // 
+            // simpleButton_Next
+            // 
+            this.simpleButton_Next.Dock = System.Windows.Forms.DockStyle.Right;
+            this.simpleButton_Next.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Next.Image")));
+            this.simpleButton_Next.Location = new System.Drawing.Point(263, 2);
+            this.simpleButton_Next.Name = "simpleButton_Next";
+            this.simpleButton_Next.Size = new System.Drawing.Size(35, 36);
+            this.simpleButton_Next.TabIndex = 106;
+            // 
+            // simpleButton_Pre
+            // 
+            this.simpleButton_Pre.Dock = System.Windows.Forms.DockStyle.Left;
+            this.simpleButton_Pre.Image = ((System.Drawing.Image)(resources.GetObject("simpleButton_Pre.Image")));
+            this.simpleButton_Pre.Location = new System.Drawing.Point(80, 2);
+            this.simpleButton_Pre.Name = "simpleButton_Pre";
+            this.simpleButton_Pre.Size = new System.Drawing.Size(35, 36);
+            this.simpleButton_Pre.TabIndex = 105;
+            // 
+            // labelControl37
+            // 
+            this.labelControl37.Appearance.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.labelControl37.Appearance.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.labelControl37.AutoSizeMode = DevExpress.XtraEditors.LabelAutoSizeMode.None;
+            this.labelControl37.Dock = System.Windows.Forms.DockStyle.Left;
+            this.labelControl37.Location = new System.Drawing.Point(2, 2);
+            this.labelControl37.Name = "labelControl37";
+            this.labelControl37.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
+            this.labelControl37.Size = new System.Drawing.Size(78, 36);
+            this.labelControl37.TabIndex = 0;
+            this.labelControl37.Text = "작업 일자";
+            // 
+            // tabControl1
+            // 
+            this.tabControl1.Controls.Add(this.tabPage1);
+            this.tabControl1.Controls.Add(this.tabPage2);
+            this.tabControl1.Controls.Add(this.tabPage3);
+            this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.tabControl1.HotTrack = true;
+            this.tabControl1.ItemSize = new System.Drawing.Size(300, 50);
+            this.tabControl1.Location = new System.Drawing.Point(0, 0);
+            this.tabControl1.Name = "tabControl1";
+            this.tabControl1.SelectedIndex = 0;
+            this.tabControl1.Size = new System.Drawing.Size(1024, 349);
+            this.tabControl1.TabIndex = 0;
+            // 
+            // tabPage1
+            // 
+            this.tabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
+            this.tabPage1.Controls.Add(this.splitContainer2);
+            this.tabPage1.Location = new System.Drawing.Point(4, 54);
+            this.tabPage1.Name = "tabPage1";
+            this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
+            this.tabPage1.Size = new System.Drawing.Size(1016, 291);
+            this.tabPage1.TabIndex = 0;
+            this.tabPage1.Text = "공정 및 포장";
+            // 
+            // splitContainer2
+            // 
+            this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.splitContainer2.Location = new System.Drawing.Point(3, 3);
+            this.splitContainer2.Name = "splitContainer2";
+            this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
+            // 
+            // splitContainer2.Panel1
+            // 
+            this.splitContainer2.Panel1.Controls.Add(this.gridControl_P);
+            // 
+            // splitContainer2.Panel2
+            // 
+            this.splitContainer2.Panel2.Controls.Add(this.gridControl_B);
+            this.splitContainer2.Size = new System.Drawing.Size(1010, 285);
+            this.splitContainer2.SplitterDistance = 140;
+            this.splitContainer2.TabIndex = 0;
+            // 
+            // gridControl_P
+            // 
+            this.gridControl_P.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.gridControl_P.Location = new System.Drawing.Point(0, 0);
+            this.gridControl_P.MainView = this.gridView_P;
+            this.gridControl_P.Name = "gridControl_P";
+            this.gridControl_P.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD,
+            this.repositoryItemButtonEdit_ITEM_SPEC,
+            this.repositoryItemLookUpEdit_ITEM_CD,
+            this.repositoryItemButtonEdit_Mokh,
+            this.repositoryItemButtonEdit_Detail,
+            this.repositoryItemComboBox1,
+            this.repositoryItemTextEdit_DataTime,
+            this.repositoryItemLookUpEdit_PROC,
+            this.repositoryItemLookUpEdit_WORKER,
+            this.repositoryItemDateEdit_END_DT,
+            this.repositoryItemTextEdit_RATIO,
+            this.repositoryItemLookUpEdit_MACH});
+            this.gridControl_P.Size = new System.Drawing.Size(1010, 140);
+            this.gridControl_P.TabIndex = 122;
+            this.gridControl_P.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
+            this.gridView_P});
+            // 
+            // gridView_P
+            // 
+            this.gridView_P.Appearance.FooterPanel.Options.UseFont = true;
+            this.gridView_P.Appearance.HeaderPanel.Options.UseFont = true;
+            this.gridView_P.Appearance.HeaderPanel.Options.UseTextOptions = true;
+            this.gridView_P.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridView_P.Appearance.Row.Options.UseFont = true;
+            this.gridView_P.ColumnPanelRowHeight = 40;
+            this.gridView_P.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
+            this.gridColumn9,
+            this.gridColumn16,
+            this.gridColumn21,
+            this.gridColumn28,
+            this.gridColumn29,
+            this.gridColumn30,
+            this.gridColumn31,
+            this.gridColumn32,
+            this.gridColumn33,
+            this.gridColumn34,
+            this.gridColumn35,
+            this.gridColumn36,
+            this.gridColumn40});
+            this.gridView_P.FooterPanelHeight = 23;
+            this.gridView_P.GridControl = this.gridControl_P;
+            this.gridView_P.Name = "gridView_P";
+            this.gridView_P.OptionsCustomization.AllowSort = false;
+            this.gridView_P.OptionsNavigation.EnterMoveNextColumn = true;
+            this.gridView_P.OptionsView.ColumnAutoWidth = false;
+            this.gridView_P.OptionsView.ShowGroupPanel = false;
+            this.gridView_P.RowHeight = 40;
+            // 
+            // gridColumn9
+            // 
+            this.gridColumn9.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn9.AppearanceCell.Options.UseFont = true;
+            this.gridColumn9.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn9.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn9.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn9.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn9.Caption = "공정";
+            this.gridColumn9.FieldName = "operation";
+            this.gridColumn9.Name = "gridColumn9";
+            this.gridColumn9.OptionsColumn.AllowEdit = false;
+            this.gridColumn9.OptionsColumn.AllowFocus = false;
+            this.gridColumn9.Visible = true;
+            this.gridColumn9.VisibleIndex = 0;
+            this.gridColumn9.Width = 85;
+            // 
+            // gridColumn16
+            // 
+            this.gridColumn16.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn16.AppearanceCell.Options.UseFont = true;
+            this.gridColumn16.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn16.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn16.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn16.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn16.Caption = "작업장";
+            this.gridColumn16.FieldName = "workcenter";
+            this.gridColumn16.Name = "gridColumn16";
+            this.gridColumn16.OptionsColumn.AllowEdit = false;
+            this.gridColumn16.OptionsColumn.AllowFocus = false;
+            this.gridColumn16.Visible = true;
+            this.gridColumn16.VisibleIndex = 1;
+            this.gridColumn16.Width = 225;
+            // 
+            // gridColumn21
+            // 
+            this.gridColumn21.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn21.AppearanceCell.Options.UseFont = true;
+            this.gridColumn21.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn21.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn21.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn21.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn21.Caption = "작업장이니셜";
+            this.gridColumn21.FieldName = "initial_name";
+            this.gridColumn21.Name = "gridColumn21";
+            this.gridColumn21.OptionsColumn.AllowEdit = false;
+            this.gridColumn21.OptionsColumn.AllowFocus = false;
+            this.gridColumn21.Visible = true;
+            this.gridColumn21.VisibleIndex = 2;
+            this.gridColumn21.Width = 147;
+            // 
+            // gridColumn28
+            // 
+            this.gridColumn28.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn28.AppearanceCell.Options.UseFont = true;
+            this.gridColumn28.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn28.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn28.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn28.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn28.Caption = "공정코드";
+            this.gridColumn28.FieldName = "process_key";
+            this.gridColumn28.Name = "gridColumn28";
+            this.gridColumn28.OptionsColumn.AllowEdit = false;
+            this.gridColumn28.OptionsColumn.AllowFocus = false;
+            this.gridColumn28.Visible = true;
+            this.gridColumn28.VisibleIndex = 3;
+            this.gridColumn28.Width = 164;
+            // 
+            // gridColumn29
+            // 
+            this.gridColumn29.Caption = "셋업시간";
+            this.gridColumn29.FieldName = "setup_hours";
+            this.gridColumn29.Name = "gridColumn29";
+            // 
+            // gridColumn30
+            // 
+            this.gridColumn30.Caption = "표준작업시간";
+            this.gridColumn30.FieldName = "std_hours";
+            this.gridColumn30.Name = "gridColumn30";
+            // 
+            // gridColumn31
+            // 
+            this.gridColumn31.Caption = "시간유형";
+            this.gridColumn31.FieldName = "st_type";
+            this.gridColumn31.Name = "gridColumn31";
+            // 
+            // gridColumn32
+            // 
+            this.gridColumn32.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn32.AppearanceCell.Options.UseFont = true;
+            this.gridColumn32.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn32.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn32.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn32.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn32.Caption = "작업조";
+            this.gridColumn32.FieldName = "employee_group";
+            this.gridColumn32.Name = "gridColumn32";
+            this.gridColumn32.Visible = true;
+            this.gridColumn32.VisibleIndex = 4;
+            this.gridColumn32.Width = 91;
+            // 
+            // gridColumn33
+            // 
+            this.gridColumn33.Caption = "우선순위";
+            this.gridColumn33.FieldName = "priority";
+            this.gridColumn33.Name = "gridColumn33";
+            // 
+            // gridColumn34
+            // 
+            this.gridColumn34.Caption = "노트";
+            this.gridColumn34.FieldName = "rm_note";
+            this.gridColumn34.Name = "gridColumn34";
+            // 
+            // gridColumn35
+            // 
+            this.gridColumn35.Caption = "규격표시";
+            this.gridColumn35.FieldName = "certi_code";
+            this.gridColumn35.Name = "gridColumn35";
+            // 
+            // gridColumn36
+            // 
+            this.gridColumn36.Caption = "품질표시";
+            this.gridColumn36.FieldName = "product_class_desc";
+            this.gridColumn36.Name = "gridColumn36";
+            // 
+            // gridColumn40
+            // 
+            this.gridColumn40.Caption = "염소계여부";
+            this.gridColumn40.FieldName = "ig_desc";
+            this.gridColumn40.Name = "gridColumn40";
+            // 
+            // repositoryItemLookUpEdit_ORDER_UNIT_CD
+            // 
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD.AutoHeight = false;
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_ORDER_UNIT_CD.Name = "repositoryItemLookUpEdit_ORDER_UNIT_CD";
+            // 
+            // repositoryItemButtonEdit_ITEM_SPEC
+            // 
+            this.repositoryItemButtonEdit_ITEM_SPEC.AutoHeight = false;
+            this.repositoryItemButtonEdit_ITEM_SPEC.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "상세", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject1, "", null, null, true)});
+            this.repositoryItemButtonEdit_ITEM_SPEC.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
+            this.repositoryItemButtonEdit_ITEM_SPEC.Name = "repositoryItemButtonEdit_ITEM_SPEC";
+            // 
+            // repositoryItemLookUpEdit_ITEM_CD
+            // 
+            this.repositoryItemLookUpEdit_ITEM_CD.AutoHeight = false;
+            this.repositoryItemLookUpEdit_ITEM_CD.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_ITEM_CD.Name = "repositoryItemLookUpEdit_ITEM_CD";
+            // 
+            // repositoryItemButtonEdit_Mokh
+            // 
+            this.repositoryItemButtonEdit_Mokh.AutoHeight = false;
+            this.repositoryItemButtonEdit_Mokh.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton()});
+            this.repositoryItemButtonEdit_Mokh.Name = "repositoryItemButtonEdit_Mokh";
+            // 
+            // repositoryItemButtonEdit_Detail
+            // 
+            this.repositoryItemButtonEdit_Detail.AutoHeight = false;
+            this.repositoryItemButtonEdit_Detail.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Search)});
+            this.repositoryItemButtonEdit_Detail.Name = "repositoryItemButtonEdit_Detail";
+            // 
+            // repositoryItemComboBox1
+            // 
+            this.repositoryItemComboBox1.AutoHeight = false;
+            this.repositoryItemComboBox1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemComboBox1.Items.AddRange(new object[] {
+            "증가",
+            "감소"});
+            this.repositoryItemComboBox1.Name = "repositoryItemComboBox1";
+            // 
+            // repositoryItemTextEdit_DataTime
+            // 
+            this.repositoryItemTextEdit_DataTime.AutoHeight = false;
+            this.repositoryItemTextEdit_DataTime.Mask.EditMask = "yy-MM-dd HH:mm:ss";
+            this.repositoryItemTextEdit_DataTime.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
+            this.repositoryItemTextEdit_DataTime.Name = "repositoryItemTextEdit_DataTime";
+            // 
+            // repositoryItemLookUpEdit_PROC
+            // 
+            this.repositoryItemLookUpEdit_PROC.AutoHeight = false;
+            this.repositoryItemLookUpEdit_PROC.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_PROC.Name = "repositoryItemLookUpEdit_PROC";
+            // 
+            // repositoryItemLookUpEdit_WORKER
+            // 
+            this.repositoryItemLookUpEdit_WORKER.AutoHeight = false;
+            this.repositoryItemLookUpEdit_WORKER.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_WORKER.Name = "repositoryItemLookUpEdit_WORKER";
+            // 
+            // repositoryItemDateEdit_END_DT
+            // 
+            this.repositoryItemDateEdit_END_DT.AutoHeight = false;
+            this.repositoryItemDateEdit_END_DT.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit_END_DT.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit_END_DT.Name = "repositoryItemDateEdit_END_DT";
+            // 
+            // repositoryItemTextEdit_RATIO
+            // 
+            this.repositoryItemTextEdit_RATIO.AutoHeight = false;
+            this.repositoryItemTextEdit_RATIO.Mask.EditMask = "p";
+            this.repositoryItemTextEdit_RATIO.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
+            this.repositoryItemTextEdit_RATIO.Mask.UseMaskAsDisplayFormat = true;
+            this.repositoryItemTextEdit_RATIO.Name = "repositoryItemTextEdit_RATIO";
+            // 
+            // repositoryItemLookUpEdit_MACH
+            // 
+            this.repositoryItemLookUpEdit_MACH.AutoHeight = false;
+            this.repositoryItemLookUpEdit_MACH.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit_MACH.Name = "repositoryItemLookUpEdit_MACH";
+            // 
+            // gridControl_B
+            // 
+            this.gridControl_B.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.gridControl_B.Location = new System.Drawing.Point(0, 0);
+            this.gridControl_B.MainView = this.gridView_B;
+            this.gridControl_B.Name = "gridControl_B";
+            this.gridControl_B.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
+            this.repositoryItemLookUpEdit1,
+            this.repositoryItemButtonEdit1,
+            this.repositoryItemLookUpEdit2,
+            this.repositoryItemButtonEdit2,
+            this.repositoryItemButtonEdit3,
+            this.repositoryItemComboBox2,
+            this.repositoryItemTextEdit1,
+            this.repositoryItemLookUpEdit3,
+            this.repositoryItemLookUpEdit4,
+            this.repositoryItemDateEdit1,
+            this.repositoryItemTextEdit2,
+            this.repositoryItemLookUpEdit5});
+            this.gridControl_B.Size = new System.Drawing.Size(1010, 141);
+            this.gridControl_B.TabIndex = 123;
+            this.gridControl_B.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
+            this.gridView_B});
+            // 
+            // gridView_B
+            // 
+            this.gridView_B.Appearance.FooterPanel.Options.UseFont = true;
+            this.gridView_B.Appearance.HeaderPanel.Options.UseFont = true;
+            this.gridView_B.Appearance.HeaderPanel.Options.UseTextOptions = true;
+            this.gridView_B.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridView_B.Appearance.Row.Options.UseFont = true;
+            this.gridView_B.ColumnPanelRowHeight = 40;
+            this.gridView_B.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
+            this.gridColumn42,
+            this.gridColumn43,
+            this.gridColumn44,
+            this.gridColumn45,
+            this.gridColumn46,
+            this.gridColumn47,
+            this.gridColumn48,
+            this.gridColumn49,
+            this.gridColumn50,
+            this.gridColumn51});
+            this.gridView_B.FooterPanelHeight = 23;
+            this.gridView_B.GridControl = this.gridControl_B;
+            this.gridView_B.Name = "gridView_B";
+            this.gridView_B.OptionsCustomization.AllowSort = false;
+            this.gridView_B.OptionsNavigation.EnterMoveNextColumn = true;
+            this.gridView_B.OptionsView.ColumnAutoWidth = false;
+            this.gridView_B.OptionsView.ShowGroupPanel = false;
+            this.gridView_B.RowHeight = 40;
+            // 
+            // gridColumn42
+            // 
+            this.gridColumn42.Caption = "오더번호";
+            this.gridColumn42.FieldName = "order_no";
+            this.gridColumn42.Name = "gridColumn42";
+            // 
+            // gridColumn43
+            // 
+            this.gridColumn43.Caption = "로트";
+            this.gridColumn43.FieldName = "lot";
+            this.gridColumn43.Name = "gridColumn43";
+            // 
+            // gridColumn44
+            // 
+            this.gridColumn44.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn44.AppearanceCell.Options.UseFont = true;
+            this.gridColumn44.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn44.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn44.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn44.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn44.Caption = "로트통제번호";
+            this.gridColumn44.FieldName = "notes";
+            this.gridColumn44.Name = "gridColumn44";
+            this.gridColumn44.OptionsColumn.AllowEdit = false;
+            this.gridColumn44.OptionsColumn.AllowFocus = false;
+            this.gridColumn44.Visible = true;
+            this.gridColumn44.VisibleIndex = 0;
+            this.gridColumn44.Width = 169;
+            // 
+            // gridColumn45
+            // 
+            this.gridColumn45.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn45.AppearanceCell.Options.UseFont = true;
+            this.gridColumn45.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn45.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
+            this.gridColumn45.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn45.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn45.Caption = "수량";
+            this.gridColumn45.DisplayFormat.FormatString = "N02";
+            this.gridColumn45.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.gridColumn45.FieldName = "order_qty";
+            this.gridColumn45.Name = "gridColumn45";
+            this.gridColumn45.OptionsColumn.AllowEdit = false;
+            this.gridColumn45.OptionsColumn.AllowFocus = false;
+            this.gridColumn45.Visible = true;
+            this.gridColumn45.VisibleIndex = 1;
+            this.gridColumn45.Width = 123;
+            // 
+            // gridColumn46
+            // 
+            this.gridColumn46.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn46.AppearanceCell.Options.UseFont = true;
+            this.gridColumn46.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn46.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn46.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn46.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn46.Caption = "단위";
+            this.gridColumn46.FieldName = "uom";
+            this.gridColumn46.Name = "gridColumn46";
+            this.gridColumn46.OptionsColumn.AllowEdit = false;
+            this.gridColumn46.OptionsColumn.AllowFocus = false;
+            this.gridColumn46.Visible = true;
+            this.gridColumn46.VisibleIndex = 2;
+            this.gridColumn46.Width = 98;
+            // 
+            // gridColumn47
+            // 
+            this.gridColumn47.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn47.AppearanceCell.Options.UseFont = true;
+            this.gridColumn47.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn47.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn47.Caption = "포장명";
+            this.gridColumn47.FieldName = "mark_nm";
+            this.gridColumn47.Name = "gridColumn47";
+            this.gridColumn47.OptionsColumn.AllowEdit = false;
+            this.gridColumn47.OptionsColumn.AllowFocus = false;
+            this.gridColumn47.Visible = true;
+            this.gridColumn47.VisibleIndex = 3;
+            this.gridColumn47.Width = 300;
+            // 
+            // gridColumn48
+            // 
+            this.gridColumn48.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn48.AppearanceCell.Options.UseFont = true;
+            this.gridColumn48.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn48.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn48.Caption = "생산단위";
+            this.gridColumn48.FieldName = "uom_prct";
+            this.gridColumn48.Name = "gridColumn48";
+            this.gridColumn48.OptionsColumn.AllowEdit = false;
+            this.gridColumn48.OptionsColumn.AllowFocus = false;
+            this.gridColumn48.Width = 139;
+            // 
+            // gridColumn49
+            // 
+            this.gridColumn49.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn49.AppearanceCell.Options.UseFont = true;
+            this.gridColumn49.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn49.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn49.Caption = "포장단위";
+            this.gridColumn49.FieldName = "uom_pack";
+            this.gridColumn49.Name = "gridColumn49";
+            this.gridColumn49.OptionsColumn.AllowEdit = false;
+            this.gridColumn49.OptionsColumn.AllowFocus = false;
+            this.gridColumn49.Width = 125;
+            // 
+            // gridColumn50
+            // 
+            this.gridColumn50.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn50.AppearanceCell.Options.UseFont = true;
+            this.gridColumn50.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn50.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
+            this.gridColumn50.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn50.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn50.Caption = "포장수량";
+            this.gridColumn50.DisplayFormat.FormatString = "N02";
+            this.gridColumn50.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.gridColumn50.FieldName = "pack_qty";
+            this.gridColumn50.Name = "gridColumn50";
+            this.gridColumn50.OptionsColumn.AllowEdit = false;
+            this.gridColumn50.OptionsColumn.AllowFocus = false;
+            this.gridColumn50.Visible = true;
+            this.gridColumn50.VisibleIndex = 4;
+            this.gridColumn50.Width = 137;
+            // 
+            // gridColumn51
+            // 
+            this.gridColumn51.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn51.AppearanceCell.Options.UseFont = true;
+            this.gridColumn51.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn51.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn51.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn51.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn51.Caption = "비고";
+            this.gridColumn51.FieldName = "mark_note";
+            this.gridColumn51.Name = "gridColumn51";
+            this.gridColumn51.OptionsColumn.AllowEdit = false;
+            this.gridColumn51.OptionsColumn.AllowFocus = false;
+            this.gridColumn51.Visible = true;
+            this.gridColumn51.VisibleIndex = 5;
+            this.gridColumn51.Width = 164;
+            // 
+            // repositoryItemLookUpEdit1
+            // 
+            this.repositoryItemLookUpEdit1.AutoHeight = false;
+            this.repositoryItemLookUpEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit1.Name = "repositoryItemLookUpEdit1";
+            // 
+            // repositoryItemButtonEdit1
+            // 
+            this.repositoryItemButtonEdit1.AutoHeight = false;
+            this.repositoryItemButtonEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "상세", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject2, "", null, null, true)});
+            this.repositoryItemButtonEdit1.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
+            this.repositoryItemButtonEdit1.Name = "repositoryItemButtonEdit1";
+            // 
+            // repositoryItemLookUpEdit2
+            // 
+            this.repositoryItemLookUpEdit2.AutoHeight = false;
+            this.repositoryItemLookUpEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit2.Name = "repositoryItemLookUpEdit2";
+            // 
+            // repositoryItemButtonEdit2
+            // 
+            this.repositoryItemButtonEdit2.AutoHeight = false;
+            this.repositoryItemButtonEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton()});
+            this.repositoryItemButtonEdit2.Name = "repositoryItemButtonEdit2";
+            // 
+            // repositoryItemButtonEdit3
+            // 
+            this.repositoryItemButtonEdit3.AutoHeight = false;
+            this.repositoryItemButtonEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Search)});
+            this.repositoryItemButtonEdit3.Name = "repositoryItemButtonEdit3";
+            // 
+            // repositoryItemComboBox2
+            // 
+            this.repositoryItemComboBox2.AutoHeight = false;
+            this.repositoryItemComboBox2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemComboBox2.Items.AddRange(new object[] {
+            "증가",
+            "감소"});
+            this.repositoryItemComboBox2.Name = "repositoryItemComboBox2";
+            // 
+            // repositoryItemTextEdit1
+            // 
+            this.repositoryItemTextEdit1.AutoHeight = false;
+            this.repositoryItemTextEdit1.Mask.EditMask = "yy-MM-dd HH:mm:ss";
+            this.repositoryItemTextEdit1.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
+            this.repositoryItemTextEdit1.Name = "repositoryItemTextEdit1";
+            // 
+            // repositoryItemLookUpEdit3
+            // 
+            this.repositoryItemLookUpEdit3.AutoHeight = false;
+            this.repositoryItemLookUpEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit3.Name = "repositoryItemLookUpEdit3";
+            // 
+            // repositoryItemLookUpEdit4
+            // 
+            this.repositoryItemLookUpEdit4.AutoHeight = false;
+            this.repositoryItemLookUpEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit4.Name = "repositoryItemLookUpEdit4";
+            // 
+            // repositoryItemDateEdit1
+            // 
+            this.repositoryItemDateEdit1.AutoHeight = false;
+            this.repositoryItemDateEdit1.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit1.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit1.Name = "repositoryItemDateEdit1";
+            // 
+            // repositoryItemTextEdit2
+            // 
+            this.repositoryItemTextEdit2.AutoHeight = false;
+            this.repositoryItemTextEdit2.Mask.EditMask = "p";
+            this.repositoryItemTextEdit2.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
+            this.repositoryItemTextEdit2.Mask.UseMaskAsDisplayFormat = true;
+            this.repositoryItemTextEdit2.Name = "repositoryItemTextEdit2";
+            // 
+            // repositoryItemLookUpEdit5
+            // 
+            this.repositoryItemLookUpEdit5.AutoHeight = false;
+            this.repositoryItemLookUpEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit5.Name = "repositoryItemLookUpEdit5";
+            // 
+            // tabPage2
+            // 
+            this.tabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(236)))), ((int)(((byte)(239)))));
+            this.tabPage2.Controls.Add(this.gridControl_Main);
+            this.tabPage2.Location = new System.Drawing.Point(4, 54);
+            this.tabPage2.Name = "tabPage2";
+            this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
+            this.tabPage2.Size = new System.Drawing.Size(1016, 291);
+            this.tabPage2.TabIndex = 1;
+            this.tabPage2.Text = "자재 투입";
+            // 
+            // gridControl_Main
+            // 
+            this.gridControl_Main.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.gridControl_Main.Location = new System.Drawing.Point(3, 3);
+            this.gridControl_Main.MainView = this.gridView_Main;
+            this.gridControl_Main.Name = "gridControl_Main";
+            this.gridControl_Main.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
+            this.repositoryItemLookUpEdit6,
+            this.repositoryItemButtonEdit4,
+            this.repositoryItemLookUpEdit7,
+            this.repositoryItemButtonEdit5,
+            this.repositoryItemButtonEdit6,
+            this.repositoryItemComboBox3,
+            this.repositoryItemTextEdit3,
+            this.repositoryItemLookUpEdit8,
+            this.repositoryItemLookUpEdit9,
+            this.repositoryItemDateEdit2,
+            this.repositoryItemTextEdit4,
+            this.repositoryItemLookUpEdit10});
+            this.gridControl_Main.Size = new System.Drawing.Size(1010, 285);
+            this.gridControl_Main.TabIndex = 123;
+            this.gridControl_Main.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
+            this.gridView_Main});
+            this.gridControl_Main.DoubleClick += new System.EventHandler(this.gridControl_Main_DoubleClick);
+            // 
+            // gridView_Main
+            // 
+            this.gridView_Main.Appearance.FooterPanel.Options.UseFont = true;
+            this.gridView_Main.Appearance.HeaderPanel.Options.UseFont = true;
+            this.gridView_Main.Appearance.HeaderPanel.Options.UseTextOptions = true;
+            this.gridView_Main.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridView_Main.Appearance.Row.Options.UseFont = true;
+            this.gridView_Main.ColumnPanelRowHeight = 40;
+            this.gridView_Main.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
+            this.gridColumn53,
+            this.gridColumn54,
+            this.gridColumn55,
+            this.gridColumn56,
+            this.gridColumn60,
+            this.gridColumn57,
+            this.gridColumn58,
+            this.gridColumn59});
+            this.gridView_Main.FooterPanelHeight = 23;
+            this.gridView_Main.GridControl = this.gridControl_Main;
+            this.gridView_Main.Name = "gridView_Main";
+            this.gridView_Main.OptionsCustomization.AllowSort = false;
+            this.gridView_Main.OptionsNavigation.EnterMoveNextColumn = true;
+            this.gridView_Main.OptionsView.ColumnAutoWidth = false;
+            this.gridView_Main.OptionsView.ShowGroupPanel = false;
+            this.gridView_Main.RowHeight = 40;
+            // 
+            // gridColumn53
+            // 
+            this.gridColumn53.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn53.AppearanceCell.Options.UseFont = true;
+            this.gridColumn53.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn53.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn53.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn53.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn53.Caption = "공정";
+            this.gridColumn53.FieldName = "operation";
+            this.gridColumn53.Name = "gridColumn53";
+            this.gridColumn53.OptionsColumn.AllowEdit = false;
+            this.gridColumn53.OptionsColumn.AllowFocus = false;
+            this.gridColumn53.Visible = true;
+            this.gridColumn53.VisibleIndex = 0;
+            this.gridColumn53.Width = 72;
+            // 
+            // gridColumn54
+            // 
+            this.gridColumn54.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn54.AppearanceCell.Options.UseFont = true;
+            this.gridColumn54.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn54.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn54.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn54.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn54.Caption = "투입순번";
+            this.gridColumn54.FieldName = "note";
+            this.gridColumn54.Name = "gridColumn54";
+            this.gridColumn54.OptionsColumn.AllowEdit = false;
+            this.gridColumn54.OptionsColumn.AllowFocus = false;
+            this.gridColumn54.Visible = true;
+            this.gridColumn54.VisibleIndex = 1;
+            this.gridColumn54.Width = 89;
+            // 
+            // gridColumn55
+            // 
+            this.gridColumn55.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn55.AppearanceCell.Options.UseFont = true;
+            this.gridColumn55.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn55.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn55.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn55.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn55.Caption = "자품목번호";
+            this.gridColumn55.FieldName = "resource_used";
+            this.gridColumn55.Name = "gridColumn55";
+            this.gridColumn55.OptionsColumn.AllowEdit = false;
+            this.gridColumn55.OptionsColumn.AllowFocus = false;
+            this.gridColumn55.Visible = true;
+            this.gridColumn55.VisibleIndex = 2;
+            this.gridColumn55.Width = 177;
+            // 
+            // gridColumn56
+            // 
+            this.gridColumn56.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn56.AppearanceCell.Options.UseFont = true;
+            this.gridColumn56.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn56.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn56.Caption = "명세";
+            this.gridColumn56.FieldName = "description";
+            this.gridColumn56.Name = "gridColumn56";
+            this.gridColumn56.OptionsColumn.AllowEdit = false;
+            this.gridColumn56.OptionsColumn.AllowFocus = false;
+            this.gridColumn56.Visible = true;
+            this.gridColumn56.VisibleIndex = 3;
+            this.gridColumn56.Width = 303;
+            // 
+            // gridColumn60
+            // 
+            this.gridColumn60.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn60.AppearanceCell.Options.UseFont = true;
+            this.gridColumn60.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn60.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn60.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn60.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn60.Caption = "투입량";
+            this.gridColumn60.DisplayFormat.FormatString = "N02";
+            this.gridColumn60.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.gridColumn60.FieldName = "in_qty";
+            this.gridColumn60.Name = "gridColumn60";
+            this.gridColumn60.OptionsColumn.AllowEdit = false;
+            this.gridColumn60.OptionsColumn.AllowFocus = false;
+            this.gridColumn60.Visible = true;
+            this.gridColumn60.VisibleIndex = 4;
+            this.gridColumn60.Width = 129;
+            // 
+            // gridColumn57
+            // 
+            this.gridColumn57.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn57.AppearanceCell.Options.UseFont = true;
+            this.gridColumn57.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn57.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn57.Caption = "합계수량";
+            this.gridColumn57.FieldName = "qty_total";
+            this.gridColumn57.Name = "gridColumn57";
+            this.gridColumn57.OptionsColumn.AllowEdit = false;
+            this.gridColumn57.OptionsColumn.AllowFocus = false;
+            this.gridColumn57.Width = 136;
+            // 
+            // gridColumn58
+            // 
+            this.gridColumn58.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn58.AppearanceCell.Options.UseFont = true;
+            this.gridColumn58.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn58.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridColumn58.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn58.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn58.Caption = "단위";
+            this.gridColumn58.FieldName = "uom";
+            this.gridColumn58.Name = "gridColumn58";
+            this.gridColumn58.OptionsColumn.AllowEdit = false;
+            this.gridColumn58.OptionsColumn.AllowFocus = false;
+            this.gridColumn58.Visible = true;
+            this.gridColumn58.VisibleIndex = 5;
+            this.gridColumn58.Width = 80;
+            // 
+            // gridColumn59
+            // 
+            this.gridColumn59.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn59.AppearanceCell.Options.UseFont = true;
+            this.gridColumn59.AppearanceCell.Options.UseTextOptions = true;
+            this.gridColumn59.AppearanceCell.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Far;
+            this.gridColumn59.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn59.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn59.Caption = "현재고";
+            this.gridColumn59.DisplayFormat.FormatString = "N02";
+            this.gridColumn59.DisplayFormat.FormatType = DevExpress.Utils.FormatType.Numeric;
+            this.gridColumn59.FieldName = "stock_qty";
+            this.gridColumn59.Name = "gridColumn59";
+            this.gridColumn59.OptionsColumn.AllowEdit = false;
+            this.gridColumn59.OptionsColumn.AllowFocus = false;
+            this.gridColumn59.Visible = true;
+            this.gridColumn59.VisibleIndex = 6;
+            this.gridColumn59.Width = 121;
+            // 
+            // repositoryItemLookUpEdit6
+            // 
+            this.repositoryItemLookUpEdit6.AutoHeight = false;
+            this.repositoryItemLookUpEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit6.Name = "repositoryItemLookUpEdit6";
+            // 
+            // repositoryItemButtonEdit4
+            // 
+            this.repositoryItemButtonEdit4.AutoHeight = false;
+            this.repositoryItemButtonEdit4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "상세", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject3, "", null, null, true)});
+            this.repositoryItemButtonEdit4.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
+            this.repositoryItemButtonEdit4.Name = "repositoryItemButtonEdit4";
+            // 
+            // repositoryItemLookUpEdit7
+            // 
+            this.repositoryItemLookUpEdit7.AutoHeight = false;
+            this.repositoryItemLookUpEdit7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit7.Name = "repositoryItemLookUpEdit7";
+            // 
+            // repositoryItemButtonEdit5
+            // 
+            this.repositoryItemButtonEdit5.AutoHeight = false;
+            this.repositoryItemButtonEdit5.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton()});
+            this.repositoryItemButtonEdit5.Name = "repositoryItemButtonEdit5";
+            // 
+            // repositoryItemButtonEdit6
+            // 
+            this.repositoryItemButtonEdit6.AutoHeight = false;
+            this.repositoryItemButtonEdit6.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Search)});
+            this.repositoryItemButtonEdit6.Name = "repositoryItemButtonEdit6";
+            // 
+            // repositoryItemComboBox3
+            // 
+            this.repositoryItemComboBox3.AutoHeight = false;
+            this.repositoryItemComboBox3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemComboBox3.Items.AddRange(new object[] {
+            "증가",
+            "감소"});
+            this.repositoryItemComboBox3.Name = "repositoryItemComboBox3";
+            // 
+            // repositoryItemTextEdit3
+            // 
+            this.repositoryItemTextEdit3.AutoHeight = false;
+            this.repositoryItemTextEdit3.Mask.EditMask = "yy-MM-dd HH:mm:ss";
+            this.repositoryItemTextEdit3.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
+            this.repositoryItemTextEdit3.Name = "repositoryItemTextEdit3";
+            // 
+            // repositoryItemLookUpEdit8
+            // 
+            this.repositoryItemLookUpEdit8.AutoHeight = false;
+            this.repositoryItemLookUpEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit8.Name = "repositoryItemLookUpEdit8";
+            // 
+            // repositoryItemLookUpEdit9
+            // 
+            this.repositoryItemLookUpEdit9.AutoHeight = false;
+            this.repositoryItemLookUpEdit9.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit9.Name = "repositoryItemLookUpEdit9";
+            // 
+            // repositoryItemDateEdit2
+            // 
+            this.repositoryItemDateEdit2.AutoHeight = false;
+            this.repositoryItemDateEdit2.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit2.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit2.Name = "repositoryItemDateEdit2";
+            // 
+            // repositoryItemTextEdit4
+            // 
+            this.repositoryItemTextEdit4.AutoHeight = false;
+            this.repositoryItemTextEdit4.Mask.EditMask = "p";
+            this.repositoryItemTextEdit4.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
+            this.repositoryItemTextEdit4.Mask.UseMaskAsDisplayFormat = true;
+            this.repositoryItemTextEdit4.Name = "repositoryItemTextEdit4";
+            // 
+            // repositoryItemLookUpEdit10
+            // 
+            this.repositoryItemLookUpEdit10.AutoHeight = false;
+            this.repositoryItemLookUpEdit10.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit10.Name = "repositoryItemLookUpEdit10";
+            // 
+            // tabPage3
+            // 
+            this.tabPage3.Controls.Add(this.gridControl_note);
+            this.tabPage3.Location = new System.Drawing.Point(4, 54);
+            this.tabPage3.Name = "tabPage3";
+            this.tabPage3.Padding = new System.Windows.Forms.Padding(3);
+            this.tabPage3.Size = new System.Drawing.Size(1016, 291);
+            this.tabPage3.TabIndex = 2;
+            this.tabPage3.Text = "공정";
+            this.tabPage3.UseVisualStyleBackColor = true;
+            // 
+            // gridControl_note
+            // 
+            this.gridControl_note.Dock = System.Windows.Forms.DockStyle.Fill;
+            this.gridControl_note.Location = new System.Drawing.Point(3, 3);
+            this.gridControl_note.MainView = this.gridView_note;
+            this.gridControl_note.Name = "gridControl_note";
+            this.gridControl_note.RepositoryItems.AddRange(new DevExpress.XtraEditors.Repository.RepositoryItem[] {
+            this.repositoryItemLookUpEdit11,
+            this.repositoryItemButtonEdit7,
+            this.repositoryItemLookUpEdit12,
+            this.repositoryItemButtonEdit8,
+            this.repositoryItemButtonEdit9,
+            this.repositoryItemComboBox4,
+            this.repositoryItemTextEdit5,
+            this.repositoryItemLookUpEdit13,
+            this.repositoryItemLookUpEdit14,
+            this.repositoryItemDateEdit3,
+            this.repositoryItemTextEdit6,
+            this.repositoryItemLookUpEdit15});
+            this.gridControl_note.Size = new System.Drawing.Size(1010, 285);
+            this.gridControl_note.TabIndex = 124;
+            this.gridControl_note.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
+            this.gridView_note});
+            // 
+            // gridView_note
+            // 
+            this.gridView_note.Appearance.FooterPanel.Options.UseFont = true;
+            this.gridView_note.Appearance.HeaderPanel.Options.UseFont = true;
+            this.gridView_note.Appearance.HeaderPanel.Options.UseTextOptions = true;
+            this.gridView_note.Appearance.HeaderPanel.TextOptions.HAlignment = DevExpress.Utils.HorzAlignment.Center;
+            this.gridView_note.Appearance.Row.Options.UseFont = true;
+            this.gridView_note.ColumnPanelRowHeight = 40;
+            this.gridView_note.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
+            this.gridColumn61,
+            this.gridColumn62,
+            this.gridColumn63});
+            this.gridView_note.FooterPanelHeight = 23;
+            this.gridView_note.GridControl = this.gridControl_note;
+            this.gridView_note.Name = "gridView_note";
+            this.gridView_note.OptionsCustomization.AllowSort = false;
+            this.gridView_note.OptionsNavigation.EnterMoveNextColumn = true;
+            this.gridView_note.OptionsView.ColumnAutoWidth = false;
+            this.gridView_note.OptionsView.ShowGroupPanel = false;
+            this.gridView_note.RowHeight = 40;
+            // 
+            // gridColumn61
+            // 
+            this.gridColumn61.Caption = "operation";
+            this.gridColumn61.FieldName = "operation";
+            this.gridColumn61.Name = "gridColumn61";
+            // 
+            // gridColumn62
+            // 
+            this.gridColumn62.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn62.AppearanceCell.Options.UseFont = true;
+            this.gridColumn62.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn62.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn62.Caption = "공정";
+            this.gridColumn62.FieldName = "line_no";
+            this.gridColumn62.Name = "gridColumn62";
+            this.gridColumn62.Visible = true;
+            this.gridColumn62.VisibleIndex = 0;
+            // 
+            // gridColumn63
+            // 
+            this.gridColumn63.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Bold);
+            this.gridColumn63.AppearanceCell.Options.UseFont = true;
+            this.gridColumn63.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 15F, System.Drawing.FontStyle.Bold);
+            this.gridColumn63.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn63.Caption = "작업방법";
+            this.gridColumn63.FieldName = "notes";
+            this.gridColumn63.Name = "gridColumn63";
+            this.gridColumn63.Visible = true;
+            this.gridColumn63.VisibleIndex = 1;
+            this.gridColumn63.Width = 916;
+            // 
+            // repositoryItemLookUpEdit11
+            // 
+            this.repositoryItemLookUpEdit11.AutoHeight = false;
+            this.repositoryItemLookUpEdit11.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit11.Name = "repositoryItemLookUpEdit11";
+            // 
+            // repositoryItemButtonEdit7
+            // 
+            this.repositoryItemButtonEdit7.AutoHeight = false;
+            this.repositoryItemButtonEdit7.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Glyph, "상세", -1, true, true, false, DevExpress.XtraEditors.ImageLocation.MiddleCenter, null, new DevExpress.Utils.KeyShortcut(System.Windows.Forms.Keys.None), serializableAppearanceObject4, "", null, null, true)});
+            this.repositoryItemButtonEdit7.ButtonsStyle = DevExpress.XtraEditors.Controls.BorderStyles.Simple;
+            this.repositoryItemButtonEdit7.Name = "repositoryItemButtonEdit7";
+            // 
+            // repositoryItemLookUpEdit12
+            // 
+            this.repositoryItemLookUpEdit12.AutoHeight = false;
+            this.repositoryItemLookUpEdit12.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit12.Name = "repositoryItemLookUpEdit12";
+            // 
+            // repositoryItemButtonEdit8
+            // 
+            this.repositoryItemButtonEdit8.AutoHeight = false;
+            this.repositoryItemButtonEdit8.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton()});
+            this.repositoryItemButtonEdit8.Name = "repositoryItemButtonEdit8";
+            // 
+            // repositoryItemButtonEdit9
+            // 
+            this.repositoryItemButtonEdit9.AutoHeight = false;
+            this.repositoryItemButtonEdit9.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Search)});
+            this.repositoryItemButtonEdit9.Name = "repositoryItemButtonEdit9";
+            // 
+            // repositoryItemComboBox4
+            // 
+            this.repositoryItemComboBox4.AutoHeight = false;
+            this.repositoryItemComboBox4.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemComboBox4.Items.AddRange(new object[] {
+            "증가",
+            "감소"});
+            this.repositoryItemComboBox4.Name = "repositoryItemComboBox4";
+            // 
+            // repositoryItemTextEdit5
+            // 
+            this.repositoryItemTextEdit5.AutoHeight = false;
+            this.repositoryItemTextEdit5.Mask.EditMask = "yy-MM-dd HH:mm:ss";
+            this.repositoryItemTextEdit5.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.DateTime;
+            this.repositoryItemTextEdit5.Name = "repositoryItemTextEdit5";
+            // 
+            // repositoryItemLookUpEdit13
+            // 
+            this.repositoryItemLookUpEdit13.AutoHeight = false;
+            this.repositoryItemLookUpEdit13.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit13.Name = "repositoryItemLookUpEdit13";
+            // 
+            // repositoryItemLookUpEdit14
+            // 
+            this.repositoryItemLookUpEdit14.AutoHeight = false;
+            this.repositoryItemLookUpEdit14.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit14.Name = "repositoryItemLookUpEdit14";
+            // 
+            // repositoryItemDateEdit3
+            // 
+            this.repositoryItemDateEdit3.AutoHeight = false;
+            this.repositoryItemDateEdit3.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit3.CalendarTimeProperties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemDateEdit3.Name = "repositoryItemDateEdit3";
+            // 
+            // repositoryItemTextEdit6
+            // 
+            this.repositoryItemTextEdit6.AutoHeight = false;
+            this.repositoryItemTextEdit6.Mask.EditMask = "p";
+            this.repositoryItemTextEdit6.Mask.MaskType = DevExpress.XtraEditors.Mask.MaskType.Numeric;
+            this.repositoryItemTextEdit6.Mask.UseMaskAsDisplayFormat = true;
+            this.repositoryItemTextEdit6.Name = "repositoryItemTextEdit6";
+            // 
+            // repositoryItemLookUpEdit15
+            // 
+            this.repositoryItemLookUpEdit15.AutoHeight = false;
+            this.repositoryItemLookUpEdit15.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
+            new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
+            this.repositoryItemLookUpEdit15.Name = "repositoryItemLookUpEdit15";
+            // 
+            // gridColumn27
+            // 
+            this.gridColumn27.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn27.AppearanceCell.Options.UseFont = true;
+            this.gridColumn27.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn27.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn27.Caption = "포장명";
+            this.gridColumn27.FieldName = "process_key";
+            this.gridColumn27.Name = "gridColumn27";
+            this.gridColumn27.OptionsColumn.AllowEdit = false;
+            this.gridColumn27.OptionsColumn.AllowFocus = false;
+            this.gridColumn27.Visible = true;
+            this.gridColumn27.VisibleIndex = 3;
+            this.gridColumn27.Width = 98;
+            // 
+            // gridColumn4
+            // 
+            this.gridColumn4.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn4.AppearanceCell.Options.UseFont = true;
+            this.gridColumn4.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn4.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn4.Caption = "비고";
+            this.gridColumn4.FieldName = "REMARK";
+            this.gridColumn4.Name = "gridColumn4";
+            this.gridColumn4.OptionsColumn.AllowEdit = false;
+            this.gridColumn4.OptionsColumn.AllowFocus = false;
+            this.gridColumn4.Width = 157;
+            // 
+            // gridColumn5
+            // 
+            this.gridColumn5.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn5.AppearanceCell.Options.UseFont = true;
+            this.gridColumn5.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn5.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn5.Caption = "공정코드";
+            this.gridColumn5.FieldName = "process_key";
+            this.gridColumn5.Name = "gridColumn5";
+            this.gridColumn5.OptionsColumn.AllowEdit = false;
+            this.gridColumn5.OptionsColumn.AllowFocus = false;
+            this.gridColumn5.Width = 193;
+            // 
+            // gridColumn1
+            // 
+            this.gridColumn1.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn1.AppearanceCell.Options.UseFont = true;
+            this.gridColumn1.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn1.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn1.Caption = "작업장 이니셜";
+            this.gridColumn1.FieldName = "initial_name";
+            this.gridColumn1.Name = "gridColumn1";
+            this.gridColumn1.OptionsColumn.AllowEdit = false;
+            this.gridColumn1.OptionsColumn.AllowFocus = false;
+            this.gridColumn1.Width = 181;
+            // 
+            // gridColumn10
+            // 
+            this.gridColumn10.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn10.AppearanceCell.Options.UseFont = true;
+            this.gridColumn10.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn10.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn10.Caption = "작업장";
+            this.gridColumn10.FieldName = "workcenter";
+            this.gridColumn10.Name = "gridColumn10";
+            this.gridColumn10.OptionsColumn.AllowEdit = false;
+            this.gridColumn10.OptionsColumn.AllowFocus = false;
+            this.gridColumn10.Width = 180;
+            // 
+            // gridColumn11
+            // 
+            this.gridColumn11.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn11.AppearanceCell.Options.UseFont = true;
+            this.gridColumn11.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn11.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn11.Caption = "지시명";
+            this.gridColumn11.FieldName = "ORDER_G_NM";
+            this.gridColumn11.Name = "gridColumn11";
+            this.gridColumn11.OptionsColumn.AllowEdit = false;
+            this.gridColumn11.OptionsColumn.AllowFocus = false;
+            this.gridColumn11.Width = 171;
+            // 
+            // gridColumn8
+            // 
+            this.gridColumn8.Caption = "제품명";
+            this.gridColumn8.FieldName = "ITEM_NM";
+            this.gridColumn8.Name = "gridColumn8";
+            // 
+            // gridColumn7
+            // 
+            this.gridColumn7.Caption = "프로젝트명";
+            this.gridColumn7.FieldName = "PJT_NM";
+            this.gridColumn7.Name = "gridColumn7";
+            // 
+            // gridColumn14
+            // 
+            this.gridColumn14.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn14.AppearanceCell.Options.UseFont = true;
+            this.gridColumn14.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn14.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn14.Caption = "ORDER_W_CD";
+            this.gridColumn14.FieldName = "ORDER_W_CD";
+            this.gridColumn14.Name = "gridColumn14";
+            this.gridColumn14.OptionsColumn.AllowEdit = false;
+            this.gridColumn14.OptionsColumn.AllowFocus = false;
+            // 
+            // gridColumn13
+            // 
+            this.gridColumn13.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn13.AppearanceCell.Options.UseFont = true;
+            this.gridColumn13.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn13.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn13.Caption = "ORDER_D_CD";
+            this.gridColumn13.FieldName = "ORDER_D_CD";
+            this.gridColumn13.Name = "gridColumn13";
+            this.gridColumn13.OptionsColumn.AllowEdit = false;
+            this.gridColumn13.OptionsColumn.AllowFocus = false;
+            // 
+            // gridColumn2
+            // 
+            this.gridColumn2.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn2.AppearanceCell.Options.UseFont = true;
+            this.gridColumn2.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn2.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn2.Caption = "ORDER_G_CD";
+            this.gridColumn2.FieldName = "ORDER_G_CD";
+            this.gridColumn2.Name = "gridColumn2";
+            this.gridColumn2.OptionsColumn.AllowEdit = false;
+            this.gridColumn2.OptionsColumn.AllowFocus = false;
+            this.gridColumn2.Width = 58;
+            // 
+            // gridColumn41
+            // 
+            this.gridColumn41.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn41.AppearanceCell.Options.UseFont = true;
+            this.gridColumn41.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn41.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn41.Caption = "비고";
+            this.gridColumn41.FieldName = "mark_note";
+            this.gridColumn41.Name = "gridColumn41";
+            this.gridColumn41.Width = 300;
+            // 
+            // gridColumn39
+            // 
+            this.gridColumn39.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn39.AppearanceCell.Options.UseFont = true;
+            this.gridColumn39.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn39.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn39.Caption = "비고";
+            this.gridColumn39.FieldName = "REMARK";
+            this.gridColumn39.Name = "gridColumn39";
+            this.gridColumn39.OptionsColumn.AllowEdit = false;
+            this.gridColumn39.OptionsColumn.AllowFocus = false;
+            this.gridColumn39.Width = 157;
+            // 
+            // gridColumn38
+            // 
+            this.gridColumn38.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn38.AppearanceCell.Options.UseFont = true;
+            this.gridColumn38.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn38.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn38.Caption = "생산단위";
+            this.gridColumn38.FieldName = "uom_prct";
+            this.gridColumn38.Name = "gridColumn38";
+            this.gridColumn38.OptionsColumn.AllowEdit = false;
+            this.gridColumn38.OptionsColumn.AllowFocus = false;
+            this.gridColumn38.Width = 100;
+            // 
+            // gridColumn37
+            // 
+            this.gridColumn37.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn37.AppearanceCell.Options.UseFont = true;
+            this.gridColumn37.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn37.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn37.Caption = "포장수량";
+            this.gridColumn37.FieldName = "pack_qty";
+            this.gridColumn37.Name = "gridColumn37";
+            this.gridColumn37.OptionsColumn.AllowEdit = false;
+            this.gridColumn37.OptionsColumn.AllowFocus = false;
+            this.gridColumn37.Width = 130;
+            // 
+            // gridColumn26
+            // 
+            this.gridColumn26.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn26.AppearanceCell.Options.UseFont = true;
+            this.gridColumn26.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn26.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn26.Caption = "포장단위";
+            this.gridColumn26.FieldName = "uom_pack";
+            this.gridColumn26.Name = "gridColumn26";
+            this.gridColumn26.OptionsColumn.AllowEdit = false;
+            this.gridColumn26.OptionsColumn.AllowFocus = false;
+            this.gridColumn26.Width = 100;
+            // 
+            // gridColumn25
+            // 
+            this.gridColumn25.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn25.AppearanceCell.Options.UseFont = true;
+            this.gridColumn25.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn25.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn25.Caption = "포장명";
+            this.gridColumn25.FieldName = "mark_nm";
+            this.gridColumn25.Name = "gridColumn25";
+            this.gridColumn25.OptionsColumn.AllowEdit = false;
+            this.gridColumn25.OptionsColumn.AllowFocus = false;
+            this.gridColumn25.Width = 113;
+            // 
+            // gridColumn24
+            // 
+            this.gridColumn24.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn24.AppearanceCell.Options.UseFont = true;
+            this.gridColumn24.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn24.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn24.Caption = "단위";
+            this.gridColumn24.FieldName = "uom";
+            this.gridColumn24.Name = "gridColumn24";
+            this.gridColumn24.OptionsColumn.AllowEdit = false;
+            this.gridColumn24.OptionsColumn.AllowFocus = false;
+            this.gridColumn24.Width = 80;
+            // 
+            // gridColumn23
+            // 
+            this.gridColumn23.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn23.AppearanceCell.Options.UseFont = true;
+            this.gridColumn23.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn23.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn23.Caption = "수량";
+            this.gridColumn23.FieldName = "order_qty";
+            this.gridColumn23.Name = "gridColumn23";
+            this.gridColumn23.OptionsColumn.AllowEdit = false;
+            this.gridColumn23.OptionsColumn.AllowFocus = false;
+            this.gridColumn23.Width = 130;
+            // 
+            // gridColumn22
+            // 
+            this.gridColumn22.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn22.AppearanceCell.Options.UseFont = true;
+            this.gridColumn22.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn22.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn22.Caption = "지시명";
+            this.gridColumn22.FieldName = "ORDER_G_NM";
+            this.gridColumn22.Name = "gridColumn22";
+            this.gridColumn22.OptionsColumn.AllowEdit = false;
+            this.gridColumn22.OptionsColumn.AllowFocus = false;
+            this.gridColumn22.Width = 171;
+            // 
+            // gridColumn20
+            // 
+            this.gridColumn20.Caption = "제품명";
+            this.gridColumn20.FieldName = "ITEM_NM";
+            this.gridColumn20.Name = "gridColumn20";
+            // 
+            // gridColumn19
+            // 
+            this.gridColumn19.Caption = "프로젝트명";
+            this.gridColumn19.FieldName = "PJT_NM";
+            this.gridColumn19.Name = "gridColumn19";
+            // 
+            // gridColumn18
+            // 
+            this.gridColumn18.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn18.AppearanceCell.Options.UseFont = true;
+            this.gridColumn18.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn18.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn18.Caption = "ORDER_W_CD";
+            this.gridColumn18.FieldName = "ORDER_W_CD";
+            this.gridColumn18.Name = "gridColumn18";
+            this.gridColumn18.OptionsColumn.AllowEdit = false;
+            this.gridColumn18.OptionsColumn.AllowFocus = false;
+            // 
+            // gridColumn17
+            // 
+            this.gridColumn17.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn17.AppearanceCell.Options.UseFont = true;
+            this.gridColumn17.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn17.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn17.Caption = "ORDER_D_CD";
+            this.gridColumn17.FieldName = "ORDER_D_CD";
+            this.gridColumn17.Name = "gridColumn17";
+            this.gridColumn17.OptionsColumn.AllowEdit = false;
+            this.gridColumn17.OptionsColumn.AllowFocus = false;
+            // 
+            // gridColumn15
+            // 
+            this.gridColumn15.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn15.AppearanceCell.Options.UseFont = true;
+            this.gridColumn15.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn15.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn15.Caption = "ORDER_G_CD";
+            this.gridColumn15.FieldName = "ORDER_G_CD";
+            this.gridColumn15.Name = "gridColumn15";
+            this.gridColumn15.OptionsColumn.AllowEdit = false;
+            this.gridColumn15.OptionsColumn.AllowFocus = false;
+            this.gridColumn15.Width = 58;
+            // 
+            // gridColumn12
+            // 
+            this.gridColumn12.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn12.AppearanceCell.Options.UseFont = true;
+            this.gridColumn12.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn12.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn12.Caption = "ORDER_CD";
+            this.gridColumn12.FieldName = "ORDER_CD";
+            this.gridColumn12.Name = "gridColumn12";
+            this.gridColumn12.OptionsColumn.AllowEdit = false;
+            this.gridColumn12.OptionsColumn.AllowFocus = false;
+            // 
+            // gridColumn6
+            // 
+            this.gridColumn6.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn6.AppearanceCell.Options.UseFont = true;
+            this.gridColumn6.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn6.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn6.Caption = "COMP_CD";
+            this.gridColumn6.FieldName = "COMP_CD";
+            this.gridColumn6.Name = "gridColumn6";
+            this.gridColumn6.OptionsColumn.AllowEdit = false;
+            this.gridColumn6.OptionsColumn.AllowFocus = false;
+            // 
+            // gridColumn3
+            // 
+            this.gridColumn3.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn3.AppearanceCell.Options.UseFont = true;
+            this.gridColumn3.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
+            this.gridColumn3.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn3.Caption = "로트통제번호";
+            this.gridColumn3.FieldName = "notes";
+            this.gridColumn3.Name = "gridColumn3";
+            this.gridColumn3.OptionsColumn.AllowEdit = false;
+            this.gridColumn3.OptionsColumn.AllowFocus = false;
+            this.gridColumn3.Width = 200;
+            // 
+            // end
+            // 
+            this.end.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.end.AppearanceCell.Options.UseFont = true;
+            this.end.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.end.AppearanceHeader.Options.UseFont = true;
+            this.end.Caption = "투입완료";
+            this.end.Name = "end";
+            this.end.Width = 117;
+            // 
+            // gridColumn52
+            // 
+            this.gridColumn52.AppearanceCell.Font = new System.Drawing.Font("Tahoma", 15.75F, System.Drawing.FontStyle.Bold);
+            this.gridColumn52.AppearanceCell.Options.UseFont = true;
+            this.gridColumn52.AppearanceHeader.Font = new System.Drawing.Font("Tahoma", 20.25F, System.Drawing.FontStyle.Bold);
+            this.gridColumn52.AppearanceHeader.Options.UseFont = true;
+            this.gridColumn52.Caption = "작업장";
+            this.gridColumn52.Name = "gridColumn52";
+            this.gridColumn52.Visible = true;
+            this.gridColumn52.VisibleIndex = 1;
+            this.gridColumn52.Width = 232;
+            // 
+            // UcWork
+            // 
+            this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.Controls.Add(this.splitContainer1);
+            this.Name = "UcWork";
+            this.Size = new System.Drawing.Size(1024, 550);
+            this.splitContainer1.Panel1.ResumeLayout(false);
+            this.splitContainer1.Panel2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
+            this.splitContainer1.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl_Manu)).EndInit();
+            this.panelControl_Manu.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl7)).EndInit();
+            this.panelControl7.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.barcode.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl6)).EndInit();
+            this.panelControl6.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_state.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl2)).EndInit();
+            this.panelControl2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_qty.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
+            this.panelControl1.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partnm.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl3)).EndInit();
+            this.panelControl3.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_partno.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl4)).EndInit();
+            this.panelControl4.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_lotno.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl5)).EndInit();
+            this.panelControl5.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.txt_workno.Properties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.panelControl36)).EndInit();
+            this.panelControl36.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.dateEdit_ORDER_DT.Properties)).EndInit();
+            this.tabControl1.ResumeLayout(false);
+            this.tabPage1.ResumeLayout(false);
+            this.splitContainer2.Panel1.ResumeLayout(false);
+            this.splitContainer2.Panel2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
+            this.splitContainer2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_P)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_P)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ORDER_UNIT_CD)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_ITEM_SPEC)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_ITEM_CD)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Mokh)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit_Detail)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox1)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_DataTime)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_PROC)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_WORKER)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit_END_DT)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit_RATIO)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit_MACH)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_B)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_B)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit1)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit1)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit2)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit2)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit3)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox2)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit1)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit3)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit4)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit1)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit2)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit5)).EndInit();
+            this.tabPage2.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_Main)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_Main)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit6)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit4)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit7)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit5)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit6)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox3)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit3)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit8)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit9)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit2)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit4)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit10)).EndInit();
+            this.tabPage3.ResumeLayout(false);
+            ((System.ComponentModel.ISupportInitialize)(this.gridControl_note)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.gridView_note)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit11)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit7)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit12)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit8)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemButtonEdit9)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemComboBox4)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit5)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit13)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit14)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3.CalendarTimeProperties)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemDateEdit3)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemTextEdit6)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.repositoryItemLookUpEdit15)).EndInit();
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.SplitContainer splitContainer1;
+        private DevExpress.XtraEditors.PanelControl panelControl_Manu;
+        private DevExpress.XtraEditors.PanelControl panelControl3;
+        private DevExpress.XtraEditors.TextEdit txt_partno;
+        private DevExpress.XtraEditors.LabelControl labelControl2;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_ReFresh;
+        private DevExpress.XtraEditors.PanelControl panelControl4;
+        private DevExpress.XtraEditors.TextEdit txt_lotno;
+        private DevExpress.XtraEditors.LabelControl labelControl3;
+        private DevExpress.XtraEditors.PanelControl panelControl5;
+        private DevExpress.XtraEditors.TextEdit txt_workno;
+        private DevExpress.XtraEditors.LabelControl labelControl4;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Work;
+        private DevExpress.XtraEditors.PanelControl panelControl36;
+        private DevExpress.XtraEditors.DateEdit dateEdit_ORDER_DT;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Next;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Pre;
+        private DevExpress.XtraEditors.LabelControl labelControl37;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_Search;
+        private DevExpress.XtraEditors.PanelControl panelControl1;
+        private DevExpress.XtraEditors.TextEdit txt_partnm;
+        private DevExpress.XtraEditors.LabelControl labelControl1;
+        private DevExpress.XtraEditors.PanelControl panelControl2;
+        private DevExpress.XtraEditors.TextEdit txt_qty;
+        private DevExpress.XtraEditors.LabelControl lable5;
+        private DevExpress.XtraEditors.PanelControl panelControl6;
+        private DevExpress.XtraEditors.TextEdit txt_state;
+        private DevExpress.XtraEditors.LabelControl labelControl6;
+        private System.Windows.Forms.TabControl tabControl1;
+        private System.Windows.Forms.TabPage tabPage1;
+        private System.Windows.Forms.TabPage tabPage2;
+        private System.Windows.Forms.SplitContainer splitContainer2;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn27;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn4;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn5;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn1;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn10;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn11;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn8;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn7;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn14;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn13;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn2;
+        private DevExpress.XtraEditors.PanelControl panelControl7;
+        private DevExpress.XtraEditors.LabelControl labelControl5;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn41;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn39;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn38;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn37;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn26;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn25;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn24;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn23;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn22;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn20;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn19;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn18;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn17;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn15;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn12;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn6;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn3;
+        private DevExpress.XtraGrid.Columns.GridColumn end;
+        private DevExpress.XtraGrid.GridControl gridControl_P;
+        private DevExpress.XtraGrid.Views.Grid.GridView gridView_P;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_ORDER_UNIT_CD;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit_ITEM_SPEC;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_ITEM_CD;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit_Mokh;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit_Detail;
+        private DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBox1;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit_DataTime;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_PROC;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_WORKER;
+        private DevExpress.XtraEditors.Repository.RepositoryItemDateEdit repositoryItemDateEdit_END_DT;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit_RATIO;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit_MACH;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn9;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn16;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn21;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn28;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn29;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn30;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn31;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn32;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn33;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn34;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn35;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn36;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn40;
+        private DevExpress.XtraGrid.GridControl gridControl_B;
+        private DevExpress.XtraGrid.Views.Grid.GridView gridView_B;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit1;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit1;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit2;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit2;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit3;
+        private DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBox2;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit1;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit3;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit4;
+        private DevExpress.XtraEditors.Repository.RepositoryItemDateEdit repositoryItemDateEdit1;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit2;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit5;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn42;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn43;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn44;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn45;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn46;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn47;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn48;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn49;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn50;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn51;
+        private DevExpress.XtraGrid.GridControl gridControl_Main;
+        private DevExpress.XtraGrid.Views.Grid.GridView gridView_Main;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit6;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit4;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit7;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit5;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit6;
+        private DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBox3;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit3;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit8;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit9;
+        private DevExpress.XtraEditors.Repository.RepositoryItemDateEdit repositoryItemDateEdit2;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit4;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit10;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn52;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn53;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn54;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn55;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn56;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn57;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn58;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn59;
+        private DevExpress.XtraEditors.TextEdit barcode;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn60;
+        private System.Windows.Forms.TabPage tabPage3;
+        private DevExpress.XtraGrid.GridControl gridControl_note;
+        private DevExpress.XtraGrid.Views.Grid.GridView gridView_note;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit11;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit7;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit12;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit8;
+        private DevExpress.XtraEditors.Repository.RepositoryItemButtonEdit repositoryItemButtonEdit9;
+        private DevExpress.XtraEditors.Repository.RepositoryItemComboBox repositoryItemComboBox4;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit5;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit13;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit14;
+        private DevExpress.XtraEditors.Repository.RepositoryItemDateEdit repositoryItemDateEdit3;
+        private DevExpress.XtraEditors.Repository.RepositoryItemTextEdit repositoryItemTextEdit6;
+        private DevExpress.XtraEditors.Repository.RepositoryItemLookUpEdit repositoryItemLookUpEdit15;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn61;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn62;
+        private DevExpress.XtraGrid.Columns.GridColumn gridColumn63;
+    }
+}(No newline at end of file)
 
KHSCALE_TP/UcWork.cs (added)
+++ KHSCALE_TP/UcWork.cs
@@ -0,0 +1,429 @@
+using ClientLib;
+using ClientLib.CommonService2;
+using DevExpress.XtraEditors;
+using PublicLib;
+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.Runtime.InteropServices;
+using System.Data.SqlClient;
+
+namespace KHSCALE_TP
+{
+    public partial class UcWork : UserControl
+    {
+        [DllImport("user32.dll")]
+        static extern uint keybd_event(byte bVk, byte bScan, int dwFlags, int dwExtraInfo);
+
+        string BarData = "";
+
+        U3Database u3Database = new U3Database();
+        U3Config u3Config = new U3Config();
+
+        private string m_ORDER_CD = "";
+        private string m_ORDER_G_CD = "";
+
+        public UcWork()
+        {
+            InitializeComponent();
+            u3Database.SetSqlServer();
+
+            //DataView grpMach = new DataView(GetMachTable());
+            //UtilClass.SetLookup(this.lookUpEdit_Mach, grpMach, "MACH_CD", "MACH_NM", true, true);
+
+            dateEdit_ORDER_DT.DateTime = DateTime.Now;
+
+            //searchProc();
+        }
+
+        protected override void OnLoad(EventArgs e)
+        {
+            base.OnLoad(e);
+
+            OnInitButtonClicked();
+
+
+        }
+
+        public string ReceivedData = "";
+        public string orderno = "";
+        public string lot = "";
+
+        public void searchProc()
+        {
+            try
+            {
+                this.Cursor = Cursors.WaitCursor;
+
+                gridControl_Main.DataSource = null;
+
+                string sDate = this.dateEdit_ORDER_DT.DateTime.ToString("yyyy-MM-dd");
+
+                DataTable resultData = null;
+
+                gridControl_Main.DataSource = resultData;
+
+                this.Cursor = Cursors.Arrow;
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                MessageBox.Show(ex.Message);
+            }
+        }
+
+        public void barcode_search(string BarData)
+        {
+            try
+            {
+
+                string[] arValues = barcode.Text.Trim().Split(' ');
+                //if (arValues.Length != 4 && arValues[0] != "P")
+                //    throw new Exception("정상적인 바코드가 아닙니다");
+
+                if (arValues.Length == 2) //작업지시바코드일경우
+                {
+                    DataTable dt = null;
+
+                    dt = u3Database.OpenSQL("select * from T_KH_SAL_WORK_D a where a.ORDER_NO = '" + arValues[0].ToString().Substring(1) + "' and a.PLOT_NO = '" + arValues[1].ToString() + "'");
+
+                    // 기존에 저장된 데이터가 있는지 확인하여 있으면 기존에 저장된 데이터를 불러옴(자재만)
+                    if (dt.Rows.Count == 0)
+                    {
+                        gridControl_P.DataSource = null;
+                        gridControl_B.DataSource = null;
+                        gridControl_Main.DataSource = null;
+
+                        OnInitButtonClicked();
+
+                        txt_workno.Text = arValues[0].Substring(1);
+                        txt_lotno.Text = arValues[1];
+
+                        DataTable dt1 = null;
+
+                        //dt1 = u3Database.OpenSQL("select a.resource_no, a.resource_name, a.order_qty, a.demand_status_desc from T_KH_SAL_ORDER a where a.order_no = '" + arValues[0].ToString().Substring(1) + "' and a.lot = '" + arValues[1].ToString() + "'");
+
+                        dt1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m101 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        txt_partno.Text = dt1.Rows[0]["resource_no"].ToString();
+                        txt_partnm.Text = dt1.Rows[0]["resource_name"].ToString();
+                        txt_qty.Text = dt1.Rows[0]["order_qty"].ToString();
+                        txt_state.Text = dt1.Rows[0]["demand_status_desc"].ToString();
+
+                        DataTable resultComp1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m103 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        gridControl_P.DataSource = resultComp1;
+
+                        DataTable resultComp2 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m102 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        gridControl_B.DataSource = resultComp2;
+
+                        DataTable resultComp3 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m104 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        gridControl_Main.DataSource = resultComp3;
+
+                        barcode.SelectAll();
+                    }
+                    else if (dt.Rows.Count != 0)
+                    {
+                        gridControl_P.DataSource = null;
+                        gridControl_B.DataSource = null;
+                        gridControl_Main.DataSource = null;
+
+                        OnInitButtonClicked();
+
+                        txt_workno.Text = arValues[0].Substring(1);
+                        txt_lotno.Text = arValues[1];
+
+                        DataTable dt1 = null;
+
+                        dt1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m101 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        txt_partno.Text = dt1.Rows[0]["resource_no"].ToString();
+                        txt_partnm.Text = dt1.Rows[0]["resource_name"].ToString();
+                        txt_qty.Text = dt1.Rows[0]["order_qty"].ToString();
+                        txt_state.Text = dt1.Rows[0]["demand_status_desc"].ToString();
+
+                        DataTable resultComp1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m103 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        gridControl_P.DataSource = resultComp1;
+
+                        DataTable resultComp2 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m102 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        gridControl_B.DataSource = resultComp2;
+
+                        DataTable resultComp3 = u3Database.OpenSQL("EXEC KHJPARTINDATA1 '" + txt_workno.Text + "', '" + txt_lotno.Text + "'");
+
+                        gridControl_Main.DataSource = resultComp3;
+
+                        DataTable resultComp4 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m105 '" + arValues[0].ToString().Substring(1) + "', '" + arValues[1].ToString() + "'");
+
+                        gridControl_note.DataSource = resultComp4;
+
+                        barcode.SelectAll();
+                    }
+
+                }
+            }
+            catch (Exception ex)
+            {
+                this.ActiveControl = barcode;
+                barcode.SelectAll();
+
+                XtraMessageBox.Show(ex.Message);
+            }
+
+        }
+
+        public void barcode_search2(string order_no, string lot)
+        {
+            try
+            {
+                DataTable dt = null;
+
+                dt = u3Database.OpenSQL("select * from T_KH_SAL_WORK_D a where a.ORDER_NO = '" + order_no + "' and a.PLOT_NO = '" + lot + "'");
+
+                if (dt.Rows.Count == 0)
+                {
+                    string a = order_no.Replace(" ", string.Empty);
+                    string b = lot.Replace(" ", string.Empty);
+
+                    //barcode.Text = a + " " + b;
+                    txt_workno.Text = a;
+                    txt_lotno.Text = b;
+
+                    DataTable dt1 = null;
+
+                    dt1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m101 '" + a + "', '" + b + "'");
+
+                    txt_partno.Text = dt1.Rows[0]["resource_no"].ToString();
+                    txt_partnm.Text = dt1.Rows[0]["resource_name"].ToString();
+                    txt_qty.Text = dt1.Rows[0]["order_qty"].ToString();
+                    txt_state.Text = dt1.Rows[0]["demand_status_desc"].ToString();
+
+                    DataTable resultComp1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m103 '" + a + "', '" + b + "'");
+
+                    gridControl_P.DataSource = resultComp1;
+
+                    DataTable resultComp2 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m102 '" + a + "', '" + b + "'");
+
+                    gridControl_B.DataSource = resultComp2;
+
+                    DataTable resultComp3 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m104 '" + a + "', '" + b + "'");
+
+                    gridControl_Main.DataSource = resultComp3;
+
+                    DataTable resultComp4 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m105 '" + a + "', '" + b + "'");
+
+                    gridControl_note.DataSource = resultComp4;
+
+                }
+                else if (dt.Rows.Count != 0)
+                {
+                    string a = order_no.Replace(" ", string.Empty);
+                    string b = lot.Replace(" ", string.Empty);
+
+                    //barcode.Text = a + " " + b;
+                    txt_workno.Text = a;
+                    txt_lotno.Text = b;
+
+                    DataTable dt1 = null;
+
+                    dt1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m101 '" + a + "', '" + b + "'");
+
+                    txt_partno.Text = dt1.Rows[0]["resource_no"].ToString();
+                    txt_partnm.Text = dt1.Rows[0]["resource_name"].ToString();
+                    txt_qty.Text = dt1.Rows[0]["order_qty"].ToString();
+                    txt_state.Text = dt1.Rows[0]["demand_status_desc"].ToString();
+
+                    DataTable resultComp1 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m103 '" + a + "', '" + b + "'");
+
+                    gridControl_P.DataSource = resultComp1;
+
+                    DataTable resultComp2 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m102 '" + a + "', '" + b + "'");
+
+                    gridControl_B.DataSource = resultComp2;
+
+                    //DataTable resultComp3 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m104 '" + a + "', '" + b + "'");
+                    DataTable resultComp3 = u3Database.OpenSQL("select a.process_key, a.note, a.resource_used, a.[description], b.QTY as in_qty, a.uom2 as uom, a.qty_total from T_KH_SAL_ORDER a left join T_KH_SAL_WORK_D b on a.order_no = b.ORDER_NO and a.lot = b.PLOT_NO and a.resource_used = b.JPART_NO where a.order_no = '" + order_no + "' and a.lot = '" + lot + "'");
+
+                    gridControl_Main.DataSource = resultComp3;
+
+                    DataTable resultComp4 = u3Database.OpenSQL("EXEC KHERP.KHC_MFG.dbo.usp_pop_khc_m105 '" + a + "', '" + b + "'");
+
+                    gridControl_note.DataSource = resultComp4;
+                }
+
+                
+
+            }
+            catch (Exception ex)
+            {
+                this.ActiveControl = barcode;
+                barcode.SelectAll();
+
+                XtraMessageBox.Show(ex.Message);
+            }
+
+        }
+
+        private DataTable GetMachTable()
+        {
+            try
+            {
+                this.Cursor = Cursors.WaitCursor;
+                return u3Database.OpenSQL("select 'N' as SEL_FIELD, a.MACH_CD, a.MACH_NO, a.MACH_NM from dbo.T_STD_MACH a where a.COMP_CD = '" + ConstClass._COMP_CD + "' and isnull(a.DEL_YN,'N') = 'N' order by a.MACH_CD");
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                XtraMessageBox.Show(ex.Message);
+            }
+            return null;
+        }
+
+        private void simpleButton_Pre_Click(object sender, EventArgs e)
+        {
+            try
+            {
+                dateEdit_ORDER_DT.DateTime = dateEdit_ORDER_DT.DateTime.AddDays(-1);
+                //searchProc();
+            }
+            catch (Exception ex)
+            {
+
+            }
+        }
+
+        private void simpleButton_Next_Click(object sender, EventArgs e)
+        {
+            try
+            {
+                dateEdit_ORDER_DT.DateTime = dateEdit_ORDER_DT.DateTime.AddDays(1);
+                //searchProc();
+            }
+            catch (Exception ex)
+            {
+
+            }
+        }
+
+        private void lookUpEdit_Mach_EditValueChanged(object sender, EventArgs e)
+        {
+            searchProc();
+        }
+
+        private void simpleButton_ReFresh_Click(object sender, EventArgs e)
+        {
+            OnInitButtonClicked();
+        }
+
+        private void OnInitButtonClicked()
+        {
+            txt_workno.Text = "";
+            txt_lotno.Text = "";
+            txt_partno.Text = "";
+            txt_partnm.Text = "";
+            txt_qty.Text = "";
+            txt_state.Text = "";
+
+            gridControl_P.DataSource = null;
+            gridControl_B.DataSource = null;
+            gridControl_Main.DataSource = null;
+
+        }
+
+        private void simpleButton_Search_Click(object sender, EventArgs e)
+        {
+
+            UcOrderList ol = new UcOrderList();
+
+            if (ol.ShowDialog() != DialogResult.Yes)
+            {
+                return;
+            }
+
+            this.barcode_search2(ol.orderno, ol.lot);
+            //txt_workno.Text = ol.orderno;
+            //txt_lotno.Text = ol.lot;
+        }
+
+        private void simpleButton_Work_Click(object sender, EventArgs e)
+        {
+
+            this.Cursor = Cursors.WaitCursor;
+
+            string sDate = this.dateEdit_ORDER_DT.DateTime.ToString("yyyy-MM-dd");
+
+            DataTable dt1 = null;
+
+            dt1 = u3Database.OpenSQL("select SUM(a.QTY) as QTY from T_KH_SAL_WORK_D a where a.ORDER_NO = '" + txt_workno.Text + "' and a.PLOT_NO = '" + txt_lotno.Text + "'");
+
+            try
+            {
+                u3Database.ExcuteSql("INSERT INTO T_KH_SAL_WORK_M (COMP_CD, ORDER_NO, LOT_NO, PART_NO, RECORD_DT, TRUE_QTY, RED_ID, REG_DT, UP_ID, UP_DT) VALUES (" +
+                " '" + ConstClass._COMP_CD + "'" +
+                " ,'" + txt_workno.Text + "'" +
+                " ,'" + txt_lotno.Text + "'" +
+                " ,'" + txt_partno.Text + "'" +
+                " ,'" + sDate + "'" +
+                " ,'" + dt1.Rows[0]["QTY"].ToString() + "'" +
+                " ,'" + ConstClass._USR_ID + "'" +
+                " ,'" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'" +
+                " ,'" + ConstClass._USR_ID + "'" +
+                " ,'" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") + "'" +
+                ")");
+
+                XtraMessageBox.Show("생산실적을 저장하였습니다.");
+
+                OnInitButtonClicked();
+            }
+            catch (Exception ex)
+            {
+                this.Cursor = Cursors.Arrow;
+                XtraMessageBox.Show(ex.Message);
+            }
+
+            this.Cursor = Cursors.Arrow;
+        }
+
+        private void barcode_KeyUp(object sender, KeyEventArgs e)
+        {
+            if (e.KeyCode == Keys.Enter)
+            {
+                e.SuppressKeyPress = true;
+
+                barcode_search(BarData);
+            }
+            else
+            {
+
+            }
+        }
+
+        private void gridControl_Main_DoubleClick(object sender, EventArgs e)
+        {
+            DataRow row = gridView_Main.GetFocusedDataRow();
+
+            if (row == null)
+            {
+                return;
+            }
+
+            UcInsertWork iw = new UcInsertWork();
+
+            iw.SetData(txt_workno.Text, txt_lotno.Text, txt_partno.Text);
+
+            if (iw.ShowDialog() == DialogResult.Yes)
+            {
+                searchProc();
+            }
+        }
+    }
+}
 
KHSCALE_TP/UcWork.resx (added)
+++ KHSCALE_TP/UcWork.resx
@@ -0,0 +1,323 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    The primary goals of this format is to allow a simple XML format 
+    that is mostly human readable. The generation and parsing of the 
+    various data types are done through the TypeConverter classes 
+    associated with the data types.
+    
+    Example:
+    
+    ... ado.net/XML headers & schema ...
+    <resheader name="resmimetype">text/microsoft-resx</resheader>
+    <resheader name="version">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </data>
+                
+    There are any number of "resheader" rows that contain simple 
+    name/value pairs.
+    
+    Each data row contains a name, and value. The row also contains a 
+    type or mimetype. Type corresponds to a .NET class that support 
+    text/value conversion through the TypeConverter architecture. 
+    Classes that don't support this are serialized and stored with the 
+    mimetype set.
+    
+    The mimetype is used for serialized objects, and tells the 
+    ResXResourceReader how to depersist the object. This is currently not 
+    extensible. For a given mimetype the value must be set accordingly:
+    
+    Note - application/x-microsoft.net.object.binary.base64 is the format 
+    that the ResXResourceWriter will generate, however the reader can 
+    read any of the formats listed below.
+    
+    mimetype: application/x-microsoft.net.object.binary.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
+            : and then encoded with base64 encoding.
+    
+    mimetype: application/x-microsoft.net.object.soap.base64
+    value   : The object must be serialized with 
+            : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
+            : and then encoded with base64 encoding.
+
+    mimetype: application/x-microsoft.net.object.bytearray.base64
+    value   : The object must be serialized into a byte array 
+            : using a System.ComponentModel.TypeConverter
+            : and then encoded with base64 encoding.
+    -->
+  <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
+    <xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="data">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+                <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="resheader">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
+              </xsd:sequence>
+              <xsd:attribute name="name" type="xsd:string" use="required" />
+            </xsd:complexType>
+          </xsd:element>
+        </xsd:choice>
+      </xsd:complexType>
+    </xsd:element>
+  </xsd:schema>
+  <resheader name="resmimetype">
+    <value>text/microsoft-resx</value>
+  </resheader>
+  <resheader name="version">
+    <value>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+  <data name="simpleButton_Search.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+</value>
+  </data>
+  <data name="simpleButton_ReFresh.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+</value>
+  </data>
+  <data name="simpleButton_Work.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+        /wBqkiSvivDUAgAAAABJRU5ErkJggg==
+</value>
+  </data>
+  <data name="simpleButton_Next.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+</value>
+  </data>
+  <data name="simpleButton_Pre.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+    <value>
+        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
+        AAAAAElFTkSuQmCC
+</value>
+  </data>
+</root>(No newline at end of file)
 
KHSCALE_TP/content-window_icon-icons.com_58037.ico (Binary) (added)
+++ KHSCALE_TP/content-window_icon-icons.com_58037.ico
Binary file is not shown
ModbusTest/DBConnectionSingleton.cs
--- ModbusTest/DBConnectionSingleton.cs
+++ ModbusTest/DBConnectionSingleton.cs
@@ -13,12 +13,18 @@
         private static DBConnectionSingleton DBConnection;
 
         // Connection 정보를 세팅한다.
+
+        // 한국하우톤 로컬 서버
         private string DBURL = "192.168.1.17,1433";
         private string DBPASSWORD = "signus1!";
-        //private string DBURL = "signus-smes.koreacentral.cloudapp.azure.com,14443";
-        //private string DBPASSWORD = "tlrmsjtm~1@3";
-        private string DBNAME = "U3SMES";
         private string DBID = "sa";
+
+        // 개발 서버
+        //private string DBURL = "signus-sf1.koreacentral.cloudapp.azure.com,14443";
+        //private string DBPASSWORD = "u3smes!";
+        //private string DBID = "smes";
+
+        private string DBNAME = "U3SMES";
         SqlConnection mConn;
 
         public struct DBValue
ModbusTest/FormModbus.Designer.cs
--- ModbusTest/FormModbus.Designer.cs
+++ ModbusTest/FormModbus.Designer.cs
@@ -93,6 +93,11 @@
             this.textBox1 = new System.Windows.Forms.TextBox();
             this.label21 = new System.Windows.Forms.Label();
             this.simpleButton8 = new DevExpress.XtraEditors.SimpleButton();
+            this.textBox_LENGTH_7 = new System.Windows.Forms.TextBox();
+            this.label22 = new System.Windows.Forms.Label();
+            this.textBox_Addr_7 = new System.Windows.Forms.TextBox();
+            this.label23 = new System.Windows.Forms.Label();
+            this.simpleButton_InputRegister_7 = new DevExpress.XtraEditors.SimpleButton();
             ((System.ComponentModel.ISupportInitialize)(this.toggleSwitch_Auto.Properties)).BeginInit();
             this.panel_DBConnect.SuspendLayout();
             ((System.ComponentModel.ISupportInitialize)(this.toggleSwitch_Log.Properties)).BeginInit();
@@ -368,7 +373,7 @@
             this.textBox_LENGTH_3.Name = "textBox_LENGTH_3";
             this.textBox_LENGTH_3.Size = new System.Drawing.Size(44, 21);
             this.textBox_LENGTH_3.TabIndex = 31;
-            this.textBox_LENGTH_3.Text = "19";
+            this.textBox_LENGTH_3.Text = "20";
             this.textBox_LENGTH_3.Visible = false;
             // 
             // label9
@@ -508,45 +513,50 @@
             // 
             // textBox_LENGTH_6
             // 
-            this.textBox_LENGTH_6.Location = new System.Drawing.Point(1085, 350);
+            this.textBox_LENGTH_6.Location = new System.Drawing.Point(1085, 321);
             this.textBox_LENGTH_6.Name = "textBox_LENGTH_6";
             this.textBox_LENGTH_6.Size = new System.Drawing.Size(44, 21);
             this.textBox_LENGTH_6.TabIndex = 61;
-            this.textBox_LENGTH_6.Text = "2";
+            this.textBox_LENGTH_6.Text = "10";
+            this.textBox_LENGTH_6.Visible = false;
             // 
             // label17
             // 
             this.label17.AutoSize = true;
-            this.label17.Location = new System.Drawing.Point(1030, 355);
+            this.label17.Location = new System.Drawing.Point(1030, 326);
             this.label17.Name = "label17";
             this.label17.Size = new System.Drawing.Size(54, 12);
             this.label17.TabIndex = 60;
             this.label17.Text = "LENGTH";
+            this.label17.Visible = false;
             // 
             // textBox_Addr_6
             // 
-            this.textBox_Addr_6.Location = new System.Drawing.Point(980, 350);
+            this.textBox_Addr_6.Location = new System.Drawing.Point(980, 321);
             this.textBox_Addr_6.Name = "textBox_Addr_6";
             this.textBox_Addr_6.Size = new System.Drawing.Size(44, 21);
             this.textBox_Addr_6.TabIndex = 59;
             this.textBox_Addr_6.Text = "620";
+            this.textBox_Addr_6.Visible = false;
             // 
             // label18
             // 
             this.label18.AutoSize = true;
-            this.label18.Location = new System.Drawing.Point(933, 355);
+            this.label18.Location = new System.Drawing.Point(933, 326);
             this.label18.Name = "label18";
             this.label18.Size = new System.Drawing.Size(37, 12);
             this.label18.TabIndex = 58;
             this.label18.Text = "ADDR";
+            this.label18.Visible = false;
             // 
             // simpleButton_InputRegister_6
             // 
-            this.simpleButton_InputRegister_6.Location = new System.Drawing.Point(1146, 343);
+            this.simpleButton_InputRegister_6.Location = new System.Drawing.Point(1146, 314);
             this.simpleButton_InputRegister_6.Name = "simpleButton_InputRegister_6";
             this.simpleButton_InputRegister_6.Size = new System.Drawing.Size(122, 32);
             this.simpleButton_InputRegister_6.TabIndex = 57;
             this.simpleButton_InputRegister_6.Text = "InputRegister";
+            this.simpleButton_InputRegister_6.Visible = false;
             this.simpleButton_InputRegister_6.Click += new System.EventHandler(this.simpleButton_InputRegister_6_Click);
             // 
             // textBox_LENGTH_2_2
@@ -686,10 +696,63 @@
             this.simpleButton8.Visible = false;
             this.simpleButton8.Click += new System.EventHandler(this.simpleButton8_Click_1);
             // 
+            // textBox_LENGTH_7
+            // 
+            this.textBox_LENGTH_7.Location = new System.Drawing.Point(1085, 359);
+            this.textBox_LENGTH_7.Name = "textBox_LENGTH_7";
+            this.textBox_LENGTH_7.Size = new System.Drawing.Size(44, 21);
+            this.textBox_LENGTH_7.TabIndex = 78;
+            this.textBox_LENGTH_7.Text = "2";
+            this.textBox_LENGTH_7.Visible = false;
+            // 
+            // label22
+            // 
+            this.label22.AutoSize = true;
+            this.label22.Location = new System.Drawing.Point(1030, 364);
+            this.label22.Name = "label22";
+            this.label22.Size = new System.Drawing.Size(54, 12);
+            this.label22.TabIndex = 77;
+            this.label22.Text = "LENGTH";
+            this.label22.Visible = false;
+            // 
+            // textBox_Addr_7
+            // 
+            this.textBox_Addr_7.Location = new System.Drawing.Point(980, 359);
+            this.textBox_Addr_7.Name = "textBox_Addr_7";
+            this.textBox_Addr_7.Size = new System.Drawing.Size(44, 21);
+            this.textBox_Addr_7.TabIndex = 76;
+            this.textBox_Addr_7.Text = "490";
+            this.textBox_Addr_7.Visible = false;
+            // 
+            // label23
+            // 
+            this.label23.AutoSize = true;
+            this.label23.Location = new System.Drawing.Point(933, 364);
+            this.label23.Name = "label23";
+            this.label23.Size = new System.Drawing.Size(37, 12);
+            this.label23.TabIndex = 75;
+            this.label23.Text = "ADDR";
+            this.label23.Visible = false;
+            // 
+            // simpleButton_InputRegister_7
+            // 
+            this.simpleButton_InputRegister_7.Location = new System.Drawing.Point(1146, 352);
+            this.simpleButton_InputRegister_7.Name = "simpleButton_InputRegister_7";
+            this.simpleButton_InputRegister_7.Size = new System.Drawing.Size(122, 32);
+            this.simpleButton_InputRegister_7.TabIndex = 74;
+            this.simpleButton_InputRegister_7.Text = "InputRegister";
+            this.simpleButton_InputRegister_7.Visible = false;
+            this.simpleButton_InputRegister_7.Click += new System.EventHandler(this.simpleButton_InputRegister_7_Click);
+            // 
             // FormModbus
             // 
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
-            this.ClientSize = new System.Drawing.Size(932, 450);
+            this.ClientSize = new System.Drawing.Size(1291, 450);
+            this.Controls.Add(this.textBox_LENGTH_7);
+            this.Controls.Add(this.label22);
+            this.Controls.Add(this.textBox_Addr_7);
+            this.Controls.Add(this.label23);
+            this.Controls.Add(this.simpleButton_InputRegister_7);
             this.Controls.Add(this.simpleButton8);
             this.Controls.Add(this.textBox1);
             this.Controls.Add(this.label21);
@@ -750,7 +813,6 @@
             this.Controls.Add(this.textBox_State);
             this.Name = "FormModbus";
             this.Text = "SignusSensorUploader";
-            this.WindowState = System.Windows.Forms.FormWindowState.Minimized;
             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
             this.Load += new System.EventHandler(this.FormModbus_Load);
             ((System.ComponentModel.ISupportInitialize)(this.toggleSwitch_Auto.Properties)).EndInit();
@@ -826,6 +888,11 @@
         private System.Windows.Forms.TextBox textBox1;
         private System.Windows.Forms.Label label21;
         private DevExpress.XtraEditors.SimpleButton simpleButton8;
+        private System.Windows.Forms.TextBox textBox_LENGTH_7;
+        private System.Windows.Forms.Label label22;
+        private System.Windows.Forms.TextBox textBox_Addr_7;
+        private System.Windows.Forms.Label label23;
+        private DevExpress.XtraEditors.SimpleButton simpleButton_InputRegister_7;
     }
 }
 
ModbusTest/FormModbus.cs
--- ModbusTest/FormModbus.cs
+++ ModbusTest/FormModbus.cs
@@ -301,13 +301,10 @@
             }
 
             //sw.Stop();
-
             //textBox_State.Text += "Timer Check 4 : " + sw.ElapsedMilliseconds.ToString() + "\r\n";
-
 
             textBox_State.Select(textBox_State.Text.Length, 0);
             textBox_State.ScrollToCaret();
-
         }
 
         public int RunState = 0;
@@ -318,6 +315,7 @@
             switch(RunState)
             {
                 case 0:
+                    U3Util.ErrorLog(textBox_State.Text);
                     textBox_State.Text = "";
                     lst = new List<string[,]>();
                     break;
@@ -350,6 +348,10 @@
                     if (array != null) if (array.Length > 1) lst.Add(array);
                     break;
                 case 8:
+                    array = DataReadInputToBit(textBox_Addr_7.Text, textBox_LENGTH_7.Text);
+                    if (array != null) if (array.Length > 1) lst.Add(array);
+                    break;
+                case 9:
                     DB_Input(lst);
                     break;
             }
@@ -738,12 +740,6 @@
             return result;
         }
 
-        public void ByteToBit(byte b)
-        {
-
-
-        }
-
         public string[,] DataReadInputTouUint64(string Addr, string Length)
         {
             //Stopwatch sw = new Stopwatch();
@@ -912,6 +908,13 @@
             DB_Input(Data);
         }
 
+
+        private void simpleButton_InputRegister_7_Click(object sender, EventArgs e)
+        {
+            string[,] Data = DataReadInputToBit(textBox_Addr_7.Text, textBox_LENGTH_7.Text);
+            DB_Input(Data);
+        }
+
         private void simpleButton_InputRegister_2_2_Click(object sender, EventArgs e)
         {
             textBox_State.Text = "";
ModbusTest/FormModbus.resx
--- ModbusTest/FormModbus.resx
+++ ModbusTest/FormModbus.resx
@@ -129,4 +129,7 @@
   <metadata name="timer_Log.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
     <value>424, 17</value>
   </metadata>
+  <metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>57</value>
+  </metadata>
 </root>
(No newline at end of file)
ModbusTest/KHModbus.csproj
--- ModbusTest/KHModbus.csproj
+++ ModbusTest/KHModbus.csproj
@@ -68,6 +68,7 @@
     <Compile Include="Program.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="SerialConnectionSingleton.cs" />
+    <Compile Include="U3Util.cs" />
     <EmbeddedResource Include="FormModbus.resx">
       <DependentUpon>FormModbus.cs</DependentUpon>
     </EmbeddedResource>
ModbusTest/Program.cs
--- ModbusTest/Program.cs
+++ ModbusTest/Program.cs
@@ -19,7 +19,37 @@
 
             DBConnectionSingleton.Instance();
 
+            //test();
+
             Application.Run(new FormModbus());
         }
+
+        static void test()
+        {
+            int Addr = 620;
+            int[] Data = new int[] { 65535, 65534, 3, 4, 5, 6, 7, 8, 9, 10 };
+            string[,] result = new string[Data.Length * 16, 2];
+
+            int aa = 0;
+            string Result = "";
+            for (int i = 0; i < Data.Length; i++)
+            {
+                byte[] a = BitConverter.GetBytes(Convert.ToUInt16(Data[i]));
+                for (int j = 0; j < a.Length; j++)
+                {
+                    string s = Convert.ToString(a[j], 2).PadLeft(8, '0');
+                    char[] sa = s.ToCharArray();
+                    Array.Reverse(sa);
+
+                    for (int r = 0; r < sa.Length; r++)
+                    {
+                        result[((i * a.Length * 8) + (j * 8)) + r, 0] = (Convert.ToInt32(Addr) + i).ToString() + "." + ((j * 8) + r).ToString();
+                        result[((i * a.Length * 8) + (j * 8)) + r, 1] = sa[r].ToString();
+                    }
+
+                    Result += new string(sa);
+                }
+            }
+        }
     }
 }
 
ModbusTest/U3Util.cs (added)
+++ ModbusTest/U3Util.cs
@@ -0,0 +1,210 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+using System.IO;
+using System.Drawing;
+using System.Drawing.Imaging;
+using System.Drawing.Drawing2D;
+
+namespace KHModbus
+{
+    public class U3Util
+    {
+        static public Random rnd = new Random(new System.DateTime().Millisecond);
+
+        static public string GetErrorLogFile(bool bFullPath)
+        {
+            string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+            string AppName = Application.ExecutablePath.Substring(Application.ExecutablePath.LastIndexOf("\\") + 1);
+            string AppTitle = AppName.Substring(0, AppName.LastIndexOf("."));
+
+            if (bFullPath)
+                return AppPath + "\\" + AppTitle + "Error.txt";
+            else
+                return AppTitle + "Error.txt";
+        }
+
+        static public string GetEventLogFile(bool bFullPath)
+        {
+            string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+            string AppName = Application.ExecutablePath.Substring(Application.ExecutablePath.LastIndexOf("\\") + 1);
+            string AppTitle = AppName.Substring(0, AppName.LastIndexOf("."));
+
+            if (bFullPath)
+                return AppPath + "\\" + AppTitle + "Event.txt";
+            else
+                return AppTitle + "Event.txt";
+        }
+
+        static public string GetImagePath()
+        {
+            string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+            return AppPath + "\\" + "Images";
+        }
+
+        public static Bitmap ResizeImage(Image image, int width, int height)
+        {
+            var destRect = new Rectangle(0, 0, width, height);
+            var destImage = new Bitmap(width, height);
+
+            destImage.SetResolution(image.HorizontalResolution, image.VerticalResolution);
+
+            using (var graphics = Graphics.FromImage(destImage))
+            {
+                graphics.CompositingMode = CompositingMode.SourceCopy;
+                graphics.CompositingQuality = CompositingQuality.HighQuality;
+                graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
+                graphics.SmoothingMode = SmoothingMode.HighQuality;
+                graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;
+
+                using (var wrapMode = new ImageAttributes())
+                {
+                    wrapMode.SetWrapMode(WrapMode.TileFlipXY);
+                    graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, GraphicsUnit.Pixel, wrapMode);
+                }
+            }
+            return destImage;
+        }
+
+        public static void ErrorLog(string strLog)
+        {
+            try
+            {
+                FileLog(strLog, GetErrorLogFile(false));
+            }
+            catch
+            {
+            }
+        }
+
+        public static void EventLog(string strLog)
+        {
+            try
+            {
+                FileLog(strLog, GetEventLogFile(false));
+            }
+            catch
+            {
+            }
+        }
+
+        public static void FileLog(string strLog, string strFileName)
+        {
+            string str = "";
+
+            DateTime t = DateTime.Now;
+            str = t.ToString("(yyyy-MM-dd HH:mm:ss.fff) ");
+            str += strLog;
+
+            try
+            {
+                string AppPath = Application.ExecutablePath.Substring(0, Application.ExecutablePath.LastIndexOf("\\"));
+                string strLogFile = AppPath + "\\" + strFileName;
+                FileBackup(strLogFile);
+                FileWrite(strLogFile, str);
+            }
+            catch (Exception ex)
+            {
+                throw new Exception("FileLog->:" + ex.Message);
+            }
+        }
+
+        public static void FileBackup(string strLogFile)
+        {
+            if (File.Exists(strLogFile))
+            {
+                try
+                {
+                    FileInfo f = new FileInfo(strLogFile);
+                    if (f.Length >= (2 * 1024 * 1024))
+                    {
+                        System.IO.File.Delete(strLogFile + ".bak");
+                        f.MoveTo(strLogFile + ".bak");
+                    }
+                }
+                catch (Exception ex)
+                {
+                    throw new Exception("FileBackup->:" + ex.Message);
+                }
+            }
+        }
+
+        public static void FileWrite(string strLogFile, string str)
+        {
+            try
+            {
+                FileStream fs = new FileStream(strLogFile, FileMode.OpenOrCreate, FileAccess.Write, FileShare.None);
+                fs.Seek(0, SeekOrigin.End);
+                StreamWriter swFromFile = new StreamWriter(fs);
+                swFromFile.WriteLine(str);
+                swFromFile.Close();
+                fs.Close();
+            }
+            catch (Exception ex)
+            {
+                ErrorLog("FileWrite->:" + ex.Message);
+            }
+        }
+
+        public static string FileRead(string strFileName)
+        {
+            if (System.IO.File.Exists(strFileName) == false) return "";
+
+            string result = "";
+            try
+            {
+                FileStream fs = new FileStream(strFileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
+                fs.Seek(0, SeekOrigin.Begin);
+                StreamReader srFile = new StreamReader(fs, Encoding.Default, true);
+                result = srFile.ReadToEnd();
+                srFile.Close();
+                fs.Close();
+            }
+            catch (Exception ex)
+            {
+                ErrorLog("FileRead->:" + ex.Message);
+            }
+            return result;
+        }
+
+        public static bool GetBit(byte b, int bitNumber)
+        {
+            return (b & (1 << bitNumber)) != 0;
+        }
+
+        public static bool GetBit(short s, int bitNumber)
+        {
+            return (s & (1 << bitNumber)) != 0;
+        }
+
+        static public DateTime FromUnixTime(long unixTime)
+        {
+            var epoch = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
+            return epoch.AddSeconds(unixTime);
+        }
+
+        static public Int32 ToUnixTime(DateTime dt)
+        {
+            return (Int32)(dt.Subtract(new DateTime(1970, 1, 1, 0, 0, 0))).TotalSeconds;
+        }
+
+        static public void DeleteAllFile(string strPath)
+        {
+            try
+            {
+                System.IO.DirectoryInfo di = new System.IO.DirectoryInfo(strPath);
+                FileInfo[] lst = di.GetFiles();
+                foreach (FileInfo fi in lst)
+                {
+                    System.IO.File.Delete(fi.FullName);
+                }
+            }
+            catch
+            {
+            }
+        }
+    }
+}
Add a comment
List