diff --git a/OrderPackingProcessor/countForm.Designer.vb b/OrderPackingProcessor/countForm.Designer.vb index f480d1f..6fbfc0c 100644 --- a/OrderPackingProcessor/countForm.Designer.vb +++ b/OrderPackingProcessor/countForm.Designer.vb @@ -353,6 +353,9 @@ Partial Class countForm Me.pnMask5 = New System.Windows.Forms.Panel() Me.txbMask5 = New System.Windows.Forms.TextBox() Me.lbMask5 = New System.Windows.Forms.Label() + Me.pnOptimum = New System.Windows.Forms.Panel() + Me.txbOptimum = New System.Windows.Forms.TextBox() + Me.lbOptimum = New System.Windows.Forms.Label() Me.gbCount.SuspendLayout() Me.gbCase.SuspendLayout() Me.gbAlto.SuspendLayout() @@ -472,6 +475,7 @@ Partial Class countForm Me.pnHair.SuspendLayout() Me.pnMask10.SuspendLayout() Me.pnMask5.SuspendLayout() + Me.pnOptimum.SuspendLayout() Me.SuspendLayout() ' 'Label1 @@ -1704,6 +1708,7 @@ Partial Class countForm ' 'gbCDual ' + Me.gbCDual.Controls.Add(Me.pnOptimum) Me.gbCDual.Controls.Add(Me.pnMaximumAlpha) Me.gbCDual.Controls.Add(Me.pneffectV3) Me.gbCDual.Controls.Add(Me.pneffect) @@ -3819,6 +3824,37 @@ Partial Class countForm Me.lbMask5.TabIndex = 0 Me.lbMask5.Text = "아쿠아 마스크" ' + 'pnOptimum + ' + Me.pnOptimum.Controls.Add(Me.txbOptimum) + Me.pnOptimum.Controls.Add(Me.lbOptimum) + Me.pnOptimum.Location = New System.Drawing.Point(171, 462) + Me.pnOptimum.Name = "pnOptimum" + Me.pnOptimum.Size = New System.Drawing.Size(165, 40) + Me.pnOptimum.TabIndex = 11 + ' + 'txbOptimum + ' + Me.txbOptimum.BackColor = System.Drawing.SystemColors.Window + Me.txbOptimum.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.txbOptimum.Location = New System.Drawing.Point(74, 5) + Me.txbOptimum.MaxLength = 10 + Me.txbOptimum.Name = "txbOptimum" + Me.txbOptimum.ReadOnly = True + Me.txbOptimum.Size = New System.Drawing.Size(77, 32) + Me.txbOptimum.TabIndex = 1 + Me.txbOptimum.TextAlign = System.Windows.Forms.HorizontalAlignment.Center + ' + 'lbOptimum + ' + Me.lbOptimum.AutoSize = True + Me.lbOptimum.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.lbOptimum.Location = New System.Drawing.Point(4, 7) + Me.lbOptimum.Name = "lbOptimum" + Me.lbOptimum.Size = New System.Drawing.Size(93, 24) + Me.lbOptimum.TabIndex = 0 + Me.lbOptimum.Text = "Optimum" + ' 'countForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) @@ -4062,6 +4098,8 @@ Partial Class countForm Me.pnMask10.PerformLayout() Me.pnMask5.ResumeLayout(False) Me.pnMask5.PerformLayout() + Me.pnOptimum.ResumeLayout(False) + Me.pnOptimum.PerformLayout() Me.ResumeLayout(False) Me.PerformLayout() @@ -4396,4 +4434,7 @@ Partial Class countForm Friend WithEvents pnkeyringSally As Panel Friend WithEvents txbkeyringSally As TextBox Friend WithEvents lbkeyringSally As Label + Friend WithEvents pnOptimum As Panel + Friend WithEvents txbOptimum As TextBox + Friend WithEvents lbOptimum As Label End Class diff --git a/OrderPackingProcessor/countForm.vb b/OrderPackingProcessor/countForm.vb index 68d10ae..4ff97c3 100644 --- a/OrderPackingProcessor/countForm.vb +++ b/OrderPackingProcessor/countForm.vb @@ -9,105 +9,106 @@ Public Class countForm End Sub Private Sub countSetting() - txbProSet.Text = prodComCount(prodDB.proset) - txbLuxSet.Text = prodComCount(prodDB.luxset) - txbProFace.Text = prodComCount(prodDB.proface) - txbLuxFace.Text = prodComCount(prodDB.luxface) - txbProEye.Text = prodComCount(prodDB.proeye) - txbLuxEye.Text = prodComCount(prodDB.luxeye) - txbProBody.Text = prodComCount(prodDB.probody) - txbLuxBody.Text = prodComCount(prodDB.luxbody) - txbMaximum.Text = prodComCount(prodDB.maximum) - txbAlphaSet.Text = prodComCount(prodDB.alphaSet) - txbAlphaFace.Text = prodComCount(prodDB.alphaFace) - txbAlphaEye.Text = prodComCount(prodDB.alphaEye) - txbAlphaBody.Text = prodComCount(prodDB.alphaBody) - txbAlto.Text = prodComCount(prodDB.alto) - txbeffect.Text = prodComCount(prodDB.effect) - txbeffectV3.Text = prodComCount(prodDB.effectV3) - txbMaximumAlpha.Text = prodComCount(prodDB.maximumAlpha) + txbProSet.Text = product_packing_cnt_list(prodDB.proset).com_count + txbLuxSet.Text = product_packing_cnt_list(prodDB.luxset).com_count + txbProFace.Text = product_packing_cnt_list(prodDB.proface).com_count + txbLuxFace.Text = product_packing_cnt_list(prodDB.luxface).com_count + txbProEye.Text = product_packing_cnt_list(prodDB.proeye).com_count + txbLuxEye.Text = product_packing_cnt_list(prodDB.luxeye).com_count + txbProBody.Text = product_packing_cnt_list(prodDB.probody).com_count + txbLuxBody.Text = product_packing_cnt_list(prodDB.luxbody).com_count + txbMaximum.Text = product_packing_cnt_list(prodDB.maximum).com_count + txbAlphaSet.Text = product_packing_cnt_list(prodDB.alphaSet).com_count + txbAlphaFace.Text = product_packing_cnt_list(prodDB.alphaFace).com_count + txbAlphaEye.Text = product_packing_cnt_list(prodDB.alphaEye).com_count + txbAlphaBody.Text = product_packing_cnt_list(prodDB.alphaBody).com_count + txbAlto.Text = product_packing_cnt_list(prodDB.alto).com_count + txbeffect.Text = product_packing_cnt_list(prodDB.effect).com_count + txbeffectV3.Text = product_packing_cnt_list(prodDB.effectV3).com_count + txbMaximumAlpha.Text = product_packing_cnt_list(prodDB.maximumAlpha).com_count + txbOptimum.Text = product_packing_cnt_list(prodDB.optimum).com_count '신규제품추가 : 추가한 품목 수량 출력하도록 추가 - txbMask5.Text = comComCount(comDB.mask5) - txbMask10.Text = comComCount(comDB.mask10) - txbHair.Text = comComCount(comDB.hairband) - txbGel.Text = comComCount(comDB.gel) - txbMiniGel.Text = comComCount(comDB.minigel) - txbAmp.Text = comComCount(comDB.ample) - txbCream.Text = comComCount(comDB.cream) - txbUmb.Text = comComCount(comDB.umb) - txbFen.Text = comComCount(comDB.fen) - txbCharge.Text = comComCount(comDB.charger) - txbCable.Text = comComCount(comDB.cable) - txbToner.Text = comComCount(comDB.toner) - txbSoothing.Text = comComCount(comDB.soothing) - txbDust.Text = comComCount(comDB.dustbag) - txbBag.Text = comComCount(comDB.bag) - txbCos.Text = comComCount(comDB.cosbag) - txbbox1.Text = comComCount(comDB.car1) - txbbox2.Text = comComCount(comDB.car2) - txbbox3.Text = comComCount(comDB.car3) - txbbox4.Text = comComCount(comDB.car4) - txbbox5.Text = comComCount(comDB.car5) - txbbox6.Text = comComCount(comDB.car6) - txbProBlack.Text = comComCount(comDB.problack) - txbProBeige.Text = comComCount(comDB.probeige) - txbProRed.Text = comComCount(comDB.prored) - txbProPink.Text = comComCount(comDB.propink) - txbMaxBlack.Text = comComCount(comDB.maxblack) - txbMaxApr.Text = comComCount(comDB.maxapr) - txbMaxMint.Text = comComCount(comDB.maxmint) - txbMaxBeige.Text = comComCount(comDB.maxbeige) - txbMaxPurple.Text = comComCount(comDB.maxPurple) - txbSnakeBlack.Text = comComCount(comDB.proSnakeBlack) - txbKolla.Text = comComCount(comDB.kollagen) - txbKollaSet.Text = comComCount(comDB.kollagenset) - txbKolla_Pone.Text = comComCount(comDB.kollagen_P) - txbKolla_Pset.Text = comComCount(comDB.kollagenset_P) - txbCW.Text = comComCount(comDB.cleansingWater) - txbtonerPad.Text = comComCount(comDB.tonerPad) - txbMaxSafBK.Text = comComCount(comDB.maxSaffianoBK) - txbHolo1.Text = comComCount(comDB.hologram1) - txbHolo3.Text = comComCount(comDB.hologram3) - txbHolo5.Text = comComCount(comDB.hologram5) - txbMaxSafPp.Text = comComCount(comDB.caseSaffianoPp) - txbMaxYellow.Text = comComCount(comDB.maxYellow) - txbKolPe1.Text = comComCount(comDB.Kollagen_Pe1) - txbKolPe3.Text = comComCount(comDB.Kollagen_Pe3) - txbKolPe5.Text = comComCount(comDB.Kollagen_Pe5) - txbATCircle.Text = comComCount(comDB.ATCircleCase) - txbAPSquare.Text = comComCount(comDB.APSquareCase) - txbMaxPeach.Text = comComCount(comDB.maxPeach) - txbMaSoo.Text = comComCount(comDB.massageSoothing) - txbMaxSMint.Text = comComCount(comDB.maxSMint) - txbMeshPouch.Text = comComCount(comDB.meshpouch) - txbFirming.Text = comComCount(comDB.firmingAmp) - txbHyaluronic.Text = comComCount(comDB.hyaluronicAmp) - txbnightshot.Text = comComCount(comDB.nightshot) - txbmorningshot.Text = comComCount(comDB.morningshot) - txbcasemaxwoodi.Text = comComCount(comDB.casemaxwoodi) - txbelicolltoner.Text = comComCount(comDB.Elicolltoner) - txbelicollamp.Text = comComCount(comDB.Elicollamp) - txbelicollcream.Text = comComCount(comDB.Elicollcream) - txbelihyaltoner.Text = comComCount(comDB.Elihyaltoner) - txbelihyalamp.Text = comComCount(comDB.Elihyalamp) - txbelihyalcream.Text = comComCount(comDB.Elihyalcream) - txbdayshot.Text = comComCount(comDB.Dayshot) - txbBeautyshopbag.Text = comComCount(comDB.Beautyshopbag) - txbgummy.Text = comComCount(comDB.Gummy) - txbstickjelly.Text = comComCount(comDB.Stickjelly) - txbnewyearbag.Text = comComCount(comDB.Newyearbag) - txbemsbelt.Text = comComCount(comDB.Emsbelt) - txbbeltbag.Text = comComCount(comDB.Beltbag) - txbDayshot2.Text = comComCount(comDB.Dayshot2) - txbelixir.Text = comComCount(comDB.Elixir) - txbbox8.Text = comComCount(comDB.car8) - txbkeyring.Text = comComCount(comDB.keyring) - txbdoenaliftingtoner.Text = comComCount(comDB.DoenaLiftingToner) - txbdoenaliftingamp.Text = comComCount(comDB.DoenaLiftingAmp) - txbdoenaliftingcream.Text = comComCount(comDB.DoenaLiftingCream) - pnfirmingcollagengel.Text = comComCount(comDB.FirmingCollagenGel) - txbkeyringSally.Text = comComCount(comDB.keyringSally) + txbMask5.Text = component_packing_cnt_list(comDB.mask5).com_count + txbMask10.Text = component_packing_cnt_list(comDB.mask10).com_count + txbHair.Text = component_packing_cnt_list(comDB.hairband).com_count + txbGel.Text = component_packing_cnt_list(comDB.gel).com_count + txbMiniGel.Text = component_packing_cnt_list(comDB.minigel).com_count + txbAmp.Text = component_packing_cnt_list(comDB.ample).com_count + txbCream.Text = component_packing_cnt_list(comDB.cream).com_count + txbUmb.Text = component_packing_cnt_list(comDB.umb).com_count + txbFen.Text = component_packing_cnt_list(comDB.fen).com_count + txbCharge.Text = component_packing_cnt_list(comDB.charger).com_count + txbCable.Text = component_packing_cnt_list(comDB.cable).com_count + txbToner.Text = component_packing_cnt_list(comDB.toner).com_count + txbSoothing.Text = component_packing_cnt_list(comDB.soothing).com_count + txbDust.Text = component_packing_cnt_list(comDB.dustbag).com_count + txbBag.Text = component_packing_cnt_list(comDB.bag).com_count + txbCos.Text = component_packing_cnt_list(comDB.cosbag).com_count + txbbox1.Text = component_packing_cnt_list(comDB.car1).com_count + txbbox2.Text = component_packing_cnt_list(comDB.car2).com_count + txbbox3.Text = component_packing_cnt_list(comDB.car3).com_count + txbbox4.Text = component_packing_cnt_list(comDB.car4).com_count + txbbox5.Text = component_packing_cnt_list(comDB.car5).com_count + txbbox6.Text = component_packing_cnt_list(comDB.car6).com_count + txbProBlack.Text = component_packing_cnt_list(comDB.problack).com_count + txbProBeige.Text = component_packing_cnt_list(comDB.probeige).com_count + txbProRed.Text = component_packing_cnt_list(comDB.prored).com_count + txbProPink.Text = component_packing_cnt_list(comDB.propink).com_count + txbMaxBlack.Text = component_packing_cnt_list(comDB.maxblack).com_count + txbMaxApr.Text = component_packing_cnt_list(comDB.maxapr).com_count + txbMaxMint.Text = component_packing_cnt_list(comDB.maxmint).com_count + txbMaxBeige.Text = component_packing_cnt_list(comDB.maxbeige).com_count + txbMaxPurple.Text = component_packing_cnt_list(comDB.maxPurple).com_count + txbSnakeBlack.Text = component_packing_cnt_list(comDB.proSnakeBlack).com_count + txbKolla.Text = component_packing_cnt_list(comDB.kollagen).com_count + txbKollaSet.Text = component_packing_cnt_list(comDB.kollagenset).com_count + txbKolla_Pone.Text = component_packing_cnt_list(comDB.kollagen_P).com_count + txbKolla_Pset.Text = component_packing_cnt_list(comDB.kollagenset_P).com_count + txbCW.Text = component_packing_cnt_list(comDB.cleansingWater).com_count + txbtonerPad.Text = component_packing_cnt_list(comDB.tonerPad).com_count + txbMaxSafBK.Text = component_packing_cnt_list(comDB.maxSaffianoBK).com_count + txbHolo1.Text = component_packing_cnt_list(comDB.hologram1).com_count + txbHolo3.Text = component_packing_cnt_list(comDB.hologram3).com_count + txbHolo5.Text = component_packing_cnt_list(comDB.hologram5).com_count + txbMaxSafPp.Text = component_packing_cnt_list(comDB.caseSaffianoPp).com_count + txbMaxYellow.Text = component_packing_cnt_list(comDB.maxYellow).com_count + txbKolPe1.Text = component_packing_cnt_list(comDB.Kollagen_Pe1).com_count + txbKolPe3.Text = component_packing_cnt_list(comDB.Kollagen_Pe3).com_count + txbKolPe5.Text = component_packing_cnt_list(comDB.Kollagen_Pe5).com_count + txbATCircle.Text = component_packing_cnt_list(comDB.ATCircleCase).com_count + txbAPSquare.Text = component_packing_cnt_list(comDB.APSquareCase).com_count + txbMaxPeach.Text = component_packing_cnt_list(comDB.maxPeach).com_count + txbMaSoo.Text = component_packing_cnt_list(comDB.massageSoothing).com_count + txbMaxSMint.Text = component_packing_cnt_list(comDB.maxSMint).com_count + txbMeshPouch.Text = component_packing_cnt_list(comDB.meshpouch).com_count + txbFirming.Text = component_packing_cnt_list(comDB.firmingAmp).com_count + txbHyaluronic.Text = component_packing_cnt_list(comDB.hyaluronicAmp).com_count + txbnightshot.Text = component_packing_cnt_list(comDB.nightshot).com_count + txbmorningshot.Text = component_packing_cnt_list(comDB.morningshot).com_count + txbcasemaxwoodi.Text = component_packing_cnt_list(comDB.casemaxwoodi).com_count + txbelicolltoner.Text = component_packing_cnt_list(comDB.Elicolltoner).com_count + txbelicollamp.Text = component_packing_cnt_list(comDB.Elicollamp).com_count + txbelicollcream.Text = component_packing_cnt_list(comDB.Elicollcream).com_count + txbelihyaltoner.Text = component_packing_cnt_list(comDB.Elihyaltoner).com_count + txbelihyalamp.Text = component_packing_cnt_list(comDB.Elihyalamp).com_count + txbelihyalcream.Text = component_packing_cnt_list(comDB.Elihyalcream).com_count + txbdayshot.Text = component_packing_cnt_list(comDB.Dayshot).com_count + txbBeautyshopbag.Text = component_packing_cnt_list(comDB.Beautyshopbag).com_count + txbgummy.Text = component_packing_cnt_list(comDB.Gummy).com_count + txbstickjelly.Text = component_packing_cnt_list(comDB.Stickjelly).com_count + txbnewyearbag.Text = component_packing_cnt_list(comDB.Newyearbag).com_count + txbemsbelt.Text = component_packing_cnt_list(comDB.Emsbelt).com_count + txbbeltbag.Text = component_packing_cnt_list(comDB.Beltbag).com_count + txbDayshot2.Text = component_packing_cnt_list(comDB.Dayshot2).com_count + txbelixir.Text = component_packing_cnt_list(comDB.Elixir).com_count + txbbox8.Text = component_packing_cnt_list(comDB.car8).com_count + txbkeyring.Text = component_packing_cnt_list(comDB.keyring).com_count + txbdoenaliftingtoner.Text = component_packing_cnt_list(comDB.DoenaLiftingToner).com_count + txbdoenaliftingamp.Text = component_packing_cnt_list(comDB.DoenaLiftingAmp).com_count + txbdoenaliftingcream.Text = component_packing_cnt_list(comDB.DoenaLiftingCream).com_count + txbfirmingcollagengel.Text = component_packing_cnt_list(comDB.FirmingCollagenGel).com_count + txbkeyringSally.Text = component_packing_cnt_list(comDB.keyringSally).com_count '신규구성품추가 : 추가한 품목 수량 출력하도록 추가 End Sub diff --git a/OrderPackingProcessor/mainForm.Designer.vb b/OrderPackingProcessor/mainForm.Designer.vb index 840e18f..91f6638 100644 --- a/OrderPackingProcessor/mainForm.Designer.vb +++ b/OrderPackingProcessor/mainForm.Designer.vb @@ -455,11 +455,11 @@ Partial Class mainForm Me.gbProdSN.Controls.Add(Me.lbProdSN) Me.gbProdSN.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbProdSN.ForeColor = System.Drawing.Color.Black - Me.gbProdSN.Location = New System.Drawing.Point(525, 5) - Me.gbProdSN.Margin = New System.Windows.Forms.Padding(5) + Me.gbProdSN.Location = New System.Drawing.Point(459, 4) + Me.gbProdSN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbProdSN.Name = "gbProdSN" - Me.gbProdSN.Padding = New System.Windows.Forms.Padding(5) - Me.gbProdSN.Size = New System.Drawing.Size(1226, 132) + Me.gbProdSN.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbProdSN.Size = New System.Drawing.Size(1073, 106) Me.gbProdSN.TabIndex = 81 Me.gbProdSN.TabStop = False Me.gbProdSN.Text = "시리얼 번호" @@ -467,10 +467,10 @@ Partial Class mainForm 'btnOK ' Me.btnOK.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnOK.Location = New System.Drawing.Point(1093, 36) - Me.btnOK.Margin = New System.Windows.Forms.Padding(5) + Me.btnOK.Location = New System.Drawing.Point(956, 29) + Me.btnOK.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.btnOK.Name = "btnOK" - Me.btnOK.Size = New System.Drawing.Size(126, 80) + Me.btnOK.Size = New System.Drawing.Size(110, 64) Me.btnOK.TabIndex = 69 Me.btnOK.Text = "입력" Me.btnOK.UseVisualStyleBackColor = True @@ -481,10 +481,10 @@ Partial Class mainForm Me.txbProdSN.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper Me.txbProdSN.Font = New System.Drawing.Font("함초롬바탕", 38.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbProdSN.ImeMode = System.Windows.Forms.ImeMode.Disable - Me.txbProdSN.Location = New System.Drawing.Point(103, 30) - Me.txbProdSN.Margin = New System.Windows.Forms.Padding(5) + Me.txbProdSN.Location = New System.Drawing.Point(90, 24) + Me.txbProdSN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbProdSN.Name = "txbProdSN" - Me.txbProdSN.Size = New System.Drawing.Size(986, 90) + Me.txbProdSN.Size = New System.Drawing.Size(863, 74) Me.txbProdSN.TabIndex = 67 Me.txbProdSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' @@ -492,10 +492,10 @@ Partial Class mainForm ' Me.lbProdSN.AutoSize = True Me.lbProdSN.Font = New System.Drawing.Font("함초롬바탕", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbProdSN.Location = New System.Drawing.Point(9, 49) - Me.lbProdSN.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbProdSN.Location = New System.Drawing.Point(8, 39) + Me.lbProdSN.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbProdSN.Name = "lbProdSN" - Me.lbProdSN.Size = New System.Drawing.Size(97, 52) + Me.lbProdSN.Size = New System.Drawing.Size(78, 41) Me.lbProdSN.TabIndex = 68 Me.lbProdSN.Text = "P/N" ' @@ -516,9 +516,8 @@ Partial Class mainForm Me.pnMain.Controls.Add(Me.gbAutoMode) Me.pnMain.Controls.Add(Me.gbInv) Me.pnMain.Location = New System.Drawing.Point(0, 0) - Me.pnMain.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.pnMain.Name = "pnMain" - Me.pnMain.Size = New System.Drawing.Size(2194, 1325) + Me.pnMain.Size = New System.Drawing.Size(1920, 1060) Me.pnMain.TabIndex = 82 ' 'gbMESId @@ -527,11 +526,11 @@ Partial Class mainForm Me.gbMESId.Controls.Add(Me.lbMESid) Me.gbMESId.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbMESId.ForeColor = System.Drawing.Color.Black - Me.gbMESId.Location = New System.Drawing.Point(190, 5) - Me.gbMESId.Margin = New System.Windows.Forms.Padding(5) + Me.gbMESId.Location = New System.Drawing.Point(166, 4) + Me.gbMESId.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbMESId.Name = "gbMESId" - Me.gbMESId.Padding = New System.Windows.Forms.Padding(5) - Me.gbMESId.Size = New System.Drawing.Size(157, 132) + Me.gbMESId.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbMESId.Size = New System.Drawing.Size(137, 106) Me.gbMESId.TabIndex = 106 Me.gbMESId.TabStop = False Me.gbMESId.Text = "MES 로그인 ID" @@ -540,19 +539,18 @@ Partial Class mainForm ' Me.lbMESid.AutoSize = True Me.lbMESid.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMESid.Location = New System.Drawing.Point(37, 55) + Me.lbMESid.Location = New System.Drawing.Point(32, 44) Me.lbMESid.Name = "lbMESid" - Me.lbMESid.Size = New System.Drawing.Size(86, 44) + Me.lbMESid.Size = New System.Drawing.Size(69, 35) Me.lbMESid.TabIndex = 0 Me.lbMESid.Text = "OFF" ' 'btnLoginTest ' Me.btnLoginTest.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnLoginTest.Location = New System.Drawing.Point(3, 5) - Me.btnLoginTest.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnLoginTest.Location = New System.Drawing.Point(3, 4) Me.btnLoginTest.Name = "btnLoginTest" - Me.btnLoginTest.Size = New System.Drawing.Size(184, 134) + Me.btnLoginTest.Size = New System.Drawing.Size(161, 107) Me.btnLoginTest.TabIndex = 19 Me.btnLoginTest.Text = "MES" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "로그인" Me.btnLoginTest.UseVisualStyleBackColor = True @@ -563,11 +561,11 @@ Partial Class mainForm Me.gbPacking.Controls.Add(Me.cboPacking) Me.gbPacking.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbPacking.ForeColor = System.Drawing.Color.Black - Me.gbPacking.Location = New System.Drawing.Point(518, 5) - Me.gbPacking.Margin = New System.Windows.Forms.Padding(5) + Me.gbPacking.Location = New System.Drawing.Point(453, 4) + Me.gbPacking.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbPacking.Name = "gbPacking" - Me.gbPacking.Padding = New System.Windows.Forms.Padding(5) - Me.gbPacking.Size = New System.Drawing.Size(480, 132) + Me.gbPacking.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbPacking.Size = New System.Drawing.Size(420, 106) Me.gbPacking.TabIndex = 100 Me.gbPacking.TabStop = False Me.gbPacking.Text = "패킹선택" @@ -578,10 +576,9 @@ Partial Class mainForm Me.cboPacking.BackColor = System.Drawing.Color.Yellow Me.cboPacking.Font = New System.Drawing.Font("함초롬바탕", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.cboPacking.FormattingEnabled = True - Me.cboPacking.Location = New System.Drawing.Point(10, 45) - Me.cboPacking.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.cboPacking.Location = New System.Drawing.Point(9, 36) Me.cboPacking.Name = "cboPacking" - Me.cboPacking.Size = New System.Drawing.Size(461, 55) + Me.cboPacking.Size = New System.Drawing.Size(404, 46) Me.cboPacking.TabIndex = 0 ' 'gb_info @@ -594,11 +591,11 @@ Partial Class mainForm Me.gb_info.Controls.Add(Me.pnBtn) Me.gb_info.Controls.Add(Me.pnbotWeight) Me.gb_info.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gb_info.Location = New System.Drawing.Point(1099, 359) - Me.gb_info.Margin = New System.Windows.Forms.Padding(5) + Me.gb_info.Location = New System.Drawing.Point(962, 287) + Me.gb_info.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gb_info.Name = "gb_info" - Me.gb_info.Padding = New System.Windows.Forms.Padding(5) - Me.gb_info.Size = New System.Drawing.Size(1086, 951) + Me.gb_info.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gb_info.Size = New System.Drawing.Size(950, 761) Me.gb_info.TabIndex = 105 Me.gb_info.TabStop = False Me.gb_info.Text = "제품 사양" @@ -611,11 +608,9 @@ Partial Class mainForm Me.gbCount.Controls.Add(Me.gbLcount) Me.gbCount.Controls.Add(Me.gbPcount) Me.gbCount.Controls.Add(Me.gbFullCount) - Me.gbCount.Location = New System.Drawing.Point(6, 488) - Me.gbCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbCount.Location = New System.Drawing.Point(5, 390) Me.gbCount.Name = "gbCount" - Me.gbCount.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbCount.Size = New System.Drawing.Size(531, 322) + Me.gbCount.Size = New System.Drawing.Size(465, 258) Me.gbCount.TabIndex = 89 Me.gbCount.TabStop = False Me.gbCount.Text = "수량정보" @@ -624,11 +619,10 @@ Partial Class mainForm ' Me.txbCount.BackColor = System.Drawing.SystemColors.Window Me.txbCount.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCount.Location = New System.Drawing.Point(194, 35) - Me.txbCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbCount.Location = New System.Drawing.Point(170, 28) Me.txbCount.Name = "txbCount" Me.txbCount.ReadOnly = True - Me.txbCount.Size = New System.Drawing.Size(278, 46) + Me.txbCount.Size = New System.Drawing.Size(244, 39) Me.txbCount.TabIndex = 1 Me.txbCount.Text = "888" Me.txbCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -637,9 +631,9 @@ Partial Class mainForm ' Me.lbCount.AutoSize = True Me.lbCount.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCount.Location = New System.Drawing.Point(57, 45) + Me.lbCount.Location = New System.Drawing.Point(50, 36) Me.lbCount.Name = "lbCount" - Me.lbCount.Size = New System.Drawing.Size(161, 35) + Me.lbCount.Size = New System.Drawing.Size(124, 27) Me.lbCount.TabIndex = 0 Me.lbCount.Text = "총 포장 수량" ' @@ -650,11 +644,9 @@ Partial Class mainForm Me.gbLcount.Controls.Add(Me.pnLuxFace) Me.gbLcount.Controls.Add(Me.pnLuxEye) Me.gbLcount.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbLcount.Location = New System.Drawing.Point(178, 91) - Me.gbLcount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbLcount.Location = New System.Drawing.Point(156, 73) Me.gbLcount.Name = "gbLcount" - Me.gbLcount.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbLcount.Size = New System.Drawing.Size(168, 231) + Me.gbLcount.Size = New System.Drawing.Size(147, 185) Me.gbLcount.TabIndex = 8 Me.gbLcount.TabStop = False Me.gbLcount.Text = "LUX" @@ -663,21 +655,19 @@ Partial Class mainForm ' Me.pnLuxSet.Controls.Add(Me.txbLuxSet) Me.pnLuxSet.Controls.Add(Me.lbLuxSet) - Me.pnLuxSet.Location = New System.Drawing.Point(7, 39) - Me.pnLuxSet.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnLuxSet.Location = New System.Drawing.Point(6, 31) Me.pnLuxSet.Name = "pnLuxSet" - Me.pnLuxSet.Size = New System.Drawing.Size(149, 42) + Me.pnLuxSet.Size = New System.Drawing.Size(130, 34) Me.pnLuxSet.TabIndex = 5 ' 'txbLuxSet ' Me.txbLuxSet.BackColor = System.Drawing.SystemColors.Window Me.txbLuxSet.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbLuxSet.Location = New System.Drawing.Point(63, 4) - Me.txbLuxSet.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbLuxSet.Location = New System.Drawing.Point(55, 3) Me.txbLuxSet.Name = "txbLuxSet" Me.txbLuxSet.ReadOnly = True - Me.txbLuxSet.Size = New System.Drawing.Size(76, 33) + Me.txbLuxSet.Size = New System.Drawing.Size(67, 28) Me.txbLuxSet.TabIndex = 1 Me.txbLuxSet.Text = "888" Me.txbLuxSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -686,9 +676,9 @@ Partial Class mainForm ' Me.lbLuxSet.AutoSize = True Me.lbLuxSet.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbLuxSet.Location = New System.Drawing.Point(3, 8) + Me.lbLuxSet.Location = New System.Drawing.Point(3, 6) Me.lbLuxSet.Name = "lbLuxSet" - Me.lbLuxSet.Size = New System.Drawing.Size(51, 26) + Me.lbLuxSet.Size = New System.Drawing.Size(41, 21) Me.lbLuxSet.TabIndex = 0 Me.lbLuxSet.Text = "SET" ' @@ -696,21 +686,19 @@ Partial Class mainForm ' Me.pnLuxBody.Controls.Add(Me.txbLuxBody) Me.pnLuxBody.Controls.Add(Me.lbLuxBody) - Me.pnLuxBody.Location = New System.Drawing.Point(8, 181) - Me.pnLuxBody.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnLuxBody.Location = New System.Drawing.Point(7, 145) Me.pnLuxBody.Name = "pnLuxBody" - Me.pnLuxBody.Size = New System.Drawing.Size(149, 42) + Me.pnLuxBody.Size = New System.Drawing.Size(130, 34) Me.pnLuxBody.TabIndex = 6 ' 'txbLuxBody ' Me.txbLuxBody.BackColor = System.Drawing.SystemColors.Window Me.txbLuxBody.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbLuxBody.Location = New System.Drawing.Point(63, 4) - Me.txbLuxBody.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbLuxBody.Location = New System.Drawing.Point(55, 3) Me.txbLuxBody.Name = "txbLuxBody" Me.txbLuxBody.ReadOnly = True - Me.txbLuxBody.Size = New System.Drawing.Size(76, 33) + Me.txbLuxBody.Size = New System.Drawing.Size(67, 28) Me.txbLuxBody.TabIndex = 1 Me.txbLuxBody.Text = "888" Me.txbLuxBody.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -719,9 +707,9 @@ Partial Class mainForm ' Me.lbLuxBody.AutoSize = True Me.lbLuxBody.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbLuxBody.Location = New System.Drawing.Point(3, 8) + Me.lbLuxBody.Location = New System.Drawing.Point(3, 6) Me.lbLuxBody.Name = "lbLuxBody" - Me.lbLuxBody.Size = New System.Drawing.Size(67, 26) + Me.lbLuxBody.Size = New System.Drawing.Size(55, 21) Me.lbLuxBody.TabIndex = 0 Me.lbLuxBody.Text = "BODY" ' @@ -729,21 +717,19 @@ Partial Class mainForm ' Me.pnLuxFace.Controls.Add(Me.txbLuxFace) Me.pnLuxFace.Controls.Add(Me.lbLuxFace) - Me.pnLuxFace.Location = New System.Drawing.Point(8, 89) - Me.pnLuxFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnLuxFace.Location = New System.Drawing.Point(7, 71) Me.pnLuxFace.Name = "pnLuxFace" - Me.pnLuxFace.Size = New System.Drawing.Size(149, 42) + Me.pnLuxFace.Size = New System.Drawing.Size(130, 34) Me.pnLuxFace.TabIndex = 6 ' 'txbLuxFace ' Me.txbLuxFace.BackColor = System.Drawing.SystemColors.Window Me.txbLuxFace.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbLuxFace.Location = New System.Drawing.Point(63, 4) - Me.txbLuxFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbLuxFace.Location = New System.Drawing.Point(55, 3) Me.txbLuxFace.Name = "txbLuxFace" Me.txbLuxFace.ReadOnly = True - Me.txbLuxFace.Size = New System.Drawing.Size(76, 33) + Me.txbLuxFace.Size = New System.Drawing.Size(67, 28) Me.txbLuxFace.TabIndex = 1 Me.txbLuxFace.Text = "888" Me.txbLuxFace.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -752,9 +738,9 @@ Partial Class mainForm ' Me.lbLuxFace.AutoSize = True Me.lbLuxFace.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbLuxFace.Location = New System.Drawing.Point(3, 8) + Me.lbLuxFace.Location = New System.Drawing.Point(3, 6) Me.lbLuxFace.Name = "lbLuxFace" - Me.lbLuxFace.Size = New System.Drawing.Size(64, 26) + Me.lbLuxFace.Size = New System.Drawing.Size(52, 21) Me.lbLuxFace.TabIndex = 0 Me.lbLuxFace.Text = "FACE" ' @@ -762,21 +748,19 @@ Partial Class mainForm ' Me.pnLuxEye.Controls.Add(Me.txbLuxEye) Me.pnLuxEye.Controls.Add(Me.lbLuxEye) - Me.pnLuxEye.Location = New System.Drawing.Point(8, 135) - Me.pnLuxEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnLuxEye.Location = New System.Drawing.Point(7, 108) Me.pnLuxEye.Name = "pnLuxEye" - Me.pnLuxEye.Size = New System.Drawing.Size(149, 42) + Me.pnLuxEye.Size = New System.Drawing.Size(130, 34) Me.pnLuxEye.TabIndex = 6 ' 'txbLuxEye ' Me.txbLuxEye.BackColor = System.Drawing.SystemColors.Window Me.txbLuxEye.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbLuxEye.Location = New System.Drawing.Point(63, 4) - Me.txbLuxEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbLuxEye.Location = New System.Drawing.Point(55, 3) Me.txbLuxEye.Name = "txbLuxEye" Me.txbLuxEye.ReadOnly = True - Me.txbLuxEye.Size = New System.Drawing.Size(76, 33) + Me.txbLuxEye.Size = New System.Drawing.Size(67, 28) Me.txbLuxEye.TabIndex = 1 Me.txbLuxEye.Text = "888" Me.txbLuxEye.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -785,9 +769,9 @@ Partial Class mainForm ' Me.lbLuxEye.AutoSize = True Me.lbLuxEye.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbLuxEye.Location = New System.Drawing.Point(3, 8) + Me.lbLuxEye.Location = New System.Drawing.Point(3, 6) Me.lbLuxEye.Name = "lbLuxEye" - Me.lbLuxEye.Size = New System.Drawing.Size(52, 26) + Me.lbLuxEye.Size = New System.Drawing.Size(41, 21) Me.lbLuxEye.TabIndex = 0 Me.lbLuxEye.Text = "EYE" ' @@ -798,11 +782,9 @@ Partial Class mainForm Me.gbPcount.Controls.Add(Me.pnProFace) Me.gbPcount.Controls.Add(Me.pnProEye) Me.gbPcount.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbPcount.Location = New System.Drawing.Point(11, 91) - Me.gbPcount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbPcount.Location = New System.Drawing.Point(10, 73) Me.gbPcount.Name = "gbPcount" - Me.gbPcount.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbPcount.Size = New System.Drawing.Size(162, 231) + Me.gbPcount.Size = New System.Drawing.Size(142, 185) Me.gbPcount.TabIndex = 7 Me.gbPcount.TabStop = False Me.gbPcount.Text = "PRO" @@ -811,21 +793,19 @@ Partial Class mainForm ' Me.pnProSet.Controls.Add(Me.txbProSet) Me.pnProSet.Controls.Add(Me.lbProSet) - Me.pnProSet.Location = New System.Drawing.Point(7, 39) - Me.pnProSet.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnProSet.Location = New System.Drawing.Point(6, 31) Me.pnProSet.Name = "pnProSet" - Me.pnProSet.Size = New System.Drawing.Size(149, 42) + Me.pnProSet.Size = New System.Drawing.Size(130, 34) Me.pnProSet.TabIndex = 5 ' 'txbProSet ' Me.txbProSet.BackColor = System.Drawing.SystemColors.Window Me.txbProSet.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbProSet.Location = New System.Drawing.Point(63, 4) - Me.txbProSet.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbProSet.Location = New System.Drawing.Point(55, 3) Me.txbProSet.Name = "txbProSet" Me.txbProSet.ReadOnly = True - Me.txbProSet.Size = New System.Drawing.Size(76, 33) + Me.txbProSet.Size = New System.Drawing.Size(67, 28) Me.txbProSet.TabIndex = 1 Me.txbProSet.Text = "888" Me.txbProSet.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -834,9 +814,9 @@ Partial Class mainForm ' Me.lbProSet.AutoSize = True Me.lbProSet.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbProSet.Location = New System.Drawing.Point(3, 8) + Me.lbProSet.Location = New System.Drawing.Point(3, 6) Me.lbProSet.Name = "lbProSet" - Me.lbProSet.Size = New System.Drawing.Size(51, 26) + Me.lbProSet.Size = New System.Drawing.Size(41, 21) Me.lbProSet.TabIndex = 0 Me.lbProSet.Text = "SET" ' @@ -844,21 +824,19 @@ Partial Class mainForm ' Me.pnProBody.Controls.Add(Me.txbProBody) Me.pnProBody.Controls.Add(Me.lbProBody) - Me.pnProBody.Location = New System.Drawing.Point(8, 181) - Me.pnProBody.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnProBody.Location = New System.Drawing.Point(7, 145) Me.pnProBody.Name = "pnProBody" - Me.pnProBody.Size = New System.Drawing.Size(149, 42) + Me.pnProBody.Size = New System.Drawing.Size(130, 34) Me.pnProBody.TabIndex = 6 ' 'txbProBody ' Me.txbProBody.BackColor = System.Drawing.SystemColors.Window Me.txbProBody.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbProBody.Location = New System.Drawing.Point(63, 4) - Me.txbProBody.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbProBody.Location = New System.Drawing.Point(55, 3) Me.txbProBody.Name = "txbProBody" Me.txbProBody.ReadOnly = True - Me.txbProBody.Size = New System.Drawing.Size(76, 33) + Me.txbProBody.Size = New System.Drawing.Size(67, 28) Me.txbProBody.TabIndex = 1 Me.txbProBody.Text = "888" Me.txbProBody.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -867,9 +845,9 @@ Partial Class mainForm ' Me.lbProBody.AutoSize = True Me.lbProBody.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbProBody.Location = New System.Drawing.Point(3, 8) + Me.lbProBody.Location = New System.Drawing.Point(3, 6) Me.lbProBody.Name = "lbProBody" - Me.lbProBody.Size = New System.Drawing.Size(67, 26) + Me.lbProBody.Size = New System.Drawing.Size(55, 21) Me.lbProBody.TabIndex = 0 Me.lbProBody.Text = "BODY" ' @@ -877,21 +855,19 @@ Partial Class mainForm ' Me.pnProFace.Controls.Add(Me.txbProFace) Me.pnProFace.Controls.Add(Me.lbProFace) - Me.pnProFace.Location = New System.Drawing.Point(8, 89) - Me.pnProFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnProFace.Location = New System.Drawing.Point(7, 71) Me.pnProFace.Name = "pnProFace" - Me.pnProFace.Size = New System.Drawing.Size(149, 42) + Me.pnProFace.Size = New System.Drawing.Size(130, 34) Me.pnProFace.TabIndex = 6 ' 'txbProFace ' Me.txbProFace.BackColor = System.Drawing.SystemColors.Window Me.txbProFace.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbProFace.Location = New System.Drawing.Point(63, 4) - Me.txbProFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbProFace.Location = New System.Drawing.Point(55, 3) Me.txbProFace.Name = "txbProFace" Me.txbProFace.ReadOnly = True - Me.txbProFace.Size = New System.Drawing.Size(76, 33) + Me.txbProFace.Size = New System.Drawing.Size(67, 28) Me.txbProFace.TabIndex = 1 Me.txbProFace.Text = "888" Me.txbProFace.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -900,9 +876,9 @@ Partial Class mainForm ' Me.lbProFace.AutoSize = True Me.lbProFace.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbProFace.Location = New System.Drawing.Point(3, 8) + Me.lbProFace.Location = New System.Drawing.Point(3, 6) Me.lbProFace.Name = "lbProFace" - Me.lbProFace.Size = New System.Drawing.Size(64, 26) + Me.lbProFace.Size = New System.Drawing.Size(52, 21) Me.lbProFace.TabIndex = 0 Me.lbProFace.Text = "FACE" ' @@ -910,21 +886,19 @@ Partial Class mainForm ' Me.pnProEye.Controls.Add(Me.txbProEye) Me.pnProEye.Controls.Add(Me.lbProEye) - Me.pnProEye.Location = New System.Drawing.Point(8, 135) - Me.pnProEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnProEye.Location = New System.Drawing.Point(7, 108) Me.pnProEye.Name = "pnProEye" - Me.pnProEye.Size = New System.Drawing.Size(149, 42) + Me.pnProEye.Size = New System.Drawing.Size(130, 34) Me.pnProEye.TabIndex = 6 ' 'txbProEye ' Me.txbProEye.BackColor = System.Drawing.SystemColors.Window Me.txbProEye.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbProEye.Location = New System.Drawing.Point(63, 4) - Me.txbProEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbProEye.Location = New System.Drawing.Point(55, 3) Me.txbProEye.Name = "txbProEye" Me.txbProEye.ReadOnly = True - Me.txbProEye.Size = New System.Drawing.Size(76, 33) + Me.txbProEye.Size = New System.Drawing.Size(67, 28) Me.txbProEye.TabIndex = 1 Me.txbProEye.Text = "888" Me.txbProEye.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -933,9 +907,9 @@ Partial Class mainForm ' Me.lbProEye.AutoSize = True Me.lbProEye.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbProEye.Location = New System.Drawing.Point(3, 8) + Me.lbProEye.Location = New System.Drawing.Point(3, 6) Me.lbProEye.Name = "lbProEye" - Me.lbProEye.Size = New System.Drawing.Size(52, 26) + Me.lbProEye.Size = New System.Drawing.Size(41, 21) Me.lbProEye.TabIndex = 0 Me.lbProEye.Text = "EYE" ' @@ -944,20 +918,17 @@ Partial Class mainForm Me.gbFullCount.Controls.Add(Me.btnMore) Me.gbFullCount.Controls.Add(Me.gbEcount) Me.gbFullCount.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbFullCount.Location = New System.Drawing.Point(2, 91) - Me.gbFullCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbFullCount.Location = New System.Drawing.Point(2, 73) Me.gbFullCount.Name = "gbFullCount" - Me.gbFullCount.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbFullCount.Size = New System.Drawing.Size(526, 231) + Me.gbFullCount.Size = New System.Drawing.Size(460, 185) Me.gbFullCount.TabIndex = 2 Me.gbFullCount.TabStop = False ' 'btnMore ' - Me.btnMore.Location = New System.Drawing.Point(347, 181) - Me.btnMore.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMore.Location = New System.Drawing.Point(304, 145) Me.btnMore.Name = "btnMore" - Me.btnMore.Size = New System.Drawing.Size(171, 42) + Me.btnMore.Size = New System.Drawing.Size(150, 34) Me.btnMore.TabIndex = 10 Me.btnMore.Text = "자세히" Me.btnMore.UseVisualStyleBackColor = True @@ -968,11 +939,9 @@ Partial Class mainForm Me.gbEcount.Controls.Add(Me.pnGel) Me.gbEcount.Controls.Add(Me.pnAmp) Me.gbEcount.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEcount.Location = New System.Drawing.Point(351, 0) - Me.gbEcount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEcount.Location = New System.Drawing.Point(307, 0) Me.gbEcount.Name = "gbEcount" - Me.gbEcount.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEcount.Size = New System.Drawing.Size(168, 180) + Me.gbEcount.Size = New System.Drawing.Size(147, 144) Me.gbEcount.TabIndex = 9 Me.gbEcount.TabStop = False Me.gbEcount.Text = "ETC" @@ -981,21 +950,19 @@ Partial Class mainForm ' Me.pnMAX.Controls.Add(Me.txbMAX) Me.pnMAX.Controls.Add(Me.lbMAX) - Me.pnMAX.Location = New System.Drawing.Point(7, 39) - Me.pnMAX.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMAX.Location = New System.Drawing.Point(6, 31) Me.pnMAX.Name = "pnMAX" - Me.pnMAX.Size = New System.Drawing.Size(149, 42) + Me.pnMAX.Size = New System.Drawing.Size(130, 34) Me.pnMAX.TabIndex = 5 ' 'txbMAX ' Me.txbMAX.BackColor = System.Drawing.SystemColors.Window Me.txbMAX.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMAX.Location = New System.Drawing.Point(63, 4) - Me.txbMAX.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMAX.Location = New System.Drawing.Point(55, 3) Me.txbMAX.Name = "txbMAX" Me.txbMAX.ReadOnly = True - Me.txbMAX.Size = New System.Drawing.Size(76, 33) + Me.txbMAX.Size = New System.Drawing.Size(67, 28) Me.txbMAX.TabIndex = 1 Me.txbMAX.Text = "888" Me.txbMAX.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1004,9 +971,9 @@ Partial Class mainForm ' Me.lbMAX.AutoSize = True Me.lbMAX.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMAX.Location = New System.Drawing.Point(3, 8) + Me.lbMAX.Location = New System.Drawing.Point(3, 6) Me.lbMAX.Name = "lbMAX" - Me.lbMAX.Size = New System.Drawing.Size(57, 26) + Me.lbMAX.Size = New System.Drawing.Size(45, 21) Me.lbMAX.TabIndex = 0 Me.lbMAX.Text = "MAX" ' @@ -1014,21 +981,19 @@ Partial Class mainForm ' Me.pnGel.Controls.Add(Me.txbGel) Me.pnGel.Controls.Add(Me.lbGel) - Me.pnGel.Location = New System.Drawing.Point(8, 89) - Me.pnGel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnGel.Location = New System.Drawing.Point(7, 71) Me.pnGel.Name = "pnGel" - Me.pnGel.Size = New System.Drawing.Size(149, 42) + Me.pnGel.Size = New System.Drawing.Size(130, 34) Me.pnGel.TabIndex = 6 ' 'txbGel ' Me.txbGel.BackColor = System.Drawing.SystemColors.Window Me.txbGel.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbGel.Location = New System.Drawing.Point(63, 4) - Me.txbGel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbGel.Location = New System.Drawing.Point(55, 3) Me.txbGel.Name = "txbGel" Me.txbGel.ReadOnly = True - Me.txbGel.Size = New System.Drawing.Size(76, 33) + Me.txbGel.Size = New System.Drawing.Size(67, 28) Me.txbGel.TabIndex = 1 Me.txbGel.Text = "888" Me.txbGel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1037,9 +1002,9 @@ Partial Class mainForm ' Me.lbGel.AutoSize = True Me.lbGel.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbGel.Location = New System.Drawing.Point(3, 8) + Me.lbGel.Location = New System.Drawing.Point(3, 6) Me.lbGel.Name = "lbGel" - Me.lbGel.Size = New System.Drawing.Size(51, 26) + Me.lbGel.Size = New System.Drawing.Size(41, 21) Me.lbGel.TabIndex = 0 Me.lbGel.Text = "GEL" ' @@ -1047,21 +1012,19 @@ Partial Class mainForm ' Me.pnAmp.Controls.Add(Me.txbAmp) Me.pnAmp.Controls.Add(Me.lbAmp) - Me.pnAmp.Location = New System.Drawing.Point(8, 135) - Me.pnAmp.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnAmp.Location = New System.Drawing.Point(7, 108) Me.pnAmp.Name = "pnAmp" - Me.pnAmp.Size = New System.Drawing.Size(149, 42) + Me.pnAmp.Size = New System.Drawing.Size(130, 34) Me.pnAmp.TabIndex = 6 ' 'txbAmp ' Me.txbAmp.BackColor = System.Drawing.SystemColors.Window Me.txbAmp.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbAmp.Location = New System.Drawing.Point(63, 4) - Me.txbAmp.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbAmp.Location = New System.Drawing.Point(55, 3) Me.txbAmp.Name = "txbAmp" Me.txbAmp.ReadOnly = True - Me.txbAmp.Size = New System.Drawing.Size(76, 33) + Me.txbAmp.Size = New System.Drawing.Size(67, 28) Me.txbAmp.TabIndex = 1 Me.txbAmp.Text = "888" Me.txbAmp.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1070,9 +1033,9 @@ Partial Class mainForm ' Me.lbAmp.AutoSize = True Me.lbAmp.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbAmp.Location = New System.Drawing.Point(3, 8) + Me.lbAmp.Location = New System.Drawing.Point(3, 6) Me.lbAmp.Name = "lbAmp" - Me.lbAmp.Size = New System.Drawing.Size(55, 26) + Me.lbAmp.Size = New System.Drawing.Size(44, 21) Me.lbAmp.TabIndex = 0 Me.lbAmp.Text = "AMP" ' @@ -1087,11 +1050,11 @@ Partial Class mainForm Me.gbCart.Controls.Add(Me.lbCagent) Me.gbCart.Controls.Add(Me.lbCnt) Me.gbCart.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbCart.Location = New System.Drawing.Point(549, 62) - Me.gbCart.Margin = New System.Windows.Forms.Padding(5) + Me.gbCart.Location = New System.Drawing.Point(480, 50) + Me.gbCart.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbCart.Name = "gbCart" - Me.gbCart.Padding = New System.Windows.Forms.Padding(5) - Me.gbCart.Size = New System.Drawing.Size(531, 412) + Me.gbCart.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbCart.Size = New System.Drawing.Size(465, 330) Me.gbCart.TabIndex = 84 Me.gbCart.TabStop = False Me.gbCart.Text = "단일 제품 정보" @@ -1100,11 +1063,11 @@ Partial Class mainForm ' Me.txbCmodel.BackColor = System.Drawing.Color.AliceBlue Me.txbCmodel.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCmodel.Location = New System.Drawing.Point(107, 66) - Me.txbCmodel.Margin = New System.Windows.Forms.Padding(5) + Me.txbCmodel.Location = New System.Drawing.Point(94, 53) + Me.txbCmodel.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCmodel.Name = "txbCmodel" Me.txbCmodel.ReadOnly = True - Me.txbCmodel.Size = New System.Drawing.Size(401, 46) + Me.txbCmodel.Size = New System.Drawing.Size(351, 39) Me.txbCmodel.TabIndex = 11 Me.txbCmodel.Text = "N/A" Me.txbCmodel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1113,10 +1076,10 @@ Partial Class mainForm ' Me.lbCmodel.AutoSize = True Me.lbCmodel.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCmodel.Location = New System.Drawing.Point(41, 70) - Me.lbCmodel.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCmodel.Location = New System.Drawing.Point(36, 56) + Me.lbCmodel.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCmodel.Name = "lbCmodel" - Me.lbCmodel.Size = New System.Drawing.Size(75, 39) + Me.lbCmodel.Size = New System.Drawing.Size(60, 32) Me.lbCmodel.TabIndex = 10 Me.lbCmodel.Text = "모델" ' @@ -1134,11 +1097,9 @@ Partial Class mainForm Me.gbSetCart.Controls.Add(Me.lbCface) Me.gbSetCart.Controls.Add(Me.txbCbodyShot) Me.gbSetCart.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbSetCart.Location = New System.Drawing.Point(8, 101) - Me.gbSetCart.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbSetCart.Location = New System.Drawing.Point(7, 81) Me.gbSetCart.Name = "gbSetCart" - Me.gbSetCart.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbSetCart.Size = New System.Drawing.Size(515, 240) + Me.gbSetCart.Size = New System.Drawing.Size(451, 192) Me.gbSetCart.TabIndex = 21 Me.gbSetCart.TabStop = False ' @@ -1146,11 +1107,11 @@ Partial Class mainForm ' Me.txbCbodySN.BackColor = System.Drawing.Color.AliceBlue Me.txbCbodySN.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCbodySN.Location = New System.Drawing.Point(99, 182) - Me.txbCbodySN.Margin = New System.Windows.Forms.Padding(5) + Me.txbCbodySN.Location = New System.Drawing.Point(87, 146) + Me.txbCbodySN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCbodySN.Name = "txbCbodySN" Me.txbCbodySN.ReadOnly = True - Me.txbCbodySN.Size = New System.Drawing.Size(245, 51) + Me.txbCbodySN.Size = New System.Drawing.Size(215, 43) Me.txbCbodySN.TabIndex = 3 Me.txbCbodySN.Text = "100000000000" Me.txbCbodySN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1159,10 +1120,10 @@ Partial Class mainForm ' Me.lbCbody.AutoSize = True Me.lbCbody.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCbody.Location = New System.Drawing.Point(15, 190) - Me.lbCbody.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCbody.Location = New System.Drawing.Point(13, 152) + Me.lbCbody.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCbody.Name = "lbCbody" - Me.lbCbody.Size = New System.Drawing.Size(100, 39) + Me.lbCbody.Size = New System.Drawing.Size(81, 32) Me.lbCbody.TabIndex = 30 Me.lbCbody.Text = "BODY" ' @@ -1170,11 +1131,11 @@ Partial Class mainForm ' Me.txbCeyeSN.BackColor = System.Drawing.Color.AliceBlue Me.txbCeyeSN.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCeyeSN.Location = New System.Drawing.Point(99, 124) - Me.txbCeyeSN.Margin = New System.Windows.Forms.Padding(5) + Me.txbCeyeSN.Location = New System.Drawing.Point(87, 99) + Me.txbCeyeSN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCeyeSN.Name = "txbCeyeSN" Me.txbCeyeSN.ReadOnly = True - Me.txbCeyeSN.Size = New System.Drawing.Size(245, 51) + Me.txbCeyeSN.Size = New System.Drawing.Size(215, 43) Me.txbCeyeSN.TabIndex = 1 Me.txbCeyeSN.Text = "100000000000" Me.txbCeyeSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1183,11 +1144,11 @@ Partial Class mainForm ' Me.txbCfaceSN.BackColor = System.Drawing.Color.AliceBlue Me.txbCfaceSN.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCfaceSN.Location = New System.Drawing.Point(99, 65) - Me.txbCfaceSN.Margin = New System.Windows.Forms.Padding(5) + Me.txbCfaceSN.Location = New System.Drawing.Point(87, 52) + Me.txbCfaceSN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCfaceSN.Name = "txbCfaceSN" Me.txbCfaceSN.ReadOnly = True - Me.txbCfaceSN.Size = New System.Drawing.Size(245, 51) + Me.txbCfaceSN.Size = New System.Drawing.Size(215, 43) Me.txbCfaceSN.TabIndex = 5 Me.txbCfaceSN.Text = "100000000000" Me.txbCfaceSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1196,11 +1157,11 @@ Partial Class mainForm ' Me.txbCeyeShot.BackColor = System.Drawing.Color.AliceBlue Me.txbCeyeShot.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCeyeShot.Location = New System.Drawing.Point(357, 124) - Me.txbCeyeShot.Margin = New System.Windows.Forms.Padding(5) + Me.txbCeyeShot.Location = New System.Drawing.Point(312, 99) + Me.txbCeyeShot.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCeyeShot.Name = "txbCeyeShot" Me.txbCeyeShot.ReadOnly = True - Me.txbCeyeShot.Size = New System.Drawing.Size(142, 51) + Me.txbCeyeShot.Size = New System.Drawing.Size(125, 43) Me.txbCeyeShot.TabIndex = 7 Me.txbCeyeShot.Text = "0" Me.txbCeyeShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1209,10 +1170,10 @@ Partial Class mainForm ' Me.lbCeye.AutoSize = True Me.lbCeye.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCeye.Location = New System.Drawing.Point(32, 130) - Me.lbCeye.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCeye.Location = New System.Drawing.Point(28, 104) + Me.lbCeye.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCeye.Name = "lbCeye" - Me.lbCeye.Size = New System.Drawing.Size(76, 39) + Me.lbCeye.Size = New System.Drawing.Size(61, 32) Me.lbCeye.TabIndex = 2 Me.lbCeye.Text = "EYE" ' @@ -1220,10 +1181,10 @@ Partial Class mainForm ' Me.lbCserial.AutoSize = True Me.lbCserial.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCserial.Location = New System.Drawing.Point(192, 21) - Me.lbCserial.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCserial.Location = New System.Drawing.Point(168, 17) + Me.lbCserial.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCserial.Name = "lbCserial" - Me.lbCserial.Size = New System.Drawing.Size(75, 39) + Me.lbCserial.Size = New System.Drawing.Size(60, 32) Me.lbCserial.TabIndex = 26 Me.lbCserial.Text = "S/N" ' @@ -1231,10 +1192,10 @@ Partial Class mainForm ' Me.lbCshot.AutoSize = True Me.lbCshot.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCshot.Location = New System.Drawing.Point(387, 21) - Me.lbCshot.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCshot.Location = New System.Drawing.Point(339, 17) + Me.lbCshot.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCshot.Name = "lbCshot" - Me.lbCshot.Size = New System.Drawing.Size(84, 39) + Me.lbCshot.Size = New System.Drawing.Size(67, 32) Me.lbCshot.TabIndex = 28 Me.lbCshot.Text = "샷 수" ' @@ -1242,11 +1203,11 @@ Partial Class mainForm ' Me.txbCfaceShot.BackColor = System.Drawing.Color.AliceBlue Me.txbCfaceShot.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCfaceShot.Location = New System.Drawing.Point(357, 65) - Me.txbCfaceShot.Margin = New System.Windows.Forms.Padding(5) + Me.txbCfaceShot.Location = New System.Drawing.Point(312, 52) + Me.txbCfaceShot.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCfaceShot.Name = "txbCfaceShot" Me.txbCfaceShot.ReadOnly = True - Me.txbCfaceShot.Size = New System.Drawing.Size(142, 51) + Me.txbCfaceShot.Size = New System.Drawing.Size(125, 43) Me.txbCfaceShot.TabIndex = 29 Me.txbCfaceShot.Text = "0" Me.txbCfaceShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1255,10 +1216,10 @@ Partial Class mainForm ' Me.lbCface.AutoSize = True Me.lbCface.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCface.Location = New System.Drawing.Point(15, 70) - Me.lbCface.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCface.Location = New System.Drawing.Point(13, 56) + Me.lbCface.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCface.Name = "lbCface" - Me.lbCface.Size = New System.Drawing.Size(96, 39) + Me.lbCface.Size = New System.Drawing.Size(76, 32) Me.lbCface.TabIndex = 22 Me.lbCface.Text = "FACE" ' @@ -1266,11 +1227,11 @@ Partial Class mainForm ' Me.txbCbodyShot.BackColor = System.Drawing.Color.AliceBlue Me.txbCbodyShot.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCbodyShot.Location = New System.Drawing.Point(357, 182) - Me.txbCbodyShot.Margin = New System.Windows.Forms.Padding(5) + Me.txbCbodyShot.Location = New System.Drawing.Point(312, 146) + Me.txbCbodyShot.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCbodyShot.Name = "txbCbodyShot" Me.txbCbodyShot.ReadOnly = True - Me.txbCbodyShot.Size = New System.Drawing.Size(142, 51) + Me.txbCbodyShot.Size = New System.Drawing.Size(125, 43) Me.txbCbodyShot.TabIndex = 9 Me.txbCbodyShot.Text = "0" Me.txbCbodyShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1279,11 +1240,11 @@ Partial Class mainForm ' Me.txbCagent.BackColor = System.Drawing.Color.AliceBlue Me.txbCagent.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCagent.Location = New System.Drawing.Point(353, 356) - Me.txbCagent.Margin = New System.Windows.Forms.Padding(5) + Me.txbCagent.Location = New System.Drawing.Point(309, 285) + Me.txbCagent.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCagent.Name = "txbCagent" Me.txbCagent.ReadOnly = True - Me.txbCagent.Size = New System.Drawing.Size(155, 46) + Me.txbCagent.Size = New System.Drawing.Size(136, 39) Me.txbCagent.TabIndex = 20 Me.txbCagent.Text = "0" Me.txbCagent.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1292,11 +1253,11 @@ Partial Class mainForm ' Me.txbCnt.BackColor = System.Drawing.Color.AliceBlue Me.txbCnt.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCnt.Location = New System.Drawing.Point(107, 356) - Me.txbCnt.Margin = New System.Windows.Forms.Padding(5) + Me.txbCnt.Location = New System.Drawing.Point(94, 285) + Me.txbCnt.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbCnt.Name = "txbCnt" Me.txbCnt.ReadOnly = True - Me.txbCnt.Size = New System.Drawing.Size(155, 46) + Me.txbCnt.Size = New System.Drawing.Size(136, 39) Me.txbCnt.TabIndex = 21 Me.txbCnt.Text = "0" Me.txbCnt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1305,10 +1266,10 @@ Partial Class mainForm ' Me.lbCagent.AutoSize = True Me.lbCagent.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCagent.Location = New System.Drawing.Point(274, 362) - Me.lbCagent.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCagent.Location = New System.Drawing.Point(240, 290) + Me.lbCagent.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCagent.Name = "lbCagent" - Me.lbCagent.Size = New System.Drawing.Size(93, 35) + Me.lbCagent.Size = New System.Drawing.Size(72, 27) Me.lbCagent.TabIndex = 19 Me.lbCagent.Text = "대리점" ' @@ -1316,10 +1277,10 @@ Partial Class mainForm ' Me.lbCnt.AutoSize = True Me.lbCnt.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbCnt.Location = New System.Drawing.Point(6, 362) - Me.lbCnt.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbCnt.Location = New System.Drawing.Point(5, 290) + Me.lbCnt.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbCnt.Name = "lbCnt" - Me.lbCnt.Size = New System.Drawing.Size(119, 35) + Me.lbCnt.Size = New System.Drawing.Size(92, 27) Me.lbCnt.TabIndex = 17 Me.lbCnt.Text = "국가코드" ' @@ -1334,11 +1295,11 @@ Partial Class mainForm Me.gbMain.Controls.Add(Me.lbMagent) Me.gbMain.Controls.Add(Me.lbMnt) Me.gbMain.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbMain.Location = New System.Drawing.Point(6, 62) - Me.gbMain.Margin = New System.Windows.Forms.Padding(5) + Me.gbMain.Location = New System.Drawing.Point(5, 50) + Me.gbMain.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbMain.Name = "gbMain" - Me.gbMain.Padding = New System.Windows.Forms.Padding(5) - Me.gbMain.Size = New System.Drawing.Size(531, 412) + Me.gbMain.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbMain.Size = New System.Drawing.Size(465, 330) Me.gbMain.TabIndex = 83 Me.gbMain.TabStop = False Me.gbMain.Text = "메인 제품 정보" @@ -1347,11 +1308,11 @@ Partial Class mainForm ' Me.txbMmodel.BackColor = System.Drawing.Color.AliceBlue Me.txbMmodel.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMmodel.Location = New System.Drawing.Point(107, 66) - Me.txbMmodel.Margin = New System.Windows.Forms.Padding(5) + Me.txbMmodel.Location = New System.Drawing.Point(94, 53) + Me.txbMmodel.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMmodel.Name = "txbMmodel" Me.txbMmodel.ReadOnly = True - Me.txbMmodel.Size = New System.Drawing.Size(401, 46) + Me.txbMmodel.Size = New System.Drawing.Size(351, 39) Me.txbMmodel.TabIndex = 11 Me.txbMmodel.Text = "N/A" Me.txbMmodel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1360,10 +1321,10 @@ Partial Class mainForm ' Me.lbMmodel.AutoSize = True Me.lbMmodel.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMmodel.Location = New System.Drawing.Point(41, 70) - Me.lbMmodel.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMmodel.Location = New System.Drawing.Point(36, 56) + Me.lbMmodel.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMmodel.Name = "lbMmodel" - Me.lbMmodel.Size = New System.Drawing.Size(75, 39) + Me.lbMmodel.Size = New System.Drawing.Size(60, 32) Me.lbMmodel.TabIndex = 10 Me.lbMmodel.Text = "모델" ' @@ -1381,11 +1342,9 @@ Partial Class mainForm Me.gbSetMain.Controls.Add(Me.lbMface) Me.gbSetMain.Controls.Add(Me.txbMeyeShot) Me.gbSetMain.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbSetMain.Location = New System.Drawing.Point(8, 101) - Me.gbSetMain.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbSetMain.Location = New System.Drawing.Point(7, 81) Me.gbSetMain.Name = "gbSetMain" - Me.gbSetMain.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbSetMain.Size = New System.Drawing.Size(515, 240) + Me.gbSetMain.Size = New System.Drawing.Size(451, 192) Me.gbSetMain.TabIndex = 21 Me.gbSetMain.TabStop = False ' @@ -1393,11 +1352,11 @@ Partial Class mainForm ' Me.txbMeyeSN.BackColor = System.Drawing.Color.AliceBlue Me.txbMeyeSN.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMeyeSN.Location = New System.Drawing.Point(99, 182) - Me.txbMeyeSN.Margin = New System.Windows.Forms.Padding(5) + Me.txbMeyeSN.Location = New System.Drawing.Point(87, 146) + Me.txbMeyeSN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMeyeSN.Name = "txbMeyeSN" Me.txbMeyeSN.ReadOnly = True - Me.txbMeyeSN.Size = New System.Drawing.Size(245, 51) + Me.txbMeyeSN.Size = New System.Drawing.Size(215, 43) Me.txbMeyeSN.TabIndex = 3 Me.txbMeyeSN.Text = "100000000000" Me.txbMeyeSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1406,11 +1365,11 @@ Partial Class mainForm ' Me.txbMfaceSN.BackColor = System.Drawing.Color.AliceBlue Me.txbMfaceSN.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMfaceSN.Location = New System.Drawing.Point(99, 124) - Me.txbMfaceSN.Margin = New System.Windows.Forms.Padding(5) + Me.txbMfaceSN.Location = New System.Drawing.Point(87, 99) + Me.txbMfaceSN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMfaceSN.Name = "txbMfaceSN" Me.txbMfaceSN.ReadOnly = True - Me.txbMfaceSN.Size = New System.Drawing.Size(245, 51) + Me.txbMfaceSN.Size = New System.Drawing.Size(215, 43) Me.txbMfaceSN.TabIndex = 1 Me.txbMfaceSN.Text = "100000000000" Me.txbMfaceSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1419,11 +1378,11 @@ Partial Class mainForm ' Me.txbMdevSN.BackColor = System.Drawing.Color.AliceBlue Me.txbMdevSN.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMdevSN.Location = New System.Drawing.Point(99, 65) - Me.txbMdevSN.Margin = New System.Windows.Forms.Padding(5) + Me.txbMdevSN.Location = New System.Drawing.Point(87, 52) + Me.txbMdevSN.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMdevSN.Name = "txbMdevSN" Me.txbMdevSN.ReadOnly = True - Me.txbMdevSN.Size = New System.Drawing.Size(245, 51) + Me.txbMdevSN.Size = New System.Drawing.Size(215, 43) Me.txbMdevSN.TabIndex = 5 Me.txbMdevSN.Text = "100000000000" Me.txbMdevSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1432,11 +1391,11 @@ Partial Class mainForm ' Me.txbMfaceShot.BackColor = System.Drawing.Color.AliceBlue Me.txbMfaceShot.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMfaceShot.Location = New System.Drawing.Point(357, 124) - Me.txbMfaceShot.Margin = New System.Windows.Forms.Padding(5) + Me.txbMfaceShot.Location = New System.Drawing.Point(312, 99) + Me.txbMfaceShot.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMfaceShot.Name = "txbMfaceShot" Me.txbMfaceShot.ReadOnly = True - Me.txbMfaceShot.Size = New System.Drawing.Size(142, 51) + Me.txbMfaceShot.Size = New System.Drawing.Size(125, 43) Me.txbMfaceShot.TabIndex = 7 Me.txbMfaceShot.Text = "0" Me.txbMfaceShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1445,10 +1404,10 @@ Partial Class mainForm ' Me.lbMdevice.AutoSize = True Me.lbMdevice.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMdevice.Location = New System.Drawing.Point(33, 70) - Me.lbMdevice.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMdevice.Location = New System.Drawing.Point(29, 56) + Me.lbMdevice.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMdevice.Name = "lbMdevice" - Me.lbMdevice.Size = New System.Drawing.Size(75, 39) + Me.lbMdevice.Size = New System.Drawing.Size(60, 32) Me.lbMdevice.TabIndex = 4 Me.lbMdevice.Text = "본체" ' @@ -1456,10 +1415,10 @@ Partial Class mainForm ' Me.lbMeye.AutoSize = True Me.lbMeye.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMeye.Location = New System.Drawing.Point(32, 190) - Me.lbMeye.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMeye.Location = New System.Drawing.Point(28, 152) + Me.lbMeye.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMeye.Name = "lbMeye" - Me.lbMeye.Size = New System.Drawing.Size(76, 39) + Me.lbMeye.Size = New System.Drawing.Size(61, 32) Me.lbMeye.TabIndex = 2 Me.lbMeye.Text = "EYE" ' @@ -1467,10 +1426,10 @@ Partial Class mainForm ' Me.lbMserial.AutoSize = True Me.lbMserial.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMserial.Location = New System.Drawing.Point(192, 21) - Me.lbMserial.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMserial.Location = New System.Drawing.Point(168, 17) + Me.lbMserial.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMserial.Name = "lbMserial" - Me.lbMserial.Size = New System.Drawing.Size(75, 39) + Me.lbMserial.Size = New System.Drawing.Size(60, 32) Me.lbMserial.TabIndex = 26 Me.lbMserial.Text = "S/N" ' @@ -1478,10 +1437,10 @@ Partial Class mainForm ' Me.lbMshot.AutoSize = True Me.lbMshot.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMshot.Location = New System.Drawing.Point(369, 21) - Me.lbMshot.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMshot.Location = New System.Drawing.Point(323, 17) + Me.lbMshot.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMshot.Name = "lbMshot" - Me.lbMshot.Size = New System.Drawing.Size(127, 39) + Me.lbMshot.Size = New System.Drawing.Size(101, 32) Me.lbMshot.TabIndex = 28 Me.lbMshot.Text = "FW / 샷" ' @@ -1489,11 +1448,11 @@ Partial Class mainForm ' Me.txbMdevShot.BackColor = System.Drawing.Color.AliceBlue Me.txbMdevShot.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMdevShot.Location = New System.Drawing.Point(357, 65) - Me.txbMdevShot.Margin = New System.Windows.Forms.Padding(5) + Me.txbMdevShot.Location = New System.Drawing.Point(312, 52) + Me.txbMdevShot.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMdevShot.Name = "txbMdevShot" Me.txbMdevShot.ReadOnly = True - Me.txbMdevShot.Size = New System.Drawing.Size(142, 51) + Me.txbMdevShot.Size = New System.Drawing.Size(125, 43) Me.txbMdevShot.TabIndex = 29 Me.txbMdevShot.Text = "N/A" Me.txbMdevShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1502,10 +1461,10 @@ Partial Class mainForm ' Me.lbMface.AutoSize = True Me.lbMface.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMface.Location = New System.Drawing.Point(15, 130) - Me.lbMface.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMface.Location = New System.Drawing.Point(13, 104) + Me.lbMface.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMface.Name = "lbMface" - Me.lbMface.Size = New System.Drawing.Size(96, 39) + Me.lbMface.Size = New System.Drawing.Size(76, 32) Me.lbMface.TabIndex = 22 Me.lbMface.Text = "FACE" ' @@ -1513,11 +1472,11 @@ Partial Class mainForm ' Me.txbMeyeShot.BackColor = System.Drawing.Color.AliceBlue Me.txbMeyeShot.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMeyeShot.Location = New System.Drawing.Point(357, 182) - Me.txbMeyeShot.Margin = New System.Windows.Forms.Padding(5) + Me.txbMeyeShot.Location = New System.Drawing.Point(312, 146) + Me.txbMeyeShot.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMeyeShot.Name = "txbMeyeShot" Me.txbMeyeShot.ReadOnly = True - Me.txbMeyeShot.Size = New System.Drawing.Size(142, 51) + Me.txbMeyeShot.Size = New System.Drawing.Size(125, 43) Me.txbMeyeShot.TabIndex = 9 Me.txbMeyeShot.Text = "0" Me.txbMeyeShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1526,11 +1485,11 @@ Partial Class mainForm ' Me.txbMagent.BackColor = System.Drawing.Color.AliceBlue Me.txbMagent.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMagent.Location = New System.Drawing.Point(353, 356) - Me.txbMagent.Margin = New System.Windows.Forms.Padding(5) + Me.txbMagent.Location = New System.Drawing.Point(309, 285) + Me.txbMagent.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMagent.Name = "txbMagent" Me.txbMagent.ReadOnly = True - Me.txbMagent.Size = New System.Drawing.Size(155, 46) + Me.txbMagent.Size = New System.Drawing.Size(136, 39) Me.txbMagent.TabIndex = 20 Me.txbMagent.Text = "0" Me.txbMagent.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1539,11 +1498,11 @@ Partial Class mainForm ' Me.txbMnt.BackColor = System.Drawing.Color.AliceBlue Me.txbMnt.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMnt.Location = New System.Drawing.Point(107, 356) - Me.txbMnt.Margin = New System.Windows.Forms.Padding(5) + Me.txbMnt.Location = New System.Drawing.Point(94, 285) + Me.txbMnt.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbMnt.Name = "txbMnt" Me.txbMnt.ReadOnly = True - Me.txbMnt.Size = New System.Drawing.Size(155, 46) + Me.txbMnt.Size = New System.Drawing.Size(136, 39) Me.txbMnt.TabIndex = 21 Me.txbMnt.Text = "0" Me.txbMnt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1552,10 +1511,10 @@ Partial Class mainForm ' Me.lbMagent.AutoSize = True Me.lbMagent.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMagent.Location = New System.Drawing.Point(274, 362) - Me.lbMagent.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMagent.Location = New System.Drawing.Point(240, 290) + Me.lbMagent.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMagent.Name = "lbMagent" - Me.lbMagent.Size = New System.Drawing.Size(93, 35) + Me.lbMagent.Size = New System.Drawing.Size(72, 27) Me.lbMagent.TabIndex = 19 Me.lbMagent.Text = "대리점" ' @@ -1563,10 +1522,10 @@ Partial Class mainForm ' Me.lbMnt.AutoSize = True Me.lbMnt.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMnt.Location = New System.Drawing.Point(6, 362) - Me.lbMnt.Margin = New System.Windows.Forms.Padding(5, 0, 5, 0) + Me.lbMnt.Location = New System.Drawing.Point(5, 290) + Me.lbMnt.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0) Me.lbMnt.Name = "lbMnt" - Me.lbMnt.Size = New System.Drawing.Size(119, 35) + Me.lbMnt.Size = New System.Drawing.Size(92, 27) Me.lbMnt.TabIndex = 17 Me.lbMnt.Text = "국가코드" ' @@ -1577,21 +1536,18 @@ Partial Class mainForm Me.pnTimer.Controls.Add(Me.gbTimeTotal) Me.pnTimer.Controls.Add(Me.gbTimeEnd) Me.pnTimer.Controls.Add(Me.gbTimeStart) - Me.pnTimer.Location = New System.Drawing.Point(549, 488) - Me.pnTimer.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnTimer.Location = New System.Drawing.Point(480, 390) Me.pnTimer.Name = "pnTimer" - Me.pnTimer.Size = New System.Drawing.Size(531, 456) + Me.pnTimer.Size = New System.Drawing.Size(465, 365) Me.pnTimer.TabIndex = 90 ' 'gbTimeAver ' Me.gbTimeAver.Controls.Add(Me.lbTimeAver) Me.gbTimeAver.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbTimeAver.Location = New System.Drawing.Point(266, 231) - Me.gbTimeAver.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbTimeAver.Location = New System.Drawing.Point(233, 185) Me.gbTimeAver.Name = "gbTimeAver" - Me.gbTimeAver.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbTimeAver.Size = New System.Drawing.Size(263, 225) + Me.gbTimeAver.Size = New System.Drawing.Size(230, 180) Me.gbTimeAver.TabIndex = 7 Me.gbTimeAver.TabStop = False Me.gbTimeAver.Text = "평균 시간" @@ -1600,9 +1556,9 @@ Partial Class mainForm ' Me.lbTimeAver.AutoSize = True Me.lbTimeAver.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbTimeAver.Location = New System.Drawing.Point(40, 88) + Me.lbTimeAver.Location = New System.Drawing.Point(35, 70) Me.lbTimeAver.Name = "lbTimeAver" - Me.lbTimeAver.Size = New System.Drawing.Size(213, 61) + Me.lbTimeAver.Size = New System.Drawing.Size(166, 49) Me.lbTimeAver.TabIndex = 0 Me.lbTimeAver.Text = "00:00:00" ' @@ -1610,11 +1566,9 @@ Partial Class mainForm ' Me.gbTimeTotal.Controls.Add(Me.lbTimeTotal) Me.gbTimeTotal.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbTimeTotal.Location = New System.Drawing.Point(0, 231) - Me.gbTimeTotal.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbTimeTotal.Location = New System.Drawing.Point(0, 185) Me.gbTimeTotal.Name = "gbTimeTotal" - Me.gbTimeTotal.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbTimeTotal.Size = New System.Drawing.Size(263, 225) + Me.gbTimeTotal.Size = New System.Drawing.Size(230, 180) Me.gbTimeTotal.TabIndex = 6 Me.gbTimeTotal.TabStop = False Me.gbTimeTotal.Text = "소요 시간" @@ -1623,9 +1577,9 @@ Partial Class mainForm ' Me.lbTimeTotal.AutoSize = True Me.lbTimeTotal.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbTimeTotal.Location = New System.Drawing.Point(40, 88) + Me.lbTimeTotal.Location = New System.Drawing.Point(35, 70) Me.lbTimeTotal.Name = "lbTimeTotal" - Me.lbTimeTotal.Size = New System.Drawing.Size(213, 61) + Me.lbTimeTotal.Size = New System.Drawing.Size(166, 49) Me.lbTimeTotal.TabIndex = 0 Me.lbTimeTotal.Text = "00:00:00" ' @@ -1633,11 +1587,9 @@ Partial Class mainForm ' Me.gbTimeEnd.Controls.Add(Me.lbTimeEnd) Me.gbTimeEnd.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbTimeEnd.Location = New System.Drawing.Point(266, 0) - Me.gbTimeEnd.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbTimeEnd.Location = New System.Drawing.Point(233, 0) Me.gbTimeEnd.Name = "gbTimeEnd" - Me.gbTimeEnd.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbTimeEnd.Size = New System.Drawing.Size(263, 225) + Me.gbTimeEnd.Size = New System.Drawing.Size(230, 180) Me.gbTimeEnd.TabIndex = 5 Me.gbTimeEnd.TabStop = False Me.gbTimeEnd.Text = "종료 시간" @@ -1646,9 +1598,9 @@ Partial Class mainForm ' Me.lbTimeEnd.AutoSize = True Me.lbTimeEnd.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbTimeEnd.Location = New System.Drawing.Point(40, 88) + Me.lbTimeEnd.Location = New System.Drawing.Point(35, 70) Me.lbTimeEnd.Name = "lbTimeEnd" - Me.lbTimeEnd.Size = New System.Drawing.Size(213, 61) + Me.lbTimeEnd.Size = New System.Drawing.Size(166, 49) Me.lbTimeEnd.TabIndex = 0 Me.lbTimeEnd.Text = "00:00:00" ' @@ -1657,10 +1609,8 @@ Partial Class mainForm Me.gbTimeStart.Controls.Add(Me.lbTimeStart) Me.gbTimeStart.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbTimeStart.Location = New System.Drawing.Point(0, 0) - Me.gbTimeStart.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.gbTimeStart.Name = "gbTimeStart" - Me.gbTimeStart.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbTimeStart.Size = New System.Drawing.Size(263, 225) + Me.gbTimeStart.Size = New System.Drawing.Size(230, 180) Me.gbTimeStart.TabIndex = 4 Me.gbTimeStart.TabStop = False Me.gbTimeStart.Text = "시작 시간" @@ -1669,9 +1619,9 @@ Partial Class mainForm ' Me.lbTimeStart.AutoSize = True Me.lbTimeStart.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbTimeStart.Location = New System.Drawing.Point(40, 88) + Me.lbTimeStart.Location = New System.Drawing.Point(35, 70) Me.lbTimeStart.Name = "lbTimeStart" - Me.lbTimeStart.Size = New System.Drawing.Size(213, 61) + Me.lbTimeStart.Size = New System.Drawing.Size(166, 49) Me.lbTimeStart.TabIndex = 0 Me.lbTimeStart.Text = "00:00:00" ' @@ -1681,18 +1631,16 @@ Partial Class mainForm Me.pn_image.Controls.Add(Me.Button1) Me.pn_image.Controls.Add(Me.TextBox1) Me.pn_image.Controls.Add(Me.picb_main) - Me.pn_image.Location = New System.Drawing.Point(549, 488) - Me.pn_image.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pn_image.Location = New System.Drawing.Point(480, 390) Me.pn_image.Name = "pn_image" - Me.pn_image.Size = New System.Drawing.Size(531, 456) + Me.pn_image.Size = New System.Drawing.Size(465, 365) Me.pn_image.TabIndex = 86 ' 'Button1 ' - Me.Button1.Location = New System.Drawing.Point(379, 322) - Me.Button1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.Button1.Location = New System.Drawing.Point(332, 258) Me.Button1.Name = "Button1" - Me.Button1.Size = New System.Drawing.Size(91, 61) + Me.Button1.Size = New System.Drawing.Size(80, 49) Me.Button1.TabIndex = 3 Me.Button1.Text = "Button1" Me.Button1.UseVisualStyleBackColor = True @@ -1700,21 +1648,19 @@ Partial Class mainForm ' 'TextBox1 ' - Me.TextBox1.Location = New System.Drawing.Point(42, 45) - Me.TextBox1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.TextBox1.Location = New System.Drawing.Point(37, 36) Me.TextBox1.Multiline = True Me.TextBox1.Name = "TextBox1" - Me.TextBox1.Size = New System.Drawing.Size(443, 350) + Me.TextBox1.Size = New System.Drawing.Size(388, 281) Me.TextBox1.TabIndex = 2 ' 'picb_main ' Me.picb_main.BackColor = System.Drawing.Color.FromArgb(CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(224, Byte), Integer)) Me.picb_main.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center - Me.picb_main.Location = New System.Drawing.Point(34, 38) - Me.picb_main.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.picb_main.Location = New System.Drawing.Point(30, 30) Me.picb_main.Name = "picb_main" - Me.picb_main.Size = New System.Drawing.Size(463, 375) + Me.picb_main.Size = New System.Drawing.Size(405, 300) Me.picb_main.TabIndex = 1 Me.picb_main.TabStop = False ' @@ -1722,18 +1668,16 @@ Partial Class mainForm ' Me.pnBtn.Controls.Add(Me.btnStart) Me.pnBtn.Controls.Add(Me.btnReset) - Me.pnBtn.Location = New System.Drawing.Point(6, 819) - Me.pnBtn.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnBtn.Location = New System.Drawing.Point(5, 655) Me.pnBtn.Name = "pnBtn" - Me.pnBtn.Size = New System.Drawing.Size(531, 125) + Me.pnBtn.Size = New System.Drawing.Size(465, 100) Me.pnBtn.TabIndex = 49 ' 'btnStart ' - Me.btnStart.Location = New System.Drawing.Point(274, 0) - Me.btnStart.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnStart.Location = New System.Drawing.Point(240, 0) Me.btnStart.Name = "btnStart" - Me.btnStart.Size = New System.Drawing.Size(256, 125) + Me.btnStart.Size = New System.Drawing.Size(224, 100) Me.btnStart.TabIndex = 87 Me.btnStart.Text = "등록" Me.btnStart.UseVisualStyleBackColor = True @@ -1741,9 +1685,8 @@ Partial Class mainForm 'btnReset ' Me.btnReset.Location = New System.Drawing.Point(0, 0) - Me.btnReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.btnReset.Name = "btnReset" - Me.btnReset.Size = New System.Drawing.Size(266, 125) + Me.btnReset.Size = New System.Drawing.Size(233, 100) Me.btnReset.TabIndex = 88 Me.btnReset.Text = "초기화" Me.btnReset.UseVisualStyleBackColor = True @@ -1752,30 +1695,28 @@ Partial Class mainForm ' Me.pnbotWeight.Controls.Add(Me.txbCheckWeight) Me.pnbotWeight.Controls.Add(Me.lbCheckWeight) - Me.pnbotWeight.Location = New System.Drawing.Point(6, 819) - Me.pnbotWeight.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnbotWeight.Location = New System.Drawing.Point(5, 655) Me.pnbotWeight.Name = "pnbotWeight" - Me.pnbotWeight.Size = New System.Drawing.Size(531, 125) + Me.pnbotWeight.Size = New System.Drawing.Size(465, 100) Me.pnbotWeight.TabIndex = 50 ' 'txbCheckWeight ' Me.txbCheckWeight.BackColor = System.Drawing.SystemColors.Window Me.txbCheckWeight.Font = New System.Drawing.Font("함초롬바탕", 36.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbCheckWeight.Location = New System.Drawing.Point(166, 19) - Me.txbCheckWeight.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbCheckWeight.Location = New System.Drawing.Point(145, 15) Me.txbCheckWeight.Name = "txbCheckWeight" Me.txbCheckWeight.ReadOnly = True - Me.txbCheckWeight.Size = New System.Drawing.Size(355, 85) + Me.txbCheckWeight.Size = New System.Drawing.Size(311, 70) Me.txbCheckWeight.TabIndex = 1 Me.txbCheckWeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'lbCheckWeight ' Me.lbCheckWeight.AutoSize = True - Me.lbCheckWeight.Location = New System.Drawing.Point(14, 41) + Me.lbCheckWeight.Location = New System.Drawing.Point(12, 33) Me.lbCheckWeight.Name = "lbCheckWeight" - Me.lbCheckWeight.Size = New System.Drawing.Size(161, 44) + Me.lbCheckWeight.Size = New System.Drawing.Size(127, 35) Me.lbCheckWeight.TabIndex = 0 Me.lbCheckWeight.Text = "측정 무게" ' @@ -1788,11 +1729,11 @@ Partial Class mainForm Me.gbProdList.Controls.Add(Me.lbProdName) Me.gbProdList.Controls.Add(Me.lbProdCountB) Me.gbProdList.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbProdList.Location = New System.Drawing.Point(5, 359) - Me.gbProdList.Margin = New System.Windows.Forms.Padding(5) + Me.gbProdList.Location = New System.Drawing.Point(4, 287) + Me.gbProdList.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbProdList.Name = "gbProdList" - Me.gbProdList.Padding = New System.Windows.Forms.Padding(5) - Me.gbProdList.Size = New System.Drawing.Size(1086, 951) + Me.gbProdList.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbProdList.Size = New System.Drawing.Size(950, 761) Me.gbProdList.TabIndex = 103 Me.gbProdList.TabStop = False Me.gbProdList.Text = "출고 조건" @@ -1803,21 +1744,20 @@ Partial Class mainForm Me.pnProdList.Controls.Add(Me.txbProdName0) Me.pnProdList.Controls.Add(Me.txbProdCountC0) Me.pnProdList.Controls.Add(Me.txbProdCountB0) - Me.pnProdList.Location = New System.Drawing.Point(0, 102) - Me.pnProdList.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnProdList.Location = New System.Drawing.Point(0, 82) Me.pnProdList.Name = "pnProdList" - Me.pnProdList.Size = New System.Drawing.Size(1080, 840) + Me.pnProdList.Size = New System.Drawing.Size(945, 672) Me.pnProdList.TabIndex = 104 ' 'txbProdName0 ' Me.txbProdName0.BackColor = System.Drawing.Color.Lavender Me.txbProdName0.Font = New System.Drawing.Font("굴림", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbProdName0.Location = New System.Drawing.Point(5, 5) - Me.txbProdName0.Margin = New System.Windows.Forms.Padding(5) + Me.txbProdName0.Location = New System.Drawing.Point(4, 4) + Me.txbProdName0.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.txbProdName0.Name = "txbProdName0" Me.txbProdName0.ReadOnly = True - Me.txbProdName0.Size = New System.Drawing.Size(649, 61) + Me.txbProdName0.Size = New System.Drawing.Size(568, 50) Me.txbProdName0.TabIndex = 47 Me.txbProdName0.Text = "구성품1" ' @@ -1825,11 +1765,10 @@ Partial Class mainForm ' Me.txbProdCountC0.BackColor = System.Drawing.Color.Lavender Me.txbProdCountC0.Font = New System.Drawing.Font("굴림", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbProdCountC0.Location = New System.Drawing.Point(757, 5) - Me.txbProdCountC0.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbProdCountC0.Location = New System.Drawing.Point(662, 4) Me.txbProdCountC0.Name = "txbProdCountC0" Me.txbProdCountC0.ReadOnly = True - Me.txbProdCountC0.Size = New System.Drawing.Size(100, 61) + Me.txbProdCountC0.Size = New System.Drawing.Size(88, 50) Me.txbProdCountC0.TabIndex = 46 Me.txbProdCountC0.Text = "0" Me.txbProdCountC0.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1838,11 +1777,10 @@ Partial Class mainForm ' Me.txbProdCountB0.BackColor = System.Drawing.Color.Lavender Me.txbProdCountB0.Font = New System.Drawing.Font("굴림", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbProdCountB0.Location = New System.Drawing.Point(655, 5) - Me.txbProdCountB0.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbProdCountB0.Location = New System.Drawing.Point(573, 4) Me.txbProdCountB0.Name = "txbProdCountB0" Me.txbProdCountB0.ReadOnly = True - Me.txbProdCountB0.Size = New System.Drawing.Size(100, 61) + Me.txbProdCountB0.Size = New System.Drawing.Size(88, 50) Me.txbProdCountB0.TabIndex = 48 Me.txbProdCountB0.Text = "0" Me.txbProdCountB0.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1851,10 +1789,9 @@ Partial Class mainForm ' Me.ckb_component.AutoSize = True Me.ckb_component.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckb_component.Location = New System.Drawing.Point(-69, 1312) - Me.ckb_component.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckb_component.Location = New System.Drawing.Point(-60, 1050) Me.ckb_component.Name = "ckb_component" - Me.ckb_component.Size = New System.Drawing.Size(126, 43) + Me.ckb_component.Size = New System.Drawing.Size(102, 36) Me.ckb_component.TabIndex = 76 Me.ckb_component.Text = "구성품" Me.ckb_component.UseVisualStyleBackColor = True @@ -1863,10 +1800,9 @@ Partial Class mainForm ' Me.ckb_cartridge.AutoSize = True Me.ckb_cartridge.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckb_cartridge.Location = New System.Drawing.Point(-69, 1312) - Me.ckb_cartridge.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckb_cartridge.Location = New System.Drawing.Point(-60, 1050) Me.ckb_cartridge.Name = "ckb_cartridge" - Me.ckb_cartridge.Size = New System.Drawing.Size(222, 43) + Me.ckb_cartridge.Size = New System.Drawing.Size(178, 36) Me.ckb_cartridge.TabIndex = 77 Me.ckb_cartridge.Text = "단품 카트리지" Me.ckb_cartridge.UseVisualStyleBackColor = True @@ -1874,27 +1810,27 @@ Partial Class mainForm 'lbProdCountC ' Me.lbProdCountC.AutoSize = True - Me.lbProdCountC.Location = New System.Drawing.Point(942, 58) + Me.lbProdCountC.Location = New System.Drawing.Point(824, 46) Me.lbProdCountC.Name = "lbProdCountC" - Me.lbProdCountC.Size = New System.Drawing.Size(151, 44) + Me.lbProdCountC.Size = New System.Drawing.Size(119, 35) Me.lbProdCountC.TabIndex = 63 Me.lbProdCountC.Text = "확인수량" ' 'lbProdName ' Me.lbProdName.AutoSize = True - Me.lbProdName.Location = New System.Drawing.Point(325, 56) + Me.lbProdName.Location = New System.Drawing.Point(284, 45) Me.lbProdName.Name = "lbProdName" - Me.lbProdName.Size = New System.Drawing.Size(184, 44) + Me.lbProdName.Size = New System.Drawing.Size(145, 35) Me.lbProdName.TabIndex = 61 Me.lbProdName.Text = "구성품목명" ' 'lbProdCountB ' Me.lbProdCountB.AutoSize = True - Me.lbProdCountB.Location = New System.Drawing.Point(814, 58) + Me.lbProdCountB.Location = New System.Drawing.Point(712, 46) Me.lbProdCountB.Name = "lbProdCountB" - Me.lbProdCountB.Size = New System.Drawing.Size(151, 44) + Me.lbProdCountB.Size = New System.Drawing.Size(119, 35) Me.lbProdCountB.TabIndex = 62 Me.lbProdCountB.Text = "구매수량" ' @@ -1902,22 +1838,20 @@ Partial Class mainForm ' Me.pnResult.BackColor = System.Drawing.Color.Silver Me.pnResult.Controls.Add(Me.txbResult) - Me.pnResult.Location = New System.Drawing.Point(6, 150) - Me.pnResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnResult.Location = New System.Drawing.Point(5, 120) Me.pnResult.Name = "pnResult" - Me.pnResult.Size = New System.Drawing.Size(1086, 206) + Me.pnResult.Size = New System.Drawing.Size(950, 165) Me.pnResult.TabIndex = 102 ' 'txbResult ' Me.txbResult.BackColor = System.Drawing.Color.LemonChiffon Me.txbResult.Font = New System.Drawing.Font("함초롬바탕", 65.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbResult.Location = New System.Drawing.Point(6, 25) - Me.txbResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbResult.Location = New System.Drawing.Point(5, 20) Me.txbResult.Multiline = True Me.txbResult.Name = "txbResult" Me.txbResult.ReadOnly = True - Me.txbResult.Size = New System.Drawing.Size(1074, 152) + Me.txbResult.Size = New System.Drawing.Size(940, 122) Me.txbResult.TabIndex = 1 Me.txbResult.Text = "대기중" Me.txbResult.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1927,10 +1861,10 @@ Partial Class mainForm Me.btnExit.BackColor = System.Drawing.Color.Silver Me.btnExit.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.btnExit.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnExit.Location = New System.Drawing.Point(2045, 5) - Me.btnExit.Margin = New System.Windows.Forms.Padding(5) + Me.btnExit.Location = New System.Drawing.Point(1789, 4) + Me.btnExit.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.btnExit.Name = "btnExit" - Me.btnExit.Size = New System.Drawing.Size(145, 132) + Me.btnExit.Size = New System.Drawing.Size(127, 106) Me.btnExit.TabIndex = 101 Me.btnExit.Text = "종료" Me.btnExit.UseVisualStyleBackColor = False @@ -1940,10 +1874,10 @@ Partial Class mainForm Me.btnOption.BackColor = System.Drawing.Color.Silver Me.btnOption.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.btnOption.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnOption.Location = New System.Drawing.Point(1898, 5) - Me.btnOption.Margin = New System.Windows.Forms.Padding(5) + Me.btnOption.Location = New System.Drawing.Point(1661, 4) + Me.btnOption.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.btnOption.Name = "btnOption" - Me.btnOption.Size = New System.Drawing.Size(145, 132) + Me.btnOption.Size = New System.Drawing.Size(127, 106) Me.btnOption.TabIndex = 100 Me.btnOption.Text = "설정" Me.btnOption.UseVisualStyleBackColor = False @@ -1953,10 +1887,10 @@ Partial Class mainForm Me.btnChange.BackColor = System.Drawing.Color.Silver Me.btnChange.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.btnChange.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnChange.Location = New System.Drawing.Point(1752, 5) - Me.btnChange.Margin = New System.Windows.Forms.Padding(5) + Me.btnChange.Location = New System.Drawing.Point(1533, 4) + Me.btnChange.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.btnChange.Name = "btnChange" - Me.btnChange.Size = New System.Drawing.Size(145, 132) + Me.btnChange.Size = New System.Drawing.Size(127, 106) Me.btnChange.TabIndex = 99 Me.btnChange.Text = "패킹코드" Me.btnChange.UseVisualStyleBackColor = False @@ -1970,21 +1904,19 @@ Partial Class mainForm Me.pnMassCount.Controls.Add(Me.txbRequest) Me.pnMassCount.Controls.Add(Me.lbWork) Me.pnMassCount.Controls.Add(Me.lbRequest) - Me.pnMassCount.Location = New System.Drawing.Point(1103, 150) - Me.pnMassCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMassCount.Location = New System.Drawing.Point(965, 120) Me.pnMassCount.Name = "pnMassCount" - Me.pnMassCount.Size = New System.Drawing.Size(1086, 204) + Me.pnMassCount.Size = New System.Drawing.Size(950, 163) Me.pnMassCount.TabIndex = 105 ' 'txbLeftOver ' Me.txbLeftOver.BackColor = System.Drawing.SystemColors.Window Me.txbLeftOver.Font = New System.Drawing.Font("함초롬바탕", 56.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbLeftOver.Location = New System.Drawing.Point(726, 62) - Me.txbLeftOver.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbLeftOver.Location = New System.Drawing.Point(635, 50) Me.txbLeftOver.Name = "txbLeftOver" Me.txbLeftOver.ReadOnly = True - Me.txbLeftOver.Size = New System.Drawing.Size(342, 129) + Me.txbLeftOver.Size = New System.Drawing.Size(300, 105) Me.txbLeftOver.TabIndex = 13 Me.txbLeftOver.Text = "100000" Me.txbLeftOver.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1993,9 +1925,9 @@ Partial Class mainForm ' Me.lbLeftOver.AutoSize = True Me.lbLeftOver.Font = New System.Drawing.Font("함초롬바탕", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbLeftOver.Location = New System.Drawing.Point(807, 9) + Me.lbLeftOver.Location = New System.Drawing.Point(706, 7) Me.lbLeftOver.Name = "lbLeftOver" - Me.lbLeftOver.Size = New System.Drawing.Size(178, 52) + Me.lbLeftOver.Size = New System.Drawing.Size(142, 41) Me.lbLeftOver.TabIndex = 12 Me.lbLeftOver.Text = "잔여수량" ' @@ -2003,11 +1935,10 @@ Partial Class mainForm ' Me.txbWork.BackColor = System.Drawing.SystemColors.Window Me.txbWork.Font = New System.Drawing.Font("함초롬바탕", 56.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbWork.Location = New System.Drawing.Point(371, 62) - Me.txbWork.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbWork.Location = New System.Drawing.Point(325, 50) Me.txbWork.Name = "txbWork" Me.txbWork.ReadOnly = True - Me.txbWork.Size = New System.Drawing.Size(342, 129) + Me.txbWork.Size = New System.Drawing.Size(300, 105) Me.txbWork.TabIndex = 11 Me.txbWork.Text = "0" Me.txbWork.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2016,11 +1947,10 @@ Partial Class mainForm ' Me.txbRequest.BackColor = System.Drawing.SystemColors.Window Me.txbRequest.Font = New System.Drawing.Font("함초롬바탕", 56.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbRequest.Location = New System.Drawing.Point(17, 62) - Me.txbRequest.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbRequest.Location = New System.Drawing.Point(15, 50) Me.txbRequest.Name = "txbRequest" Me.txbRequest.ReadOnly = True - Me.txbRequest.Size = New System.Drawing.Size(342, 129) + Me.txbRequest.Size = New System.Drawing.Size(300, 105) Me.txbRequest.TabIndex = 10 Me.txbRequest.Text = "100000" Me.txbRequest.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2029,9 +1959,9 @@ Partial Class mainForm ' Me.lbWork.AutoSize = True Me.lbWork.Font = New System.Drawing.Font("함초롬바탕", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbWork.Location = New System.Drawing.Point(465, 9) + Me.lbWork.Location = New System.Drawing.Point(407, 7) Me.lbWork.Name = "lbWork" - Me.lbWork.Size = New System.Drawing.Size(178, 52) + Me.lbWork.Size = New System.Drawing.Size(142, 41) Me.lbWork.TabIndex = 9 Me.lbWork.Text = "작업수량" ' @@ -2039,9 +1969,9 @@ Partial Class mainForm ' Me.lbRequest.AutoSize = True Me.lbRequest.Font = New System.Drawing.Font("함초롬바탕", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbRequest.Location = New System.Drawing.Point(111, 9) + Me.lbRequest.Location = New System.Drawing.Point(97, 7) Me.lbRequest.Name = "lbRequest" - Me.lbRequest.Size = New System.Drawing.Size(178, 52) + Me.lbRequest.Size = New System.Drawing.Size(142, 41) Me.lbRequest.TabIndex = 8 Me.lbRequest.Text = "요청수량" ' @@ -2050,21 +1980,19 @@ Partial Class mainForm Me.pnPacking.BackColor = System.Drawing.Color.Silver Me.pnPacking.Controls.Add(Me.txbPacking) Me.pnPacking.Controls.Add(Me.lbPacking) - Me.pnPacking.Location = New System.Drawing.Point(1103, 150) - Me.pnPacking.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnPacking.Location = New System.Drawing.Point(965, 120) Me.pnPacking.Name = "pnPacking" - Me.pnPacking.Size = New System.Drawing.Size(1086, 206) + Me.pnPacking.Size = New System.Drawing.Size(950, 165) Me.pnPacking.TabIndex = 104 ' 'txbPacking ' Me.txbPacking.BackColor = System.Drawing.Color.Azure Me.txbPacking.Font = New System.Drawing.Font("함초롬바탕", 62.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbPacking.Location = New System.Drawing.Point(246, 30) - Me.txbPacking.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPacking.Location = New System.Drawing.Point(215, 24) Me.txbPacking.Multiline = True Me.txbPacking.Name = "txbPacking" - Me.txbPacking.Size = New System.Drawing.Size(820, 152) + Me.txbPacking.Size = New System.Drawing.Size(718, 122) Me.txbPacking.TabIndex = 10 Me.txbPacking.Text = "패킹 코드" Me.txbPacking.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2073,9 +2001,9 @@ Partial Class mainForm ' Me.lbPacking.AutoSize = True Me.lbPacking.Font = New System.Drawing.Font("함초롬바탕", 36.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbPacking.Location = New System.Drawing.Point(3, 60) + Me.lbPacking.Location = New System.Drawing.Point(3, 48) Me.lbPacking.Name = "lbPacking" - Me.lbPacking.Size = New System.Drawing.Size(265, 78) + Me.lbPacking.Size = New System.Drawing.Size(215, 62) Me.lbPacking.TabIndex = 86 Me.lbPacking.Text = "출고코드" ' @@ -2085,11 +2013,11 @@ Partial Class mainForm Me.gbAutoMode.Controls.Add(Me.lbAutoMode) Me.gbAutoMode.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbAutoMode.ForeColor = System.Drawing.Color.Black - Me.gbAutoMode.Location = New System.Drawing.Point(5, 5) - Me.gbAutoMode.Margin = New System.Windows.Forms.Padding(5) + Me.gbAutoMode.Location = New System.Drawing.Point(4, 4) + Me.gbAutoMode.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbAutoMode.Name = "gbAutoMode" - Me.gbAutoMode.Padding = New System.Windows.Forms.Padding(5) - Me.gbAutoMode.Size = New System.Drawing.Size(510, 134) + Me.gbAutoMode.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbAutoMode.Size = New System.Drawing.Size(446, 107) Me.gbAutoMode.TabIndex = 102 Me.gbAutoMode.TabStop = False Me.gbAutoMode.Text = "자동화 모드 선택" @@ -2099,9 +2027,9 @@ Partial Class mainForm Me.lbAutoMode.AutoSize = True Me.lbAutoMode.Font = New System.Drawing.Font("함초롬바탕", 36.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.lbAutoMode.ForeColor = System.Drawing.Color.Blue - Me.lbAutoMode.Location = New System.Drawing.Point(57, 36) + Me.lbAutoMode.Location = New System.Drawing.Point(50, 29) Me.lbAutoMode.Name = "lbAutoMode" - Me.lbAutoMode.Size = New System.Drawing.Size(417, 78) + Me.lbAutoMode.Size = New System.Drawing.Size(337, 62) Me.lbAutoMode.TabIndex = 0 Me.lbAutoMode.Text = "무게 측정 공정" ' @@ -2111,11 +2039,11 @@ Partial Class mainForm Me.gbInv.Controls.Add(Me.ckbInv) Me.gbInv.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbInv.ForeColor = System.Drawing.Color.Black - Me.gbInv.Location = New System.Drawing.Point(349, 5) - Me.gbInv.Margin = New System.Windows.Forms.Padding(5) + Me.gbInv.Location = New System.Drawing.Point(305, 4) + Me.gbInv.Margin = New System.Windows.Forms.Padding(4, 4, 4, 4) Me.gbInv.Name = "gbInv" - Me.gbInv.Padding = New System.Windows.Forms.Padding(5) - Me.gbInv.Size = New System.Drawing.Size(166, 132) + Me.gbInv.Padding = New System.Windows.Forms.Padding(4, 4, 4, 4) + Me.gbInv.Size = New System.Drawing.Size(145, 106) Me.gbInv.TabIndex = 101 Me.gbInv.TabStop = False Me.gbInv.Text = "송장등록" @@ -2126,10 +2054,9 @@ Partial Class mainForm Me.ckbInv.Checked = True Me.ckbInv.CheckState = System.Windows.Forms.CheckState.Checked Me.ckbInv.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckbInv.Location = New System.Drawing.Point(16, 51) - Me.ckbInv.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckbInv.Location = New System.Drawing.Point(14, 41) Me.ckbInv.Name = "ckbInv" - Me.ckbInv.Size = New System.Drawing.Size(155, 43) + Me.ckbInv.Size = New System.Drawing.Size(125, 36) Me.ckbInv.TabIndex = 0 Me.ckbInv.Text = "송장등록" Me.ckbInv.UseVisualStyleBackColor = True @@ -2151,10 +2078,9 @@ Partial Class mainForm Me.pnOption.Controls.Add(Me.gbWeightRg) Me.pnOption.Controls.Add(Me.gbWeigth) Me.pnOption.Controls.Add(Me.gbDBNew) - Me.pnOption.Location = New System.Drawing.Point(2194, 0) - Me.pnOption.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnOption.Location = New System.Drawing.Point(1920, 0) Me.pnOption.Name = "pnOption" - Me.pnOption.Size = New System.Drawing.Size(2194, 1325) + Me.pnOption.Size = New System.Drawing.Size(1920, 1060) Me.pnOption.TabIndex = 83 ' 'gbMass @@ -2164,11 +2090,9 @@ Partial Class mainForm Me.gbMass.Controls.Add(Me.rdbNew) Me.gbMass.Enabled = False Me.gbMass.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbMass.Location = New System.Drawing.Point(1817, 214) - Me.gbMass.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbMass.Location = New System.Drawing.Point(1590, 171) Me.gbMass.Name = "gbMass" - Me.gbMass.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbMass.Size = New System.Drawing.Size(368, 88) + Me.gbMass.Size = New System.Drawing.Size(322, 70) Me.gbMass.TabIndex = 109 Me.gbMass.TabStop = False Me.gbMass.Text = "대량 포장 설정" @@ -2176,10 +2100,9 @@ Partial Class mainForm 'rdbBef ' Me.rdbBef.AutoSize = True - Me.rdbBef.Location = New System.Drawing.Point(185, 35) - Me.rdbBef.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbBef.Location = New System.Drawing.Point(162, 28) Me.rdbBef.Name = "rdbBef" - Me.rdbBef.Size = New System.Drawing.Size(106, 28) + Me.rdbBef.Size = New System.Drawing.Size(86, 23) Me.rdbBef.TabIndex = 1 Me.rdbBef.Text = "Before" Me.rdbBef.UseVisualStyleBackColor = True @@ -2187,10 +2110,9 @@ Partial Class mainForm 'rdbNew ' Me.rdbNew.AutoSize = True - Me.rdbNew.Location = New System.Drawing.Point(69, 35) - Me.rdbNew.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbNew.Location = New System.Drawing.Point(60, 28) Me.rdbNew.Name = "rdbNew" - Me.rdbNew.Size = New System.Drawing.Size(79, 28) + Me.rdbNew.Size = New System.Drawing.Size(66, 23) Me.rdbNew.TabIndex = 0 Me.rdbNew.Text = "New" Me.rdbNew.UseVisualStyleBackColor = True @@ -2202,11 +2124,9 @@ Partial Class mainForm Me.gbMesDb.Controls.Add(Me.rdbMesDbAPI) Me.gbMesDb.Enabled = False Me.gbMesDb.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbMesDb.Location = New System.Drawing.Point(1817, 119) - Me.gbMesDb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbMesDb.Location = New System.Drawing.Point(1590, 95) Me.gbMesDb.Name = "gbMesDb" - Me.gbMesDb.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbMesDb.Size = New System.Drawing.Size(368, 88) + Me.gbMesDb.Size = New System.Drawing.Size(322, 70) Me.gbMesDb.TabIndex = 108 Me.gbMesDb.TabStop = False Me.gbMesDb.Text = "MES DB 설정" @@ -2214,10 +2134,9 @@ Partial Class mainForm 'rdbMesDbPg ' Me.rdbMesDbPg.AutoSize = True - Me.rdbMesDbPg.Location = New System.Drawing.Point(185, 35) - Me.rdbMesDbPg.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbMesDbPg.Location = New System.Drawing.Point(162, 28) Me.rdbMesDbPg.Name = "rdbMesDbPg" - Me.rdbMesDbPg.Size = New System.Drawing.Size(118, 28) + Me.rdbMesDbPg.Size = New System.Drawing.Size(97, 23) Me.rdbMesDbPg.TabIndex = 1 Me.rdbMesDbPg.Text = "Postgre" Me.rdbMesDbPg.UseVisualStyleBackColor = True @@ -2225,10 +2144,9 @@ Partial Class mainForm 'rdbMesDbAPI ' Me.rdbMesDbAPI.AutoSize = True - Me.rdbMesDbAPI.Location = New System.Drawing.Point(69, 35) - Me.rdbMesDbAPI.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbMesDbAPI.Location = New System.Drawing.Point(60, 28) Me.rdbMesDbAPI.Name = "rdbMesDbAPI" - Me.rdbMesDbAPI.Size = New System.Drawing.Size(68, 28) + Me.rdbMesDbAPI.Size = New System.Drawing.Size(56, 23) Me.rdbMesDbAPI.TabIndex = 0 Me.rdbMesDbAPI.Text = "API" Me.rdbMesDbAPI.UseVisualStyleBackColor = True @@ -2238,11 +2156,9 @@ Partial Class mainForm Me.gbAutoCount.Controls.Add(Me.pnAutoCount) Me.gbAutoCount.Controls.Add(Me.pnAutoCount2) Me.gbAutoCount.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbAutoCount.Location = New System.Drawing.Point(1439, 309) - Me.gbAutoCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbAutoCount.Location = New System.Drawing.Point(1259, 247) Me.gbAutoCount.Name = "gbAutoCount" - Me.gbAutoCount.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbAutoCount.Size = New System.Drawing.Size(374, 110) + Me.gbAutoCount.Size = New System.Drawing.Size(327, 88) Me.gbAutoCount.TabIndex = 103 Me.gbAutoCount.TabStop = False Me.gbAutoCount.Text = "자동화 - 기본 포장 수량" @@ -2251,18 +2167,17 @@ Partial Class mainForm ' Me.pnAutoCount.Controls.Add(Me.lbAutoCount) Me.pnAutoCount.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnAutoCount.Location = New System.Drawing.Point(7, 35) - Me.pnAutoCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnAutoCount.Location = New System.Drawing.Point(6, 28) Me.pnAutoCount.Name = "pnAutoCount" - Me.pnAutoCount.Size = New System.Drawing.Size(106, 52) + Me.pnAutoCount.Size = New System.Drawing.Size(93, 42) Me.pnAutoCount.TabIndex = 2 ' 'lbAutoCount ' Me.lbAutoCount.AutoSize = True - Me.lbAutoCount.Location = New System.Drawing.Point(3, 16) + Me.lbAutoCount.Location = New System.Drawing.Point(3, 13) Me.lbAutoCount.Name = "lbAutoCount" - Me.lbAutoCount.Size = New System.Drawing.Size(110, 24) + Me.lbAutoCount.Size = New System.Drawing.Size(89, 19) Me.lbAutoCount.TabIndex = 0 Me.lbAutoCount.Text = "포장개수" ' @@ -2270,18 +2185,16 @@ Partial Class mainForm ' Me.pnAutoCount2.Controls.Add(Me.txbAutoCount) Me.pnAutoCount2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnAutoCount2.Location = New System.Drawing.Point(119, 35) - Me.pnAutoCount2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnAutoCount2.Location = New System.Drawing.Point(104, 28) Me.pnAutoCount2.Name = "pnAutoCount2" - Me.pnAutoCount2.Size = New System.Drawing.Size(240, 52) + Me.pnAutoCount2.Size = New System.Drawing.Size(210, 42) Me.pnAutoCount2.TabIndex = 3 ' 'txbAutoCount ' - Me.txbAutoCount.Location = New System.Drawing.Point(2, 9) - Me.txbAutoCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbAutoCount.Location = New System.Drawing.Point(2, 7) Me.txbAutoCount.Name = "txbAutoCount" - Me.txbAutoCount.Size = New System.Drawing.Size(234, 35) + Me.txbAutoCount.Size = New System.Drawing.Size(205, 29) Me.txbAutoCount.TabIndex = 1 Me.txbAutoCount.Text = "500" Me.txbAutoCount.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2301,31 +2214,27 @@ Partial Class mainForm Me.gbPrint.Controls.Add(Me.btnPrint) Me.gbPrint.Controls.Add(Me.pnPrint) Me.gbPrint.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbPrint.Location = New System.Drawing.Point(1438, 769) - Me.gbPrint.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbPrint.Location = New System.Drawing.Point(1258, 615) Me.gbPrint.Name = "gbPrint" - Me.gbPrint.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbPrint.Size = New System.Drawing.Size(747, 459) + Me.gbPrint.Size = New System.Drawing.Size(654, 367) Me.gbPrint.TabIndex = 107 Me.gbPrint.TabStop = False Me.gbPrint.Text = "프린터 설정" ' 'btnPrintSave ' - Me.btnPrintSave.Location = New System.Drawing.Point(565, 325) - Me.btnPrintSave.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnPrintSave.Location = New System.Drawing.Point(494, 260) Me.btnPrintSave.Name = "btnPrintSave" - Me.btnPrintSave.Size = New System.Drawing.Size(177, 104) + Me.btnPrintSave.Size = New System.Drawing.Size(155, 83) Me.btnPrintSave.TabIndex = 13 Me.btnPrintSave.Text = "저 장" Me.btnPrintSave.UseVisualStyleBackColor = True ' 'btnLabelChange ' - Me.btnLabelChange.Location = New System.Drawing.Point(381, 325) - Me.btnLabelChange.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnLabelChange.Location = New System.Drawing.Point(333, 260) Me.btnLabelChange.Name = "btnLabelChange" - Me.btnLabelChange.Size = New System.Drawing.Size(177, 104) + Me.btnLabelChange.Size = New System.Drawing.Size(155, 83) Me.btnLabelChange.TabIndex = 12 Me.btnLabelChange.Text = "라벨 변경" Me.btnLabelChange.UseVisualStyleBackColor = True @@ -2333,161 +2242,148 @@ Partial Class mainForm 'pntxtValue2 ' Me.pntxtValue2.Controls.Add(Me.txbtxtValue) - Me.pntxtValue2.Location = New System.Drawing.Point(517, 216) - Me.pntxtValue2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pntxtValue2.Location = New System.Drawing.Point(452, 173) Me.pntxtValue2.Name = "pntxtValue2" - Me.pntxtValue2.Size = New System.Drawing.Size(227, 51) + Me.pntxtValue2.Size = New System.Drawing.Size(199, 41) Me.pntxtValue2.TabIndex = 11 ' 'txbtxtValue ' Me.txbtxtValue.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbtxtValue.Location = New System.Drawing.Point(3, 8) - Me.txbtxtValue.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbtxtValue.Location = New System.Drawing.Point(3, 6) Me.txbtxtValue.Name = "txbtxtValue" - Me.txbtxtValue.Size = New System.Drawing.Size(212, 38) + Me.txbtxtValue.Size = New System.Drawing.Size(186, 32) Me.txbtxtValue.TabIndex = 7 ' 'pnBarValue2 ' Me.pnBarValue2.Controls.Add(Me.txbBarValue) - Me.pnBarValue2.Location = New System.Drawing.Point(517, 158) - Me.pnBarValue2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnBarValue2.Location = New System.Drawing.Point(452, 126) Me.pnBarValue2.Name = "pnBarValue2" - Me.pnBarValue2.Size = New System.Drawing.Size(227, 51) + Me.pnBarValue2.Size = New System.Drawing.Size(199, 41) Me.pnBarValue2.TabIndex = 10 ' 'txbBarValue ' Me.txbBarValue.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbBarValue.Location = New System.Drawing.Point(3, 8) - Me.txbBarValue.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbBarValue.Location = New System.Drawing.Point(3, 6) Me.txbBarValue.Name = "txbBarValue" - Me.txbBarValue.Size = New System.Drawing.Size(212, 38) + Me.txbBarValue.Size = New System.Drawing.Size(186, 32) Me.txbBarValue.TabIndex = 7 ' 'pnlabelAd2 ' Me.pnlabelAd2.Controls.Add(Me.txblabelAd) - Me.pnlabelAd2.Location = New System.Drawing.Point(493, 102) - Me.pnlabelAd2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnlabelAd2.Location = New System.Drawing.Point(431, 82) Me.pnlabelAd2.Name = "pnlabelAd2" - Me.pnlabelAd2.Size = New System.Drawing.Size(250, 51) + Me.pnlabelAd2.Size = New System.Drawing.Size(219, 41) Me.pnlabelAd2.TabIndex = 9 ' 'txblabelAd ' Me.txblabelAd.BackColor = System.Drawing.SystemColors.Window Me.txblabelAd.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txblabelAd.Location = New System.Drawing.Point(3, 8) - Me.txblabelAd.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txblabelAd.Location = New System.Drawing.Point(3, 6) Me.txblabelAd.Name = "txblabelAd" Me.txblabelAd.ReadOnly = True - Me.txblabelAd.Size = New System.Drawing.Size(233, 38) + Me.txblabelAd.Size = New System.Drawing.Size(204, 32) Me.txblabelAd.TabIndex = 7 ' 'pnPrintName2 ' Me.pnPrintName2.Controls.Add(Me.txbPrintName) - Me.pnPrintName2.Location = New System.Drawing.Point(493, 44) - Me.pnPrintName2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnPrintName2.Location = New System.Drawing.Point(431, 35) Me.pnPrintName2.Name = "pnPrintName2" - Me.pnPrintName2.Size = New System.Drawing.Size(250, 51) + Me.pnPrintName2.Size = New System.Drawing.Size(219, 41) Me.pnPrintName2.TabIndex = 8 ' 'txbPrintName ' Me.txbPrintName.BackColor = System.Drawing.SystemColors.Window Me.txbPrintName.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbPrintName.Location = New System.Drawing.Point(3, 8) - Me.txbPrintName.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPrintName.Location = New System.Drawing.Point(3, 6) Me.txbPrintName.Name = "txbPrintName" Me.txbPrintName.ReadOnly = True - Me.txbPrintName.Size = New System.Drawing.Size(233, 38) + Me.txbPrintName.Size = New System.Drawing.Size(204, 32) Me.txbPrintName.TabIndex = 7 ' 'pntxtValue ' Me.pntxtValue.Controls.Add(Me.lbtxtValue) - Me.pntxtValue.Location = New System.Drawing.Point(381, 216) - Me.pntxtValue.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pntxtValue.Location = New System.Drawing.Point(333, 173) Me.pntxtValue.Name = "pntxtValue" - Me.pntxtValue.Size = New System.Drawing.Size(137, 51) + Me.pntxtValue.Size = New System.Drawing.Size(120, 41) Me.pntxtValue.TabIndex = 5 ' 'lbtxtValue ' Me.lbtxtValue.AutoSize = True Me.lbtxtValue.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbtxtValue.Location = New System.Drawing.Point(7, 9) + Me.lbtxtValue.Location = New System.Drawing.Point(6, 7) Me.lbtxtValue.Name = "lbtxtValue" - Me.lbtxtValue.Size = New System.Drawing.Size(145, 35) + Me.lbtxtValue.Size = New System.Drawing.Size(112, 27) Me.lbtxtValue.TabIndex = 3 Me.lbtxtValue.Text = "텍스트변수" ' 'pnBarValue ' Me.pnBarValue.Controls.Add(Me.lbBarValue) - Me.pnBarValue.Location = New System.Drawing.Point(381, 158) - Me.pnBarValue.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnBarValue.Location = New System.Drawing.Point(333, 126) Me.pnBarValue.Name = "pnBarValue" - Me.pnBarValue.Size = New System.Drawing.Size(137, 51) + Me.pnBarValue.Size = New System.Drawing.Size(120, 41) Me.pnBarValue.TabIndex = 6 ' 'lbBarValue ' Me.lbBarValue.AutoSize = True Me.lbBarValue.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbBarValue.Location = New System.Drawing.Point(7, 9) + Me.lbBarValue.Location = New System.Drawing.Point(6, 7) Me.lbBarValue.Name = "lbBarValue" - Me.lbBarValue.Size = New System.Drawing.Size(145, 35) + Me.lbBarValue.Size = New System.Drawing.Size(112, 27) Me.lbBarValue.TabIndex = 3 Me.lbBarValue.Text = "바코드변수" ' 'pnlabelAd ' Me.pnlabelAd.Controls.Add(Me.lblabelAd) - Me.pnlabelAd.Location = New System.Drawing.Point(381, 102) - Me.pnlabelAd.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnlabelAd.Location = New System.Drawing.Point(333, 82) Me.pnlabelAd.Name = "pnlabelAd" - Me.pnlabelAd.Size = New System.Drawing.Size(113, 51) + Me.pnlabelAd.Size = New System.Drawing.Size(99, 41) Me.pnlabelAd.TabIndex = 5 ' 'lblabelAd ' Me.lblabelAd.AutoSize = True Me.lblabelAd.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lblabelAd.Location = New System.Drawing.Point(7, 9) + Me.lblabelAd.Location = New System.Drawing.Point(6, 7) Me.lblabelAd.Name = "lblabelAd" - Me.lblabelAd.Size = New System.Drawing.Size(119, 35) + Me.lblabelAd.Size = New System.Drawing.Size(92, 27) Me.lblabelAd.TabIndex = 3 Me.lblabelAd.Text = "라벨파일" ' 'pnPrintName ' Me.pnPrintName.Controls.Add(Me.lbPrintName) - Me.pnPrintName.Location = New System.Drawing.Point(381, 44) - Me.pnPrintName.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnPrintName.Location = New System.Drawing.Point(333, 35) Me.pnPrintName.Name = "pnPrintName" - Me.pnPrintName.Size = New System.Drawing.Size(113, 51) + Me.pnPrintName.Size = New System.Drawing.Size(99, 41) Me.pnPrintName.TabIndex = 4 ' 'lbPrintName ' Me.lbPrintName.AutoSize = True Me.lbPrintName.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbPrintName.Location = New System.Drawing.Point(7, 9) + Me.lbPrintName.Location = New System.Drawing.Point(6, 7) Me.lbPrintName.Name = "lbPrintName" - Me.lbPrintName.Size = New System.Drawing.Size(119, 35) + Me.lbPrintName.Size = New System.Drawing.Size(92, 27) Me.lbPrintName.TabIndex = 3 Me.lbPrintName.Text = "프린터명" ' 'btnPrint ' - Me.btnPrint.Location = New System.Drawing.Point(10, 325) - Me.btnPrint.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnPrint.Location = New System.Drawing.Point(9, 260) Me.btnPrint.Name = "btnPrint" - Me.btnPrint.Size = New System.Drawing.Size(363, 104) + Me.btnPrint.Size = New System.Drawing.Size(318, 83) Me.btnPrint.TabIndex = 2 Me.btnPrint.Text = "리스트 새로고침" Me.btnPrint.UseVisualStyleBackColor = True @@ -2496,23 +2392,21 @@ Partial Class mainForm ' Me.pnPrint.Controls.Add(Me.dgvPrint) Me.pnPrint.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnPrint.Location = New System.Drawing.Point(7, 44) - Me.pnPrint.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnPrint.Location = New System.Drawing.Point(6, 35) Me.pnPrint.Name = "pnPrint" - Me.pnPrint.Size = New System.Drawing.Size(368, 272) + Me.pnPrint.Size = New System.Drawing.Size(322, 218) Me.pnPrint.TabIndex = 1 ' 'dgvPrint ' Me.dgvPrint.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.dgvPrint.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.dfPrintNum, Me.dfPrintName}) - Me.dgvPrint.Location = New System.Drawing.Point(3, 5) - Me.dgvPrint.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.dgvPrint.Location = New System.Drawing.Point(3, 4) Me.dgvPrint.Name = "dgvPrint" Me.dgvPrint.RowHeadersWidth = 51 Me.dgvPrint.RowTemplate.Height = 23 Me.dgvPrint.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect - Me.dgvPrint.Size = New System.Drawing.Size(362, 260) + Me.dgvPrint.Size = New System.Drawing.Size(317, 208) Me.dgvPrint.TabIndex = 0 ' 'dfPrintNum @@ -2536,11 +2430,9 @@ Partial Class mainForm Me.gbAuto.Controls.Add(Me.rdbAuto1) Me.gbAuto.Enabled = False Me.gbAuto.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbAuto.Location = New System.Drawing.Point(1439, 214) - Me.gbAuto.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbAuto.Location = New System.Drawing.Point(1259, 171) Me.gbAuto.Name = "gbAuto" - Me.gbAuto.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbAuto.Size = New System.Drawing.Size(374, 88) + Me.gbAuto.Size = New System.Drawing.Size(327, 70) Me.gbAuto.TabIndex = 105 Me.gbAuto.TabStop = False Me.gbAuto.Text = "자동화 기능" @@ -2548,10 +2440,9 @@ Partial Class mainForm 'rdbAuto2 ' Me.rdbAuto2.AutoSize = True - Me.rdbAuto2.Location = New System.Drawing.Point(185, 35) - Me.rdbAuto2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbAuto2.Location = New System.Drawing.Point(162, 28) Me.rdbAuto2.Name = "rdbAuto2" - Me.rdbAuto2.Size = New System.Drawing.Size(131, 28) + Me.rdbAuto2.Size = New System.Drawing.Size(107, 23) Me.rdbAuto2.TabIndex = 1 Me.rdbAuto2.Text = "무게측정" Me.rdbAuto2.UseVisualStyleBackColor = True @@ -2559,10 +2450,9 @@ Partial Class mainForm 'rdbAuto1 ' Me.rdbAuto1.AutoSize = True - Me.rdbAuto1.Location = New System.Drawing.Point(45, 35) - Me.rdbAuto1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbAuto1.Location = New System.Drawing.Point(39, 28) Me.rdbAuto1.Name = "rdbAuto1" - Me.rdbAuto1.Size = New System.Drawing.Size(131, 28) + Me.rdbAuto1.Size = New System.Drawing.Size(107, 23) Me.rdbAuto1.TabIndex = 0 Me.rdbAuto1.Text = "제품등록" Me.rdbAuto1.UseVisualStyleBackColor = True @@ -2573,11 +2463,9 @@ Partial Class mainForm Me.gbMode.Controls.Add(Me.rdbMode2) Me.gbMode.Controls.Add(Me.rdbMode1) Me.gbMode.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbMode.Location = New System.Drawing.Point(1439, 119) - Me.gbMode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbMode.Location = New System.Drawing.Point(1259, 95) Me.gbMode.Name = "gbMode" - Me.gbMode.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbMode.Size = New System.Drawing.Size(374, 88) + Me.gbMode.Size = New System.Drawing.Size(327, 70) Me.gbMode.TabIndex = 104 Me.gbMode.TabStop = False Me.gbMode.Text = "동작 모드" @@ -2585,10 +2473,9 @@ Partial Class mainForm 'rdbMode2 ' Me.rdbMode2.AutoSize = True - Me.rdbMode2.Location = New System.Drawing.Point(185, 35) - Me.rdbMode2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbMode2.Location = New System.Drawing.Point(162, 28) Me.rdbMode2.Name = "rdbMode2" - Me.rdbMode2.Size = New System.Drawing.Size(156, 28) + Me.rdbMode2.Size = New System.Drawing.Size(127, 23) Me.rdbMode2.TabIndex = 1 Me.rdbMode2.Text = "자동화동작" Me.rdbMode2.UseVisualStyleBackColor = True @@ -2596,10 +2483,9 @@ Partial Class mainForm 'rdbMode1 ' Me.rdbMode1.AutoSize = True - Me.rdbMode1.Location = New System.Drawing.Point(45, 35) - Me.rdbMode1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbMode1.Location = New System.Drawing.Point(39, 28) Me.rdbMode1.Name = "rdbMode1" - Me.rdbMode1.Size = New System.Drawing.Size(131, 28) + Me.rdbMode1.Size = New System.Drawing.Size(107, 23) Me.rdbMode1.TabIndex = 0 Me.rdbMode1.Text = "일반동작" Me.rdbMode1.UseVisualStyleBackColor = True @@ -2612,11 +2498,9 @@ Partial Class mainForm Me.gbIdentify.Controls.Add(Me.gbIdenMES) Me.gbIdentify.Controls.Add(Me.gbIdenERP) Me.gbIdentify.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbIdentify.Location = New System.Drawing.Point(1438, 426) - Me.gbIdentify.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbIdentify.Location = New System.Drawing.Point(1258, 341) Me.gbIdentify.Name = "gbIdentify" - Me.gbIdentify.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbIdentify.Size = New System.Drawing.Size(750, 338) + Me.gbIdentify.Size = New System.Drawing.Size(656, 270) Me.gbIdentify.TabIndex = 102 Me.gbIdentify.TabStop = False Me.gbIdentify.Text = "식별코드관리" @@ -2627,11 +2511,9 @@ Partial Class mainForm Me.gblaZeb.Controls.Add(Me.pnlaZeb) Me.gblaZeb.Controls.Add(Me.pnlaZeb2) Me.gblaZeb.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gblaZeb.Location = New System.Drawing.Point(381, 145) - Me.gblaZeb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gblaZeb.Location = New System.Drawing.Point(333, 116) Me.gblaZeb.Name = "gblaZeb" - Me.gblaZeb.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gblaZeb.Size = New System.Drawing.Size(366, 181) + Me.gblaZeb.Size = New System.Drawing.Size(320, 145) Me.gblaZeb.TabIndex = 105 Me.gblaZeb.TabStop = False Me.gblaZeb.Text = "Zebra 프린터 코드" @@ -2641,11 +2523,9 @@ Partial Class mainForm Me.gbPrintPaper.Controls.Add(Me.rdbPaper20) Me.gbPrintPaper.Controls.Add(Me.rdbPaper30) Me.gbPrintPaper.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbPrintPaper.Location = New System.Drawing.Point(7, 94) - Me.gbPrintPaper.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbPrintPaper.Location = New System.Drawing.Point(6, 75) Me.gbPrintPaper.Name = "gbPrintPaper" - Me.gbPrintPaper.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbPrintPaper.Size = New System.Drawing.Size(366, 82) + Me.gbPrintPaper.Size = New System.Drawing.Size(320, 66) Me.gbPrintPaper.TabIndex = 105 Me.gbPrintPaper.TabStop = False Me.gbPrintPaper.Text = "용지 설정" @@ -2653,10 +2533,9 @@ Partial Class mainForm 'rdbPaper20 ' Me.rdbPaper20.AutoSize = True - Me.rdbPaper20.Location = New System.Drawing.Point(205, 36) - Me.rdbPaper20.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbPaper20.Location = New System.Drawing.Point(179, 29) Me.rdbPaper20.Name = "rdbPaper20" - Me.rdbPaper20.Size = New System.Drawing.Size(100, 28) + Me.rdbPaper20.Size = New System.Drawing.Size(81, 23) Me.rdbPaper20.TabIndex = 1 Me.rdbPaper20.TabStop = True Me.rdbPaper20.Text = "40*20" @@ -2665,10 +2544,9 @@ Partial Class mainForm 'rdbPaper30 ' Me.rdbPaper30.AutoSize = True - Me.rdbPaper30.Location = New System.Drawing.Point(61, 36) - Me.rdbPaper30.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbPaper30.Location = New System.Drawing.Point(53, 29) Me.rdbPaper30.Name = "rdbPaper30" - Me.rdbPaper30.Size = New System.Drawing.Size(100, 28) + Me.rdbPaper30.Size = New System.Drawing.Size(81, 23) Me.rdbPaper30.TabIndex = 0 Me.rdbPaper30.TabStop = True Me.rdbPaper30.Text = "40*30" @@ -2678,18 +2556,17 @@ Partial Class mainForm ' Me.pnlaZeb.Controls.Add(Me.lblaZeb) Me.pnlaZeb.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnlaZeb.Location = New System.Drawing.Point(7, 26) - Me.pnlaZeb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnlaZeb.Location = New System.Drawing.Point(6, 21) Me.pnlaZeb.Name = "pnlaZeb" - Me.pnlaZeb.Size = New System.Drawing.Size(106, 52) + Me.pnlaZeb.Size = New System.Drawing.Size(93, 42) Me.pnlaZeb.TabIndex = 2 ' 'lblaZeb ' Me.lblaZeb.AutoSize = True - Me.lblaZeb.Location = New System.Drawing.Point(3, 16) + Me.lblaZeb.Location = New System.Drawing.Point(3, 13) Me.lblaZeb.Name = "lblaZeb" - Me.lblaZeb.Size = New System.Drawing.Size(110, 24) + Me.lblaZeb.Size = New System.Drawing.Size(89, 19) Me.lblaZeb.TabIndex = 0 Me.lblaZeb.Text = "식별코드" ' @@ -2697,19 +2574,17 @@ Partial Class mainForm ' Me.pnlaZeb2.Controls.Add(Me.txblaZeb) Me.pnlaZeb2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnlaZeb2.Location = New System.Drawing.Point(117, 26) - Me.pnlaZeb2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnlaZeb2.Location = New System.Drawing.Point(102, 21) Me.pnlaZeb2.Name = "pnlaZeb2" - Me.pnlaZeb2.Size = New System.Drawing.Size(240, 52) + Me.pnlaZeb2.Size = New System.Drawing.Size(210, 42) Me.pnlaZeb2.TabIndex = 3 ' 'txblaZeb ' Me.txblaZeb.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower - Me.txblaZeb.Location = New System.Drawing.Point(2, 9) - Me.txblaZeb.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txblaZeb.Location = New System.Drawing.Point(2, 7) Me.txblaZeb.Name = "txblaZeb" - Me.txblaZeb.Size = New System.Drawing.Size(234, 35) + Me.txblaZeb.Size = New System.Drawing.Size(205, 29) Me.txblaZeb.TabIndex = 1 Me.txblaZeb.Text = "zdesigner" Me.txblaZeb.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2719,11 +2594,9 @@ Partial Class mainForm Me.gblaBro.Controls.Add(Me.pnlaBro) Me.gblaBro.Controls.Add(Me.pnlaBro2) Me.gblaBro.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gblaBro.Location = New System.Drawing.Point(381, 52) - Me.gblaBro.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gblaBro.Location = New System.Drawing.Point(333, 42) Me.gblaBro.Name = "gblaBro" - Me.gblaBro.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gblaBro.Size = New System.Drawing.Size(366, 88) + Me.gblaBro.Size = New System.Drawing.Size(320, 70) Me.gblaBro.TabIndex = 104 Me.gblaBro.TabStop = False Me.gblaBro.Text = "Brother 프린터 코드" @@ -2732,18 +2605,17 @@ Partial Class mainForm ' Me.pnlaBro.Controls.Add(Me.lblaBro) Me.pnlaBro.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnlaBro.Location = New System.Drawing.Point(7, 26) - Me.pnlaBro.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnlaBro.Location = New System.Drawing.Point(6, 21) Me.pnlaBro.Name = "pnlaBro" - Me.pnlaBro.Size = New System.Drawing.Size(106, 52) + Me.pnlaBro.Size = New System.Drawing.Size(93, 42) Me.pnlaBro.TabIndex = 2 ' 'lblaBro ' Me.lblaBro.AutoSize = True - Me.lblaBro.Location = New System.Drawing.Point(3, 16) + Me.lblaBro.Location = New System.Drawing.Point(3, 13) Me.lblaBro.Name = "lblaBro" - Me.lblaBro.Size = New System.Drawing.Size(110, 24) + Me.lblaBro.Size = New System.Drawing.Size(89, 19) Me.lblaBro.TabIndex = 0 Me.lblaBro.Text = "식별코드" ' @@ -2751,19 +2623,17 @@ Partial Class mainForm ' Me.pnlaBro2.Controls.Add(Me.txblaBro) Me.pnlaBro2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnlaBro2.Location = New System.Drawing.Point(117, 26) - Me.pnlaBro2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnlaBro2.Location = New System.Drawing.Point(102, 21) Me.pnlaBro2.Name = "pnlaBro2" - Me.pnlaBro2.Size = New System.Drawing.Size(240, 52) + Me.pnlaBro2.Size = New System.Drawing.Size(210, 42) Me.pnlaBro2.TabIndex = 3 ' 'txblaBro ' Me.txblaBro.CharacterCasing = System.Windows.Forms.CharacterCasing.Lower - Me.txblaBro.Location = New System.Drawing.Point(2, 9) - Me.txblaBro.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txblaBro.Location = New System.Drawing.Point(2, 7) Me.txblaBro.Name = "txblaBro" - Me.txblaBro.Size = New System.Drawing.Size(234, 35) + Me.txblaBro.Size = New System.Drawing.Size(205, 29) Me.txblaBro.TabIndex = 1 Me.txblaBro.Text = "brother" Me.txblaBro.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2773,11 +2643,9 @@ Partial Class mainForm Me.gbPCNum.Controls.Add(Me.pnPCNum) Me.gbPCNum.Controls.Add(Me.pnPCNum2) Me.gbPCNum.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbPCNum.Location = New System.Drawing.Point(7, 52) - Me.gbPCNum.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbPCNum.Location = New System.Drawing.Point(6, 42) Me.gbPCNum.Name = "gbPCNum" - Me.gbPCNum.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbPCNum.Size = New System.Drawing.Size(366, 88) + Me.gbPCNum.Size = New System.Drawing.Size(320, 70) Me.gbPCNum.TabIndex = 103 Me.gbPCNum.TabStop = False Me.gbPCNum.Text = "PC 식별 코드" @@ -2786,18 +2654,17 @@ Partial Class mainForm ' Me.pnPCNum.Controls.Add(Me.lbPCNum) Me.pnPCNum.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnPCNum.Location = New System.Drawing.Point(7, 26) - Me.pnPCNum.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnPCNum.Location = New System.Drawing.Point(6, 21) Me.pnPCNum.Name = "pnPCNum" - Me.pnPCNum.Size = New System.Drawing.Size(106, 52) + Me.pnPCNum.Size = New System.Drawing.Size(93, 42) Me.pnPCNum.TabIndex = 2 ' 'lbPCNum ' Me.lbPCNum.AutoSize = True - Me.lbPCNum.Location = New System.Drawing.Point(3, 16) + Me.lbPCNum.Location = New System.Drawing.Point(3, 13) Me.lbPCNum.Name = "lbPCNum" - Me.lbPCNum.Size = New System.Drawing.Size(110, 24) + Me.lbPCNum.Size = New System.Drawing.Size(89, 19) Me.lbPCNum.TabIndex = 0 Me.lbPCNum.Text = "식별코드" ' @@ -2805,19 +2672,17 @@ Partial Class mainForm ' Me.pnPCNum2.Controls.Add(Me.txbPCNum) Me.pnPCNum2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnPCNum2.Location = New System.Drawing.Point(117, 26) - Me.pnPCNum2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnPCNum2.Location = New System.Drawing.Point(102, 21) Me.pnPCNum2.Name = "pnPCNum2" - Me.pnPCNum2.Size = New System.Drawing.Size(240, 52) + Me.pnPCNum2.Size = New System.Drawing.Size(210, 42) Me.pnPCNum2.TabIndex = 3 ' 'txbPCNum ' Me.txbPCNum.Enabled = False - Me.txbPCNum.Location = New System.Drawing.Point(2, 9) - Me.txbPCNum.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPCNum.Location = New System.Drawing.Point(2, 7) Me.txbPCNum.Name = "txbPCNum" - Me.txbPCNum.Size = New System.Drawing.Size(234, 35) + Me.txbPCNum.Size = New System.Drawing.Size(205, 29) Me.txbPCNum.TabIndex = 1 Me.txbPCNum.Text = "1" Me.txbPCNum.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2827,11 +2692,9 @@ Partial Class mainForm Me.gbIdenMES.Controls.Add(Me.pnIdenMES) Me.gbIdenMES.Controls.Add(Me.pnIdenMES2) Me.gbIdenMES.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbIdenMES.Location = New System.Drawing.Point(9, 239) - Me.gbIdenMES.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbIdenMES.Location = New System.Drawing.Point(8, 191) Me.gbIdenMES.Name = "gbIdenMES" - Me.gbIdenMES.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbIdenMES.Size = New System.Drawing.Size(366, 88) + Me.gbIdenMES.Size = New System.Drawing.Size(320, 70) Me.gbIdenMES.TabIndex = 101 Me.gbIdenMES.TabStop = False Me.gbIdenMES.Text = "MES 식별 코드" @@ -2840,18 +2703,17 @@ Partial Class mainForm ' Me.pnIdenMES.Controls.Add(Me.lbIdenMES) Me.pnIdenMES.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnIdenMES.Location = New System.Drawing.Point(7, 26) - Me.pnIdenMES.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIdenMES.Location = New System.Drawing.Point(6, 21) Me.pnIdenMES.Name = "pnIdenMES" - Me.pnIdenMES.Size = New System.Drawing.Size(106, 52) + Me.pnIdenMES.Size = New System.Drawing.Size(93, 42) Me.pnIdenMES.TabIndex = 2 ' 'lbIdenMES ' Me.lbIdenMES.AutoSize = True - Me.lbIdenMES.Location = New System.Drawing.Point(3, 16) + Me.lbIdenMES.Location = New System.Drawing.Point(3, 13) Me.lbIdenMES.Name = "lbIdenMES" - Me.lbIdenMES.Size = New System.Drawing.Size(110, 24) + Me.lbIdenMES.Size = New System.Drawing.Size(89, 19) Me.lbIdenMES.TabIndex = 0 Me.lbIdenMES.Text = "식별코드" ' @@ -2859,19 +2721,17 @@ Partial Class mainForm ' Me.pnIdenMES2.Controls.Add(Me.txbIdenMES) Me.pnIdenMES2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnIdenMES2.Location = New System.Drawing.Point(117, 26) - Me.pnIdenMES2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIdenMES2.Location = New System.Drawing.Point(102, 21) Me.pnIdenMES2.Name = "pnIdenMES2" - Me.pnIdenMES2.Size = New System.Drawing.Size(240, 52) + Me.pnIdenMES2.Size = New System.Drawing.Size(210, 42) Me.pnIdenMES2.TabIndex = 3 ' 'txbIdenMES ' Me.txbIdenMES.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper - Me.txbIdenMES.Location = New System.Drawing.Point(2, 9) - Me.txbIdenMES.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbIdenMES.Location = New System.Drawing.Point(2, 7) Me.txbIdenMES.Name = "txbIdenMES" - Me.txbIdenMES.Size = New System.Drawing.Size(234, 35) + Me.txbIdenMES.Size = New System.Drawing.Size(205, 29) Me.txbIdenMES.TabIndex = 1 Me.txbIdenMES.Text = "ORD" Me.txbIdenMES.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2881,11 +2741,9 @@ Partial Class mainForm Me.gbIdenERP.Controls.Add(Me.pnIdenERP) Me.gbIdenERP.Controls.Add(Me.pnIdenERP2) Me.gbIdenERP.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbIdenERP.Location = New System.Drawing.Point(7, 145) - Me.gbIdenERP.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbIdenERP.Location = New System.Drawing.Point(6, 116) Me.gbIdenERP.Name = "gbIdenERP" - Me.gbIdenERP.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbIdenERP.Size = New System.Drawing.Size(366, 88) + Me.gbIdenERP.Size = New System.Drawing.Size(320, 70) Me.gbIdenERP.TabIndex = 52 Me.gbIdenERP.TabStop = False Me.gbIdenERP.Text = "ERP 식별 코드" @@ -2894,18 +2752,17 @@ Partial Class mainForm ' Me.pnIdenERP.Controls.Add(Me.lbIdenERP) Me.pnIdenERP.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnIdenERP.Location = New System.Drawing.Point(7, 26) - Me.pnIdenERP.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIdenERP.Location = New System.Drawing.Point(6, 21) Me.pnIdenERP.Name = "pnIdenERP" - Me.pnIdenERP.Size = New System.Drawing.Size(106, 52) + Me.pnIdenERP.Size = New System.Drawing.Size(93, 42) Me.pnIdenERP.TabIndex = 2 ' 'lbIdenERP ' Me.lbIdenERP.AutoSize = True - Me.lbIdenERP.Location = New System.Drawing.Point(3, 16) + Me.lbIdenERP.Location = New System.Drawing.Point(3, 13) Me.lbIdenERP.Name = "lbIdenERP" - Me.lbIdenERP.Size = New System.Drawing.Size(110, 24) + Me.lbIdenERP.Size = New System.Drawing.Size(89, 19) Me.lbIdenERP.TabIndex = 0 Me.lbIdenERP.Text = "식별코드" ' @@ -2913,19 +2770,17 @@ Partial Class mainForm ' Me.pnIdenERP2.Controls.Add(Me.txbIdenERP) Me.pnIdenERP2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnIdenERP2.Location = New System.Drawing.Point(117, 26) - Me.pnIdenERP2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIdenERP2.Location = New System.Drawing.Point(102, 21) Me.pnIdenERP2.Name = "pnIdenERP2" - Me.pnIdenERP2.Size = New System.Drawing.Size(240, 52) + Me.pnIdenERP2.Size = New System.Drawing.Size(210, 42) Me.pnIdenERP2.TabIndex = 3 ' 'txbIdenERP ' Me.txbIdenERP.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper - Me.txbIdenERP.Location = New System.Drawing.Point(2, 9) - Me.txbIdenERP.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbIdenERP.Location = New System.Drawing.Point(2, 7) Me.txbIdenERP.Name = "txbIdenERP" - Me.txbIdenERP.Size = New System.Drawing.Size(234, 35) + Me.txbIdenERP.Size = New System.Drawing.Size(205, 29) Me.txbIdenERP.TabIndex = 1 Me.txbIdenERP.Text = "E040221" Me.txbIdenERP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2936,11 +2791,9 @@ Partial Class mainForm Me.gbAPIuse.Controls.Add(Me.ckbAPIuse) Me.gbAPIuse.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbAPIuse.ForeColor = System.Drawing.Color.Black - Me.gbAPIuse.Location = New System.Drawing.Point(1707, 6) - Me.gbAPIuse.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbAPIuse.Location = New System.Drawing.Point(1494, 5) Me.gbAPIuse.Name = "gbAPIuse" - Me.gbAPIuse.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbAPIuse.Size = New System.Drawing.Size(217, 92) + Me.gbAPIuse.Size = New System.Drawing.Size(190, 74) Me.gbAPIuse.TabIndex = 100 Me.gbAPIuse.TabStop = False Me.gbAPIuse.Text = "MES 처리 형식" @@ -2949,10 +2802,9 @@ Partial Class mainForm ' Me.ckbAPIuse.AutoSize = True Me.ckbAPIuse.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckbAPIuse.Location = New System.Drawing.Point(29, 30) - Me.ckbAPIuse.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckbAPIuse.Location = New System.Drawing.Point(25, 24) Me.ckbAPIuse.Name = "ckbAPIuse" - Me.ckbAPIuse.Size = New System.Drawing.Size(172, 48) + Me.ckbAPIuse.Size = New System.Drawing.Size(137, 39) Me.ckbAPIuse.TabIndex = 77 Me.ckbAPIuse.Text = "API 사용" Me.ckbAPIuse.UseVisualStyleBackColor = True @@ -2963,11 +2815,9 @@ Partial Class mainForm Me.gbEventSet.Controls.Add(Me.gbEventReg) Me.gbEventSet.Controls.Add(Me.gbEvent) Me.gbEventSet.Font = New System.Drawing.Font("굴림", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEventSet.Location = New System.Drawing.Point(3, 105) - Me.gbEventSet.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEventSet.Location = New System.Drawing.Point(3, 84) Me.gbEventSet.Name = "gbEventSet" - Me.gbEventSet.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEventSet.Size = New System.Drawing.Size(1427, 1206) + Me.gbEventSet.Size = New System.Drawing.Size(1249, 965) Me.gbEventSet.TabIndex = 99 Me.gbEventSet.TabStop = False Me.gbEventSet.Text = "출고 및 이벤트 등록" @@ -2976,11 +2826,9 @@ Partial Class mainForm ' Me.gbEventDel.Controls.Add(Me.gbEventDel2) Me.gbEventDel.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEventDel.Location = New System.Drawing.Point(785, 971) - Me.gbEventDel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEventDel.Location = New System.Drawing.Point(687, 777) Me.gbEventDel.Name = "gbEventDel" - Me.gbEventDel.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEventDel.Size = New System.Drawing.Size(622, 151) + Me.gbEventDel.Size = New System.Drawing.Size(544, 121) Me.gbEventDel.TabIndex = 51 Me.gbEventDel.TabStop = False Me.gbEventDel.Text = "출고 및 이벤트 삭제" @@ -2991,21 +2839,18 @@ Partial Class mainForm Me.gbEventDel2.Controls.Add(Me.pnEventDel) Me.gbEventDel2.Controls.Add(Me.pnEventDel2) Me.gbEventDel2.Font = New System.Drawing.Font("굴림", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEventDel2.Location = New System.Drawing.Point(26, 44) - Me.gbEventDel2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEventDel2.Location = New System.Drawing.Point(23, 35) Me.gbEventDel2.Name = "gbEventDel2" - Me.gbEventDel2.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEventDel2.Size = New System.Drawing.Size(569, 96) + Me.gbEventDel2.Size = New System.Drawing.Size(498, 77) Me.gbEventDel2.TabIndex = 9 Me.gbEventDel2.TabStop = False Me.gbEventDel2.Text = "삭제할 이벤트명 입력" ' 'btnEventDel ' - Me.btnEventDel.Location = New System.Drawing.Point(417, 22) - Me.btnEventDel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnEventDel.Location = New System.Drawing.Point(365, 18) Me.btnEventDel.Name = "btnEventDel" - Me.btnEventDel.Size = New System.Drawing.Size(142, 59) + Me.btnEventDel.Size = New System.Drawing.Size(124, 47) Me.btnEventDel.TabIndex = 12 Me.btnEventDel.Text = "삭제" Me.btnEventDel.UseVisualStyleBackColor = True @@ -3014,18 +2859,17 @@ Partial Class mainForm ' Me.pnEventDel.Controls.Add(Me.lbEventDel) Me.pnEventDel.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEventDel.Location = New System.Drawing.Point(18, 26) - Me.pnEventDel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEventDel.Location = New System.Drawing.Point(16, 21) Me.pnEventDel.Name = "pnEventDel" - Me.pnEventDel.Size = New System.Drawing.Size(106, 52) + Me.pnEventDel.Size = New System.Drawing.Size(93, 42) Me.pnEventDel.TabIndex = 2 ' 'lbEventDel ' Me.lbEventDel.AutoSize = True - Me.lbEventDel.Location = New System.Drawing.Point(3, 16) + Me.lbEventDel.Location = New System.Drawing.Point(3, 13) Me.lbEventDel.Name = "lbEventDel" - Me.lbEventDel.Size = New System.Drawing.Size(110, 24) + Me.lbEventDel.Size = New System.Drawing.Size(89, 19) Me.lbEventDel.TabIndex = 0 Me.lbEventDel.Text = "이벤트명" ' @@ -3033,18 +2877,16 @@ Partial Class mainForm ' Me.pnEventDel2.Controls.Add(Me.txbEventDel) Me.pnEventDel2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEventDel2.Location = New System.Drawing.Point(128, 26) - Me.pnEventDel2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEventDel2.Location = New System.Drawing.Point(112, 21) Me.pnEventDel2.Name = "pnEventDel2" - Me.pnEventDel2.Size = New System.Drawing.Size(282, 52) + Me.pnEventDel2.Size = New System.Drawing.Size(247, 42) Me.pnEventDel2.TabIndex = 3 ' 'txbEventDel ' - Me.txbEventDel.Location = New System.Drawing.Point(2, 9) - Me.txbEventDel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEventDel.Location = New System.Drawing.Point(2, 7) Me.txbEventDel.Name = "txbEventDel" - Me.txbEventDel.Size = New System.Drawing.Size(276, 35) + Me.txbEventDel.Size = New System.Drawing.Size(242, 29) Me.txbEventDel.TabIndex = 1 ' 'gbEventReg @@ -3058,21 +2900,18 @@ Partial Class mainForm Me.gbEventReg.Controls.Add(Me.pnEvSearch2) Me.gbEventReg.Controls.Add(Me.gbEvInfo) Me.gbEventReg.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEventReg.Location = New System.Drawing.Point(785, 34) - Me.gbEventReg.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEventReg.Location = New System.Drawing.Point(687, 27) Me.gbEventReg.Name = "gbEventReg" - Me.gbEventReg.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEventReg.Size = New System.Drawing.Size(622, 891) + Me.gbEventReg.Size = New System.Drawing.Size(544, 713) Me.gbEventReg.TabIndex = 0 Me.gbEventReg.TabStop = False Me.gbEventReg.Text = "출고 및 이벤트 등록" ' 'btnReg ' - Me.btnReg.Location = New System.Drawing.Point(501, 485) - Me.btnReg.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnReg.Location = New System.Drawing.Point(438, 388) Me.btnReg.Name = "btnReg" - Me.btnReg.Size = New System.Drawing.Size(98, 62) + Me.btnReg.Size = New System.Drawing.Size(86, 50) Me.btnReg.TabIndex = 12 Me.btnReg.Text = "등록" Me.btnReg.UseVisualStyleBackColor = True @@ -3081,23 +2920,21 @@ Partial Class mainForm ' Me.pndgv.Controls.Add(Me.dgvSearch) Me.pndgv.Font = New System.Drawing.Font("굴림", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pndgv.Location = New System.Drawing.Point(26, 42) - Me.pndgv.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pndgv.Location = New System.Drawing.Point(23, 34) Me.pndgv.Name = "pndgv" - Me.pndgv.Size = New System.Drawing.Size(569, 435) + Me.pndgv.Size = New System.Drawing.Size(498, 348) Me.pndgv.TabIndex = 18 ' 'dgvSearch ' Me.dgvSearch.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.dgvSearch.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.dfCode, Me.dfprodCode, Me.dfName, Me.dfFace, Me.dfEye, Me.dfAuto}) - Me.dgvSearch.Location = New System.Drawing.Point(0, 4) - Me.dgvSearch.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.dgvSearch.Location = New System.Drawing.Point(0, 3) Me.dgvSearch.Name = "dgvSearch" Me.dgvSearch.RowHeadersWidth = 51 Me.dgvSearch.RowTemplate.Height = 23 Me.dgvSearch.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect - Me.dgvSearch.Size = New System.Drawing.Size(569, 428) + Me.dgvSearch.Size = New System.Drawing.Size(498, 342) Me.dgvSearch.TabIndex = 12 ' 'dfCode @@ -3146,48 +2983,44 @@ Partial Class mainForm ' Me.pnEventName2.Controls.Add(Me.txbEventName) Me.pnEventName2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEventName2.Location = New System.Drawing.Point(175, 485) - Me.pnEventName2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEventName2.Location = New System.Drawing.Point(153, 388) Me.pnEventName2.Name = "pnEventName2" - Me.pnEventName2.Size = New System.Drawing.Size(319, 62) + Me.pnEventName2.Size = New System.Drawing.Size(279, 50) Me.pnEventName2.TabIndex = 1 ' 'txbEventName ' Me.txbEventName.Font = New System.Drawing.Font("굴림", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbEventName.Location = New System.Drawing.Point(2, 4) - Me.txbEventName.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEventName.Location = New System.Drawing.Point(2, 3) Me.txbEventName.Name = "txbEventName" - Me.txbEventName.Size = New System.Drawing.Size(315, 53) + Me.txbEventName.Size = New System.Drawing.Size(276, 44) Me.txbEventName.TabIndex = 0 ' 'pnEventName1 ' Me.pnEventName1.Controls.Add(Me.lbEventName) Me.pnEventName1.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEventName1.Location = New System.Drawing.Point(21, 491) - Me.pnEventName1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEventName1.Location = New System.Drawing.Point(18, 393) Me.pnEventName1.Name = "pnEventName1" - Me.pnEventName1.Size = New System.Drawing.Size(150, 52) + Me.pnEventName1.Size = New System.Drawing.Size(131, 42) Me.pnEventName1.TabIndex = 2 ' 'lbEventName ' Me.lbEventName.AutoSize = True Me.lbEventName.Font = New System.Drawing.Font("굴림", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbEventName.Location = New System.Drawing.Point(-7, 4) + Me.lbEventName.Location = New System.Drawing.Point(-6, 3) Me.lbEventName.Name = "lbEventName" - Me.lbEventName.Size = New System.Drawing.Size(181, 40) + Me.lbEventName.Size = New System.Drawing.Size(146, 32) Me.lbEventName.TabIndex = 0 Me.lbEventName.Text = "이벤트명" ' 'btnEvSearch ' Me.btnEvSearch.Font = New System.Drawing.Font("굴림", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnEvSearch.Location = New System.Drawing.Point(501, 559) - Me.btnEvSearch.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnEvSearch.Location = New System.Drawing.Point(438, 447) Me.btnEvSearch.Name = "btnEvSearch" - Me.btnEvSearch.Size = New System.Drawing.Size(98, 66) + Me.btnEvSearch.Size = New System.Drawing.Size(86, 53) Me.btnEvSearch.TabIndex = 17 Me.btnEvSearch.Text = "검색" Me.btnEvSearch.UseVisualStyleBackColor = True @@ -3196,19 +3029,18 @@ Partial Class mainForm ' Me.pnEvSearch.Controls.Add(Me.lbEvSearch) Me.pnEvSearch.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvSearch.Location = New System.Drawing.Point(21, 566) - Me.pnEvSearch.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvSearch.Location = New System.Drawing.Point(18, 453) Me.pnEvSearch.Name = "pnEvSearch" - Me.pnEvSearch.Size = New System.Drawing.Size(150, 50) + Me.pnEvSearch.Size = New System.Drawing.Size(131, 40) Me.pnEvSearch.TabIndex = 15 ' 'lbEvSearch ' Me.lbEvSearch.AutoSize = True Me.lbEvSearch.Font = New System.Drawing.Font("굴림", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbEvSearch.Location = New System.Drawing.Point(-7, 6) + Me.lbEvSearch.Location = New System.Drawing.Point(-6, 5) Me.lbEvSearch.Name = "lbEvSearch" - Me.lbEvSearch.Size = New System.Drawing.Size(181, 40) + Me.lbEvSearch.Size = New System.Drawing.Size(146, 32) Me.lbEvSearch.TabIndex = 0 Me.lbEvSearch.Text = "품명검색" ' @@ -3216,19 +3048,17 @@ Partial Class mainForm ' Me.pnEvSearch2.Controls.Add(Me.txbEvSearch) Me.pnEvSearch2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvSearch2.Location = New System.Drawing.Point(175, 560) - Me.pnEvSearch2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvSearch2.Location = New System.Drawing.Point(153, 448) Me.pnEvSearch2.Name = "pnEvSearch2" - Me.pnEvSearch2.Size = New System.Drawing.Size(319, 62) + Me.pnEvSearch2.Size = New System.Drawing.Size(279, 50) Me.pnEvSearch2.TabIndex = 2 ' 'txbEvSearch ' Me.txbEvSearch.Font = New System.Drawing.Font("굴림", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbEvSearch.Location = New System.Drawing.Point(3, 4) - Me.txbEvSearch.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEvSearch.Location = New System.Drawing.Point(3, 3) Me.txbEvSearch.Name = "txbEvSearch" - Me.txbEvSearch.Size = New System.Drawing.Size(315, 53) + Me.txbEvSearch.Size = New System.Drawing.Size(276, 44) Me.txbEvSearch.TabIndex = 0 ' 'gbEvInfo @@ -3248,11 +3078,9 @@ Partial Class mainForm Me.gbEvInfo.Controls.Add(Me.pnEvName) Me.gbEvInfo.Controls.Add(Me.pnEvName2) Me.gbEvInfo.Font = New System.Drawing.Font("굴림", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEvInfo.Location = New System.Drawing.Point(26, 630) - Me.gbEvInfo.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEvInfo.Location = New System.Drawing.Point(23, 504) Me.gbEvInfo.Name = "gbEvInfo" - Me.gbEvInfo.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEvInfo.Size = New System.Drawing.Size(569, 241) + Me.gbEvInfo.Size = New System.Drawing.Size(498, 193) Me.gbEvInfo.TabIndex = 3 Me.gbEvInfo.TabStop = False Me.gbEvInfo.Text = "상세정보" @@ -3261,18 +3089,17 @@ Partial Class mainForm ' Me.pnLimit.Controls.Add(Me.lbLimit) Me.pnLimit.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnLimit.Location = New System.Drawing.Point(289, 124) - Me.pnLimit.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnLimit.Location = New System.Drawing.Point(253, 99) Me.pnLimit.Name = "pnLimit" - Me.pnLimit.Size = New System.Drawing.Size(106, 44) + Me.pnLimit.Size = New System.Drawing.Size(93, 35) Me.pnLimit.TabIndex = 25 ' 'lbLimit ' Me.lbLimit.AutoSize = True - Me.lbLimit.Location = New System.Drawing.Point(5, 10) + Me.lbLimit.Location = New System.Drawing.Point(4, 8) Me.lbLimit.Name = "lbLimit" - Me.lbLimit.Size = New System.Drawing.Size(110, 24) + Me.lbLimit.Size = New System.Drawing.Size(89, 19) Me.lbLimit.TabIndex = 0 Me.lbLimit.Text = "제한수량" ' @@ -3280,36 +3107,33 @@ Partial Class mainForm ' Me.pnLimit2.Controls.Add(Me.txbLimit) Me.pnLimit2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnLimit2.Location = New System.Drawing.Point(399, 124) - Me.pnLimit2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnLimit2.Location = New System.Drawing.Point(349, 99) Me.pnLimit2.Name = "pnLimit2" - Me.pnLimit2.Size = New System.Drawing.Size(157, 44) + Me.pnLimit2.Size = New System.Drawing.Size(137, 35) Me.pnLimit2.TabIndex = 4 ' 'txbLimit ' - Me.txbLimit.Location = New System.Drawing.Point(6, 2) - Me.txbLimit.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbLimit.Location = New System.Drawing.Point(5, 2) Me.txbLimit.Name = "txbLimit" - Me.txbLimit.Size = New System.Drawing.Size(148, 35) + Me.txbLimit.Size = New System.Drawing.Size(130, 29) Me.txbLimit.TabIndex = 0 ' 'pnProdCode ' Me.pnProdCode.Controls.Add(Me.lbProdCode) Me.pnProdCode.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnProdCode.Location = New System.Drawing.Point(289, 75) - Me.pnProdCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnProdCode.Location = New System.Drawing.Point(253, 60) Me.pnProdCode.Name = "pnProdCode" - Me.pnProdCode.Size = New System.Drawing.Size(106, 44) + Me.pnProdCode.Size = New System.Drawing.Size(93, 35) Me.pnProdCode.TabIndex = 23 ' 'lbProdCode ' Me.lbProdCode.AutoSize = True - Me.lbProdCode.Location = New System.Drawing.Point(5, 10) + Me.lbProdCode.Location = New System.Drawing.Point(4, 8) Me.lbProdCode.Name = "lbProdCode" - Me.lbProdCode.Size = New System.Drawing.Size(110, 24) + Me.lbProdCode.Size = New System.Drawing.Size(89, 19) Me.lbProdCode.TabIndex = 0 Me.lbProdCode.Text = "분류번호" ' @@ -3317,39 +3141,36 @@ Partial Class mainForm ' Me.pnProdCode2.Controls.Add(Me.txbProdCode) Me.pnProdCode2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnProdCode2.Location = New System.Drawing.Point(399, 75) - Me.pnProdCode2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnProdCode2.Location = New System.Drawing.Point(349, 60) Me.pnProdCode2.Name = "pnProdCode2" - Me.pnProdCode2.Size = New System.Drawing.Size(157, 44) + Me.pnProdCode2.Size = New System.Drawing.Size(137, 35) Me.pnProdCode2.TabIndex = 24 ' 'txbProdCode ' Me.txbProdCode.BackColor = System.Drawing.SystemColors.ControlLight Me.txbProdCode.Enabled = False - Me.txbProdCode.Location = New System.Drawing.Point(6, 2) - Me.txbProdCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbProdCode.Location = New System.Drawing.Point(5, 2) Me.txbProdCode.Name = "txbProdCode" Me.txbProdCode.ReadOnly = True - Me.txbProdCode.Size = New System.Drawing.Size(148, 35) + Me.txbProdCode.Size = New System.Drawing.Size(130, 29) Me.txbProdCode.TabIndex = 0 ' 'pnEvCount ' Me.pnEvCount.Controls.Add(Me.lbEvCount) Me.pnEvCount.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvCount.Location = New System.Drawing.Point(18, 124) - Me.pnEvCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvCount.Location = New System.Drawing.Point(16, 99) Me.pnEvCount.Name = "pnEvCount" - Me.pnEvCount.Size = New System.Drawing.Size(106, 44) + Me.pnEvCount.Size = New System.Drawing.Size(93, 35) Me.pnEvCount.TabIndex = 17 ' 'lbEvCount ' Me.lbEvCount.AutoSize = True - Me.lbEvCount.Location = New System.Drawing.Point(47, 10) + Me.lbEvCount.Location = New System.Drawing.Point(41, 8) Me.lbEvCount.Name = "lbEvCount" - Me.lbEvCount.Size = New System.Drawing.Size(60, 24) + Me.lbEvCount.Size = New System.Drawing.Size(49, 19) Me.lbEvCount.TabIndex = 0 Me.lbEvCount.Text = "수량" ' @@ -3357,36 +3178,33 @@ Partial Class mainForm ' Me.pnEvCount2.Controls.Add(Me.txbEvCount) Me.pnEvCount2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvCount2.Location = New System.Drawing.Point(128, 124) - Me.pnEvCount2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvCount2.Location = New System.Drawing.Point(112, 99) Me.pnEvCount2.Name = "pnEvCount2" - Me.pnEvCount2.Size = New System.Drawing.Size(157, 44) + Me.pnEvCount2.Size = New System.Drawing.Size(137, 35) Me.pnEvCount2.TabIndex = 3 ' 'txbEvCount ' - Me.txbEvCount.Location = New System.Drawing.Point(6, 2) - Me.txbEvCount.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEvCount.Location = New System.Drawing.Point(5, 2) Me.txbEvCount.Name = "txbEvCount" - Me.txbEvCount.Size = New System.Drawing.Size(148, 35) + Me.txbEvCount.Size = New System.Drawing.Size(130, 29) Me.txbEvCount.TabIndex = 0 ' 'pnEvEye ' Me.pnEvEye.Controls.Add(Me.lbEvEye) Me.pnEvEye.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvEye.Location = New System.Drawing.Point(289, 172) - Me.pnEvEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvEye.Location = New System.Drawing.Point(253, 138) Me.pnEvEye.Name = "pnEvEye" - Me.pnEvEye.Size = New System.Drawing.Size(106, 44) + Me.pnEvEye.Size = New System.Drawing.Size(93, 35) Me.pnEvEye.TabIndex = 21 ' 'lbEvEye ' Me.lbEvEye.AutoSize = True - Me.lbEvEye.Location = New System.Drawing.Point(24, 10) + Me.lbEvEye.Location = New System.Drawing.Point(21, 8) Me.lbEvEye.Name = "lbEvEye" - Me.lbEvEye.Size = New System.Drawing.Size(85, 24) + Me.lbEvEye.Size = New System.Drawing.Size(69, 19) Me.lbEvEye.TabIndex = 0 Me.lbEvEye.Text = "눈가샷" ' @@ -3394,36 +3212,33 @@ Partial Class mainForm ' Me.pnEvEye2.Controls.Add(Me.txbEvEye) Me.pnEvEye2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvEye2.Location = New System.Drawing.Point(399, 172) - Me.pnEvEye2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvEye2.Location = New System.Drawing.Point(349, 138) Me.pnEvEye2.Name = "pnEvEye2" - Me.pnEvEye2.Size = New System.Drawing.Size(157, 44) + Me.pnEvEye2.Size = New System.Drawing.Size(137, 35) Me.pnEvEye2.TabIndex = 22 ' 'txbEvEye ' - Me.txbEvEye.Location = New System.Drawing.Point(6, 2) - Me.txbEvEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEvEye.Location = New System.Drawing.Point(5, 2) Me.txbEvEye.Name = "txbEvEye" - Me.txbEvEye.Size = New System.Drawing.Size(148, 35) + Me.txbEvEye.Size = New System.Drawing.Size(130, 29) Me.txbEvEye.TabIndex = 2 ' 'pnEvFace ' Me.pnEvFace.Controls.Add(Me.lbEvFace) Me.pnEvFace.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvFace.Location = New System.Drawing.Point(18, 172) - Me.pnEvFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvFace.Location = New System.Drawing.Point(16, 138) Me.pnEvFace.Name = "pnEvFace" - Me.pnEvFace.Size = New System.Drawing.Size(106, 44) + Me.pnEvFace.Size = New System.Drawing.Size(93, 35) Me.pnEvFace.TabIndex = 19 ' 'lbEvFace ' Me.lbEvFace.AutoSize = True - Me.lbEvFace.Location = New System.Drawing.Point(5, 10) + Me.lbEvFace.Location = New System.Drawing.Point(4, 8) Me.lbEvFace.Name = "lbEvFace" - Me.lbEvFace.Size = New System.Drawing.Size(110, 24) + Me.lbEvFace.Size = New System.Drawing.Size(89, 19) Me.lbEvFace.TabIndex = 0 Me.lbEvFace.Text = "페이스샷" ' @@ -3431,36 +3246,33 @@ Partial Class mainForm ' Me.pnEvFace2.Controls.Add(Me.txbEvFace) Me.pnEvFace2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvFace2.Location = New System.Drawing.Point(128, 172) - Me.pnEvFace2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvFace2.Location = New System.Drawing.Point(112, 138) Me.pnEvFace2.Name = "pnEvFace2" - Me.pnEvFace2.Size = New System.Drawing.Size(157, 44) + Me.pnEvFace2.Size = New System.Drawing.Size(137, 35) Me.pnEvFace2.TabIndex = 5 ' 'txbEvFace ' - Me.txbEvFace.Location = New System.Drawing.Point(6, 2) - Me.txbEvFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEvFace.Location = New System.Drawing.Point(5, 2) Me.txbEvFace.Name = "txbEvFace" - Me.txbEvFace.Size = New System.Drawing.Size(148, 35) + Me.txbEvFace.Size = New System.Drawing.Size(130, 29) Me.txbEvFace.TabIndex = 0 ' 'pnEvCode ' Me.pnEvCode.Controls.Add(Me.lbEvCode) Me.pnEvCode.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvCode.Location = New System.Drawing.Point(17, 75) - Me.pnEvCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvCode.Location = New System.Drawing.Point(15, 60) Me.pnEvCode.Name = "pnEvCode" - Me.pnEvCode.Size = New System.Drawing.Size(106, 44) + Me.pnEvCode.Size = New System.Drawing.Size(93, 35) Me.pnEvCode.TabIndex = 15 ' 'lbEvCode ' Me.lbEvCode.AutoSize = True - Me.lbEvCode.Location = New System.Drawing.Point(5, 10) + Me.lbEvCode.Location = New System.Drawing.Point(4, 8) Me.lbEvCode.Name = "lbEvCode" - Me.lbEvCode.Size = New System.Drawing.Size(110, 24) + Me.lbEvCode.Size = New System.Drawing.Size(89, 19) Me.lbEvCode.TabIndex = 0 Me.lbEvCode.Text = "제품코드" ' @@ -3468,39 +3280,36 @@ Partial Class mainForm ' Me.pnEvCode2.Controls.Add(Me.txbEvCode) Me.pnEvCode2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvCode2.Location = New System.Drawing.Point(127, 75) - Me.pnEvCode2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvCode2.Location = New System.Drawing.Point(111, 60) Me.pnEvCode2.Name = "pnEvCode2" - Me.pnEvCode2.Size = New System.Drawing.Size(157, 44) + Me.pnEvCode2.Size = New System.Drawing.Size(137, 35) Me.pnEvCode2.TabIndex = 16 ' 'txbEvCode ' Me.txbEvCode.BackColor = System.Drawing.SystemColors.ControlLight Me.txbEvCode.Enabled = False - Me.txbEvCode.Location = New System.Drawing.Point(6, 2) - Me.txbEvCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEvCode.Location = New System.Drawing.Point(5, 2) Me.txbEvCode.Name = "txbEvCode" Me.txbEvCode.ReadOnly = True - Me.txbEvCode.Size = New System.Drawing.Size(148, 35) + Me.txbEvCode.Size = New System.Drawing.Size(130, 29) Me.txbEvCode.TabIndex = 0 ' 'pnEvName ' Me.pnEvName.Controls.Add(Me.lbEvName) Me.pnEvName.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvName.Location = New System.Drawing.Point(17, 28) - Me.pnEvName.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvName.Location = New System.Drawing.Point(15, 22) Me.pnEvName.Name = "pnEvName" - Me.pnEvName.Size = New System.Drawing.Size(106, 44) + Me.pnEvName.Size = New System.Drawing.Size(93, 35) Me.pnEvName.TabIndex = 13 ' 'lbEvName ' Me.lbEvName.AutoSize = True - Me.lbEvName.Location = New System.Drawing.Point(24, 10) + Me.lbEvName.Location = New System.Drawing.Point(21, 8) Me.lbEvName.Name = "lbEvName" - Me.lbEvName.Size = New System.Drawing.Size(85, 24) + Me.lbEvName.Size = New System.Drawing.Size(69, 19) Me.lbEvName.TabIndex = 0 Me.lbEvName.Text = "제품명" ' @@ -3508,21 +3317,19 @@ Partial Class mainForm ' Me.pnEvName2.Controls.Add(Me.txbEvName) Me.pnEvName2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnEvName2.Location = New System.Drawing.Point(127, 28) - Me.pnEvName2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnEvName2.Location = New System.Drawing.Point(111, 22) Me.pnEvName2.Name = "pnEvName2" - Me.pnEvName2.Size = New System.Drawing.Size(427, 44) + Me.pnEvName2.Size = New System.Drawing.Size(374, 35) Me.pnEvName2.TabIndex = 14 ' 'txbEvName ' Me.txbEvName.BackColor = System.Drawing.SystemColors.ControlLight Me.txbEvName.Enabled = False - Me.txbEvName.Location = New System.Drawing.Point(6, 2) - Me.txbEvName.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbEvName.Location = New System.Drawing.Point(5, 2) Me.txbEvName.Name = "txbEvName" Me.txbEvName.ReadOnly = True - Me.txbEvName.Size = New System.Drawing.Size(419, 35) + Me.txbEvName.Size = New System.Drawing.Size(367, 29) Me.txbEvName.TabIndex = 0 ' 'gbEvent @@ -3532,11 +3339,9 @@ Partial Class mainForm Me.gbEvent.Controls.Add(Me.btnEvAllDel) Me.gbEvent.Controls.Add(Me.pnMassTime) Me.gbEvent.Font = New System.Drawing.Font("굴림", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEvent.Location = New System.Drawing.Point(14, 39) - Me.gbEvent.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEvent.Location = New System.Drawing.Point(12, 31) Me.gbEvent.Name = "gbEvent" - Me.gbEvent.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEvent.Size = New System.Drawing.Size(765, 1144) + Me.gbEvent.Size = New System.Drawing.Size(669, 915) Me.gbEvent.TabIndex = 43 Me.gbEvent.TabStop = False Me.gbEvent.Text = "출고 및 이벤트 목록" @@ -3544,10 +3349,9 @@ Partial Class mainForm 'btndgvReset ' Me.btndgvReset.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btndgvReset.Location = New System.Drawing.Point(509, 979) - Me.btndgvReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btndgvReset.Location = New System.Drawing.Point(445, 783) Me.btndgvReset.Name = "btndgvReset" - Me.btndgvReset.Size = New System.Drawing.Size(246, 105) + Me.btndgvReset.Size = New System.Drawing.Size(215, 84) Me.btndgvReset.TabIndex = 53 Me.btndgvReset.Text = "새로고침" Me.btndgvReset.UseVisualStyleBackColor = True @@ -3556,12 +3360,11 @@ Partial Class mainForm ' Me.dgvEvent.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.dgvEvent.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.dfNum, Me.df_event_name, Me.df_event_code, Me.df_event_prod, Me.df_event_count, Me.df_event_face, Me.df_event_eye, Me.dfPRCode, Me.dfautoUse, Me.dfLimit}) - Me.dgvEvent.Location = New System.Drawing.Point(11, 38) - Me.dgvEvent.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.dgvEvent.Location = New System.Drawing.Point(10, 30) Me.dgvEvent.Name = "dgvEvent" Me.dgvEvent.RowHeadersWidth = 51 Me.dgvEvent.RowTemplate.Height = 23 - Me.dgvEvent.Size = New System.Drawing.Size(743, 936) + Me.dgvEvent.Size = New System.Drawing.Size(650, 749) Me.dgvEvent.TabIndex = 0 ' 'dfNum @@ -3637,10 +3440,9 @@ Partial Class mainForm 'btnEvAllDel ' Me.btnEvAllDel.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnEvAllDel.Location = New System.Drawing.Point(261, 979) - Me.btnEvAllDel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnEvAllDel.Location = New System.Drawing.Point(228, 783) Me.btnEvAllDel.Name = "btnEvAllDel" - Me.btnEvAllDel.Size = New System.Drawing.Size(246, 105) + Me.btnEvAllDel.Size = New System.Drawing.Size(215, 84) Me.btnEvAllDel.TabIndex = 48 Me.btnEvAllDel.Text = "전체삭제" Me.btnEvAllDel.UseVisualStyleBackColor = True @@ -3648,10 +3450,9 @@ Partial Class mainForm 'pnMassTime ' Me.pnMassTime.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.pnMassTime.Location = New System.Drawing.Point(11, 979) - Me.pnMassTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMassTime.Location = New System.Drawing.Point(10, 783) Me.pnMassTime.Name = "pnMassTime" - Me.pnMassTime.Size = New System.Drawing.Size(246, 105) + Me.pnMassTime.Size = New System.Drawing.Size(215, 84) Me.pnMassTime.TabIndex = 45 Me.pnMassTime.Text = "행삭제" Me.pnMassTime.UseVisualStyleBackColor = True @@ -3659,10 +3460,9 @@ Partial Class mainForm 'btnOpExit ' Me.btnOpExit.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnOpExit.Location = New System.Drawing.Point(1939, 5) - Me.btnOpExit.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnOpExit.Location = New System.Drawing.Point(1697, 4) Me.btnOpExit.Name = "btnOpExit" - Me.btnOpExit.Size = New System.Drawing.Size(248, 94) + Me.btnOpExit.Size = New System.Drawing.Size(217, 75) Me.btnOpExit.TabIndex = 98 Me.btnOpExit.Text = "나가기" Me.btnOpExit.UseVisualStyleBackColor = True @@ -3674,11 +3474,9 @@ Partial Class mainForm Me.gpbConfig.Controls.Add(Me.chbUseBarcode) Me.gpbConfig.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gpbConfig.ForeColor = System.Drawing.Color.Black - Me.gpbConfig.Location = New System.Drawing.Point(1266, 6) - Me.gpbConfig.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gpbConfig.Location = New System.Drawing.Point(1108, 5) Me.gpbConfig.Name = "gpbConfig" - Me.gpbConfig.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gpbConfig.Size = New System.Drawing.Size(439, 92) + Me.gpbConfig.Size = New System.Drawing.Size(384, 74) Me.gpbConfig.TabIndex = 97 Me.gpbConfig.TabStop = False Me.gpbConfig.Text = "설정" @@ -3689,10 +3487,9 @@ Partial Class mainForm Me.ckbPrinter.Checked = True Me.ckbPrinter.CheckState = System.Windows.Forms.CheckState.Checked Me.ckbPrinter.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckbPrinter.Location = New System.Drawing.Point(211, 29) - Me.ckbPrinter.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckbPrinter.Location = New System.Drawing.Point(185, 23) Me.ckbPrinter.Name = "ckbPrinter" - Me.ckbPrinter.Size = New System.Drawing.Size(216, 48) + Me.ckbPrinter.Size = New System.Drawing.Size(172, 39) Me.ckbPrinter.TabIndex = 79 Me.ckbPrinter.Text = "프린트 사용" Me.ckbPrinter.UseVisualStyleBackColor = True @@ -3703,10 +3500,9 @@ Partial Class mainForm Me.chbUseBarcode.Checked = True Me.chbUseBarcode.CheckState = System.Windows.Forms.CheckState.Checked Me.chbUseBarcode.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.chbUseBarcode.Location = New System.Drawing.Point(17, 29) - Me.chbUseBarcode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.chbUseBarcode.Location = New System.Drawing.Point(15, 23) Me.chbUseBarcode.Name = "chbUseBarcode" - Me.chbUseBarcode.Size = New System.Drawing.Size(206, 48) + Me.chbUseBarcode.Size = New System.Drawing.Size(164, 39) Me.chbUseBarcode.TabIndex = 77 Me.chbUseBarcode.Text = "바코드사용" Me.chbUseBarcode.UseVisualStyleBackColor = True @@ -3719,11 +3515,9 @@ Partial Class mainForm Me.gbSerial.Controls.Add(Me.cmdSerial) Me.gbSerial.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbSerial.ForeColor = System.Drawing.Color.Black - Me.gbSerial.Location = New System.Drawing.Point(3, 5) - Me.gbSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbSerial.Location = New System.Drawing.Point(3, 4) Me.gbSerial.Name = "gbSerial" - Me.gbSerial.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbSerial.Size = New System.Drawing.Size(377, 94) + Me.gbSerial.Size = New System.Drawing.Size(330, 75) Me.gbSerial.TabIndex = 95 Me.gbSerial.TabStop = False Me.gbSerial.Text = "시리얼 통신설정" @@ -3734,29 +3528,28 @@ Partial Class mainForm Me.cboComPort.Font = New System.Drawing.Font("함초롬바탕", 15.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.cboComPort.ForeColor = System.Drawing.Color.Black Me.cboComPort.FormattingEnabled = True - Me.cboComPort.Location = New System.Drawing.Point(109, 38) + Me.cboComPort.Location = New System.Drawing.Point(95, 30) Me.cboComPort.Margin = New System.Windows.Forms.Padding(3, 2, 3, 2) Me.cboComPort.Name = "cboComPort" - Me.cboComPort.Size = New System.Drawing.Size(182, 42) + Me.cboComPort.Size = New System.Drawing.Size(160, 35) Me.cboComPort.TabIndex = 19 ' 'lbSerial ' Me.lbSerial.AutoSize = True Me.lbSerial.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbSerial.Location = New System.Drawing.Point(6, 41) + Me.lbSerial.Location = New System.Drawing.Point(5, 33) Me.lbSerial.Name = "lbSerial" - Me.lbSerial.Size = New System.Drawing.Size(119, 35) + Me.lbSerial.Size = New System.Drawing.Size(92, 27) Me.lbSerial.TabIndex = 17 Me.lbSerial.Text = "통신포트" ' 'cmdSerial ' Me.cmdSerial.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.cmdSerial.Location = New System.Drawing.Point(297, 34) - Me.cmdSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.cmdSerial.Location = New System.Drawing.Point(260, 27) Me.cmdSerial.Name = "cmdSerial" - Me.cmdSerial.Size = New System.Drawing.Size(69, 50) + Me.cmdSerial.Size = New System.Drawing.Size(60, 40) Me.cmdSerial.TabIndex = 16 Me.cmdSerial.Text = "스캔" Me.cmdSerial.UseVisualStyleBackColor = True @@ -3772,11 +3565,9 @@ Partial Class mainForm Me.gbWeightRg.Controls.Add(Me.lbWeightMinus) Me.gbWeightRg.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbWeightRg.ForeColor = System.Drawing.Color.Black - Me.gbWeightRg.Location = New System.Drawing.Point(899, 6) - Me.gbWeightRg.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbWeightRg.Location = New System.Drawing.Point(787, 5) Me.gbWeightRg.Name = "gbWeightRg" - Me.gbWeightRg.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbWeightRg.Size = New System.Drawing.Size(361, 94) + Me.gbWeightRg.Size = New System.Drawing.Size(316, 75) Me.gbWeightRg.TabIndex = 94 Me.gbWeightRg.TabStop = False Me.gbWeightRg.Text = "무게측정오차범위" @@ -3784,10 +3575,9 @@ Partial Class mainForm 'txbWeightPlus ' Me.txbWeightPlus.Font = New System.Drawing.Font("함초롬바탕", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbWeightPlus.Location = New System.Drawing.Point(35, 31) - Me.txbWeightPlus.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbWeightPlus.Location = New System.Drawing.Point(31, 25) Me.txbWeightPlus.Name = "txbWeightPlus" - Me.txbWeightPlus.Size = New System.Drawing.Size(111, 55) + Me.txbWeightPlus.Size = New System.Drawing.Size(98, 45) Me.txbWeightPlus.TabIndex = 96 Me.txbWeightPlus.Text = "600" Me.txbWeightPlus.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3796,9 +3586,9 @@ Partial Class mainForm ' Me.lbWeightRg1.AutoSize = True Me.lbWeightRg1.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbWeightRg1.Location = New System.Drawing.Point(149, 37) + Me.lbWeightRg1.Location = New System.Drawing.Point(130, 30) Me.lbWeightRg1.Name = "lbWeightRg1" - Me.lbWeightRg1.Size = New System.Drawing.Size(38, 44) + Me.lbWeightRg1.Size = New System.Drawing.Size(30, 35) Me.lbWeightRg1.TabIndex = 97 Me.lbWeightRg1.Text = "g" ' @@ -3806,19 +3596,18 @@ Partial Class mainForm ' Me.lbWeightPlus.AutoSize = True Me.lbWeightPlus.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbWeightPlus.Location = New System.Drawing.Point(6, 36) + Me.lbWeightPlus.Location = New System.Drawing.Point(5, 29) Me.lbWeightPlus.Name = "lbWeightPlus" - Me.lbWeightPlus.Size = New System.Drawing.Size(38, 44) + Me.lbWeightPlus.Size = New System.Drawing.Size(30, 35) Me.lbWeightPlus.TabIndex = 95 Me.lbWeightPlus.Text = "+" ' 'txbWeightMinus ' Me.txbWeightMinus.Font = New System.Drawing.Font("함초롬바탕", 21.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbWeightMinus.Location = New System.Drawing.Point(213, 31) - Me.txbWeightMinus.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbWeightMinus.Location = New System.Drawing.Point(186, 25) Me.txbWeightMinus.Name = "txbWeightMinus" - Me.txbWeightMinus.Size = New System.Drawing.Size(111, 55) + Me.txbWeightMinus.Size = New System.Drawing.Size(98, 45) Me.txbWeightMinus.TabIndex = 93 Me.txbWeightMinus.Text = "600" Me.txbWeightMinus.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3827,9 +3616,9 @@ Partial Class mainForm ' Me.lbWeightRg2.AutoSize = True Me.lbWeightRg2.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbWeightRg2.Location = New System.Drawing.Point(328, 37) + Me.lbWeightRg2.Location = New System.Drawing.Point(287, 30) Me.lbWeightRg2.Name = "lbWeightRg2" - Me.lbWeightRg2.Size = New System.Drawing.Size(38, 44) + Me.lbWeightRg2.Size = New System.Drawing.Size(30, 35) Me.lbWeightRg2.TabIndex = 94 Me.lbWeightRg2.Text = "g" ' @@ -3837,9 +3626,9 @@ Partial Class mainForm ' Me.lbWeightMinus.AutoSize = True Me.lbWeightMinus.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbWeightMinus.Location = New System.Drawing.Point(185, 36) + Me.lbWeightMinus.Location = New System.Drawing.Point(162, 29) Me.lbWeightMinus.Name = "lbWeightMinus" - Me.lbWeightMinus.Size = New System.Drawing.Size(38, 44) + Me.lbWeightMinus.Size = New System.Drawing.Size(30, 35) Me.lbWeightMinus.TabIndex = 92 Me.lbWeightMinus.Text = "-" ' @@ -3850,11 +3639,9 @@ Partial Class mainForm Me.gbWeigth.Controls.Add(Me.ckbWeight) Me.gbWeigth.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbWeigth.ForeColor = System.Drawing.Color.Black - Me.gbWeigth.Location = New System.Drawing.Point(387, 6) - Me.gbWeigth.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbWeigth.Location = New System.Drawing.Point(339, 5) Me.gbWeigth.Name = "gbWeigth" - Me.gbWeigth.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbWeigth.Size = New System.Drawing.Size(506, 92) + Me.gbWeigth.Size = New System.Drawing.Size(443, 74) Me.gbWeigth.TabIndex = 93 Me.gbWeigth.TabStop = False Me.gbWeigth.Text = "저울 설정" @@ -3864,20 +3651,18 @@ Partial Class mainForm Me.Panel1.Controls.Add(Me.rdbWeightQW) Me.Panel1.Controls.Add(Me.rdbWeightCAS) Me.Panel1.Controls.Add(Me.rdbWeightAuto) - Me.Panel1.Location = New System.Drawing.Point(131, 15) - Me.Panel1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.Panel1.Location = New System.Drawing.Point(115, 12) Me.Panel1.Name = "Panel1" - Me.Panel1.Size = New System.Drawing.Size(369, 75) + Me.Panel1.Size = New System.Drawing.Size(323, 60) Me.Panel1.TabIndex = 79 ' 'rdbWeightQW ' Me.rdbWeightQW.AutoSize = True Me.rdbWeightQW.Font = New System.Drawing.Font("함초롬바탕", 11.0!, System.Drawing.FontStyle.Bold) - Me.rdbWeightQW.Location = New System.Drawing.Point(259, 22) - Me.rdbWeightQW.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbWeightQW.Location = New System.Drawing.Point(227, 18) Me.rdbWeightQW.Name = "rdbWeightQW" - Me.rdbWeightQW.Size = New System.Drawing.Size(97, 28) + Me.rdbWeightQW.Size = New System.Drawing.Size(82, 23) Me.rdbWeightQW.TabIndex = 80 Me.rdbWeightQW.TabStop = True Me.rdbWeightQW.Text = "QW저울" @@ -3887,10 +3672,9 @@ Partial Class mainForm ' Me.rdbWeightCAS.AutoSize = True Me.rdbWeightCAS.Font = New System.Drawing.Font("함초롬바탕", 11.0!, System.Drawing.FontStyle.Bold) - Me.rdbWeightCAS.Location = New System.Drawing.Point(139, 22) - Me.rdbWeightCAS.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbWeightCAS.Location = New System.Drawing.Point(122, 18) Me.rdbWeightCAS.Name = "rdbWeightCAS" - Me.rdbWeightCAS.Size = New System.Drawing.Size(105, 28) + Me.rdbWeightCAS.Size = New System.Drawing.Size(87, 23) Me.rdbWeightCAS.TabIndex = 79 Me.rdbWeightCAS.TabStop = True Me.rdbWeightCAS.Text = "CAS저울" @@ -3900,10 +3684,9 @@ Partial Class mainForm ' Me.rdbWeightAuto.AutoSize = True Me.rdbWeightAuto.Font = New System.Drawing.Font("함초롬바탕", 11.0!, System.Drawing.FontStyle.Bold) - Me.rdbWeightAuto.Location = New System.Drawing.Point(11, 22) - Me.rdbWeightAuto.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbWeightAuto.Location = New System.Drawing.Point(10, 18) Me.rdbWeightAuto.Name = "rdbWeightAuto" - Me.rdbWeightAuto.Size = New System.Drawing.Size(121, 28) + Me.rdbWeightAuto.Size = New System.Drawing.Size(102, 23) Me.rdbWeightAuto.TabIndex = 78 Me.rdbWeightAuto.TabStop = True Me.rdbWeightAuto.Text = "중량선별기" @@ -3913,10 +3696,9 @@ Partial Class mainForm ' Me.ckbWeight.AutoSize = True Me.ckbWeight.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckbWeight.Location = New System.Drawing.Point(22, 30) - Me.ckbWeight.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckbWeight.Location = New System.Drawing.Point(19, 24) Me.ckbWeight.Name = "ckbWeight" - Me.ckbWeight.Size = New System.Drawing.Size(107, 48) + Me.ckbWeight.Size = New System.Drawing.Size(86, 39) Me.ckbWeight.TabIndex = 77 Me.ckbWeight.Text = "사용" Me.ckbWeight.UseVisualStyleBackColor = True @@ -3928,11 +3710,9 @@ Partial Class mainForm Me.gbDBNew.Controls.Add(Me.ckbNewSave) Me.gbDBNew.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbDBNew.ForeColor = System.Drawing.Color.Black - Me.gbDBNew.Location = New System.Drawing.Point(2057, 6) - Me.gbDBNew.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbDBNew.Location = New System.Drawing.Point(1800, 5) Me.gbDBNew.Name = "gbDBNew" - Me.gbDBNew.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbDBNew.Size = New System.Drawing.Size(495, 92) + Me.gbDBNew.Size = New System.Drawing.Size(433, 74) Me.gbDBNew.TabIndex = 103 Me.gbDBNew.TabStop = False Me.gbDBNew.Text = "설정" @@ -3942,10 +3722,9 @@ Partial Class mainForm ' Me.ckbNEWDB.AutoSize = True Me.ckbNEWDB.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckbNEWDB.Location = New System.Drawing.Point(240, 28) - Me.ckbNEWDB.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckbNEWDB.Location = New System.Drawing.Point(210, 22) Me.ckbNEWDB.Name = "ckbNEWDB" - Me.ckbNEWDB.Size = New System.Drawing.Size(218, 48) + Me.ckbNEWDB.Size = New System.Drawing.Size(173, 39) Me.ckbNEWDB.TabIndex = 78 Me.ckbNEWDB.Text = "다른DB형식" Me.ckbNEWDB.UseVisualStyleBackColor = True @@ -3954,10 +3733,9 @@ Partial Class mainForm ' Me.ckbNewSave.AutoSize = True Me.ckbNewSave.Font = New System.Drawing.Font("함초롬바탕", 20.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.ckbNewSave.Location = New System.Drawing.Point(17, 29) - Me.ckbNewSave.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckbNewSave.Location = New System.Drawing.Point(15, 23) Me.ckbNewSave.Name = "ckbNewSave" - Me.ckbNewSave.Size = New System.Drawing.Size(239, 48) + Me.ckbNewSave.Size = New System.Drawing.Size(190, 39) Me.ckbNewSave.TabIndex = 77 Me.ckbNewSave.Text = "신규저장방식" Me.ckbNewSave.UseVisualStyleBackColor = True @@ -3972,13 +3750,12 @@ Partial Class mainForm ' 'mainForm ' - Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 15.0!) + Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 12.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.ClientSize = New System.Drawing.Size(4393, 1325) + Me.ClientSize = New System.Drawing.Size(3844, 849) Me.Controls.Add(Me.pnOption) Me.Controls.Add(Me.pnMain) Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) - Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.Name = "mainForm" Me.Text = "Form1" Me.WindowState = System.Windows.Forms.FormWindowState.Maximized diff --git a/OrderPackingProcessor/mainForm.vb b/OrderPackingProcessor/mainForm.vb index b22fc01..8f18872 100644 --- a/OrderPackingProcessor/mainForm.vb +++ b/OrderPackingProcessor/mainForm.vb @@ -7,7 +7,7 @@ Imports Newtonsoft.Json.Linq Public Class mainForm Public projectName As String = "OrderPackingProcessor Ver." - Public projectVer As String = "2.0.0" + Public projectVer As String = "3.0.0" Private apiItemOutURL As String = "item-outflows/page" @@ -252,7 +252,6 @@ Public Class mainForm Public weightStart As Boolean = False Private autoWeight As Integer - Private Sub SetInputCnt() InputCnt = InputCntVal barTimer.Enabled = True @@ -349,22 +348,22 @@ Public Class mainForm Private Sub viewCountSet(textCount As String) textCount = Mid(textCount, InStr(textCount, ",") + 1, textCount.Length) - If UBound(Split(textCount, ",")) = countCommand.Length - 1 Then - For i = 0 To prodDB_max_index + If UBound(Split(textCount, ",")) = (item_product_max_index + item_component_max_index + 1) Then + For i = 0 To item_product_max_index If UBound(Split(textCount, ",")) > 0 Then - prodComCount(i) = Mid(textCount, 1, InStr(textCount, ",") - 1) + product_packing_cnt_list(i).com_count = Mid(textCount, 1, InStr(textCount, ",") - 1) textCount = Mid(textCount, InStr(textCount, ",") + 1, textCount.Length) Else - prodComCount(i) = Mid(textCount, 1, textCount.Length) + product_packing_cnt_list(i).com_count = Mid(textCount, 1, textCount.Length) End If Next - For i = 0 To comDB_max_index + For i = 0 To item_component_max_index If UBound(Split(textCount, ",")) > 0 Then - comComCount(i) = Mid(textCount, 1, InStr(textCount, ",") - 1) + component_packing_cnt_list(i).com_count = Mid(textCount, 1, InStr(textCount, ",") - 1) textCount = Mid(textCount, InStr(textCount, ",") + 1, textCount.Length) Else - comComCount(i) = Mid(textCount, 1, textCount.Length) + component_packing_cnt_list(i).com_count = Mid(textCount, 1, textCount.Length) End If Next Else @@ -1583,114 +1582,27 @@ Public Class mainForm End Function Private Function comCountSet() As Boolean + Dim query_component_sales_packing_cnt As String = Nothing + Dim sales_packing_cnt_col_nm As String + For i = 0 To item_component_max_index + If item_component_list(i).sales_packing_cnt_col_nm <> Nothing Then + sales_packing_cnt_col_nm = item_component_list(i).sales_packing_cnt_col_nm + Else + sales_packing_cnt_col_nm = 0 + End If - DBCmd = "SELECT Mask5Cnt - , Mask10Cnt - , HairBandCnt - , GelCnt - , MiniGelCnt - , AmpleCnt - , CreamCnt - , UmbrellaCnt - , FenCnt - , ChargerCnt - , CableCnt - , TonerCnt - , Case_PRO_Black - , Case_PRO_Beige - , Case_PRO_Red - , Case_PRO_Pink - , Case_MAX_Black - , Case_MAX_Apr - , Case_MAX_Mint - , Case_MAX_Beige - , SoothingGelCnt - , Carton0_Cnt - , Carton1_Cnt - , Carton2_Cnt - , Carton3_Cnt - , Carton4_Cnt - , Carton5_Cnt - , Carton6_Cnt - , Shopbag_Cnt - , CosShopbag_Cnt - , DustBagCnt - , Case_MAX_Purple - , Case_PRO_SnakeBlakc - , KollagenCnt - , KollagenSetCnt - , Kollagen_PCnt - , KollagenSet_PCnt - , CleansingWaterCnt - , TonerPadCnt - , Case_MAX_SafBK_Cnt - , Hologram_1Cnt - , Hologram_3Cnt - , Hologram_5Cnt - , Case_MAX_SafPp_Cnt - , Case_MAX_Yellow - , Kollagen_Pe1Cnt - , Kollagen_Pe3Cnt - , Kollagen_Pe5Cnt - , ATCircleCaseCnt - , APSquareCaseCnt - , Case_MAX_Peach - , MasSoothingCnt - , Case_MAX_SMintCnt - , MeshPouchCnt - , FirmingAmpCnt - , HyaluronicAmpCnt - , nightshotcnt - , morningshotcnt - , casemaxwoodicnt - , Elicolltonercnt - , Elicollampcnt - , Elicollcreamcnt - , Elihyaltonercnt - , Elihyalampcnt - , Elihyalcreamcnt - , Dayshotcnt - , Beautyshopbagcnt - , Gummycnt - , Stickjellycnt - , Newyearbagcnt - , Emsbeltcnt - , Beltbagcnt - , Dayshot2cnt - , Elixircnt - , Elixirpremiumcnt - , Emsbeltcontrollsetcnt - , FabricBagcnt - , Goldshopbagcnt - , MorNigshotsetcnt - , CTBoxcnt - , ElesqLiftingTonercnt - , ElesqLiftingCeamcnt - , ElesqLiftingECreamcnt - , ElesqLiftingAmpcnt - , ElesqAquaTonercnt - , ElesqAquaCeamcnt - , ElesqAquaECreamcnt - , ElesqAquaAmpcnt - , Carton8_Cnt - , KeyringCnt - , DoenaLiftingTonercnt - , DoenaLiftingAmpcnt - , DoenaLiftingCreamcnt - , FirmingCollagenGelcnt - , KeyringSallyCnt - , BeautykitHairbandCnt - , BeautykitMirrorSCnt - , BeautykitMirrorLCnt - , BloomingMoistureGel150Cnt - , FirmingCollagenGel150Cnt - , TweedCaseCnt - , BloomingMoistureGel250Cnt - FROM " & applySalesDB & " WHERE PackingCode = '" & playCode & "'" '신규구성품추가 : 자동화동작(무게측정)에서 포장 구성품 수량 조회 추가 + If query_component_sales_packing_cnt <> Nothing Then + query_component_sales_packing_cnt = query_component_sales_packing_cnt & ", " & sales_packing_cnt_col_nm + Else + query_component_sales_packing_cnt = sales_packing_cnt_col_nm + End If + Next + + DBCmd = "SELECT " & query_component_sales_packing_cnt & " FROM " & applySalesDB & " WHERE PackingCode = '" & playCode & "'" If DBQueryReader(DBCmd) Then - If sqlDataQuery.Length - 1 = comDB_max_index Then - For i = 0 To comDB_max_index + If sqlDataQuery.Length - 1 = item_component_max_index Then + For i = 0 To item_component_max_index If sqlDataQuery(i) <> 0 Then tgtFullCount += sqlDataQuery(i) For arr = 0 To prodArray.GetLength(1) - 1 @@ -1720,29 +1632,23 @@ Public Class mainForm End Function Private Function packingSerial() As Boolean - Dim prodSerial(prodDB_max_index - prodDB.luxset) As String + Dim prodSerial(item_product_max_index) As String + Dim query_product_serial As String = Nothing - DBCmd = "SELECT Main_Product_SN - , Pro_Face_Serial - , Lux_Face_Serial - , Pro_Eye_Serial - , Lux_Eye_Serial - , Pro_Body_Serial - , Lux_Body_Serial - , MAXIMUM_SN - , Alpha_Set_Serial - , Alpha_Face_Serial - , Alpha_Eye_Serial - , Alpha_Body_Serial - , Alto_Serial - , Effect_Serial - , EffectV3_Serial - , MAXIMUM_ALPHA_SN - , Optimum_Serial - FROM " & applySalesDB & " WHERE PackingCode = '" & playCode & "'" '신규제품추가 : 추가하는 품목의 시리얼번호 조회 추가 + For i = 1 To item_product_max_index + If item_product_list(i).sales_packing_serial_col_nm <> Nothing Then + If query_product_serial <> Nothing Then + query_product_serial = query_product_serial & ", " & item_product_list(i).sales_packing_serial_col_nm + Else + query_product_serial = item_product_list(i).sales_packing_serial_col_nm + End If + End If + Next + + DBCmd = "SELECT " & query_product_serial & " FROM " & applySalesDB & " WHERE PackingCode = '" & playCode & "'" If DBQueryReader(DBCmd) Then - For i = prodDB.luxset To prodDB_max_index - prodSerial(i - prodDB.luxset) = sqlDataQuery(i - prodDB.luxset) + For i = 0 To sqlDataQuery.Length - 1 + prodSerial(i) = sqlDataQuery(i) Next Else errorOut("시리얼오류") @@ -2377,127 +2283,25 @@ Public Class mainForm End Function Private Function packingDBSaveOld(packingCode As String) As Boolean + Dim query_product_cnt As String = Nothing + For i = prodDB.proface To item_product_max_index + If item_product_list(i).sales_packing_cnt_col_nm <> Nothing And item_product_list(i).cnt > 0 Then + query_product_cnt = query_product_cnt & ", " & item_product_list(i).sales_packing_cnt_col_nm & " = '" & item_product_list(i).cnt & "'" + End If + Next + + Dim query_component_cnt As String = Nothing + For i = 0 To item_component_max_index + If item_component_list(i).sales_packing_cnt_col_nm <> Nothing And item_component_list(i).cnt > 0 Then + query_component_cnt = query_component_cnt & ", " & item_component_list(i).sales_packing_cnt_col_nm & " = '" & item_component_list(i).cnt & "'" + End If + Next + DBCmd = "UPDATE " & applySalesDB & - " SET Set_Cnt = '" & prodInCount(prodDB.proset) + prodInCount(prodDB.luxset) & "'" & - ", Pro_CT_FaceCnt = '" & prodInCount(prodDB.proface) & "'" & - ", Lux_CT_FaceCnt = '" & prodInCount(prodDB.luxface) & "'" & - ", Pro_CT_EYE_Cnt = '" & prodInCount(prodDB.proeye) & "'" & - ", Lux_CT_EYE_Cnt = '" & prodInCount(prodDB.luxeye) & "'" & - ", Pro_CT_BodyCnt = '" & prodInCount(prodDB.probody) & "'" & - ", Lux_CT_BodyCnt = '" & prodInCount(prodDB.luxbody) & "'" & - ", MAXIMUM_Cnt = '" & prodInCount(prodDB.maximum) & "'" & - ", Alpha_Set_Cnt = '" & prodInCount(prodDB.alphaSet) & "'" & - ", Alpha_Face_Cnt = '" & prodInCount(prodDB.alphaFace) & "'" & - ", Alpha_Eye_Cnt = '" & prodInCount(prodDB.alphaEye) & "'" & - ", Alpha_Body_Cnt = '" & prodInCount(prodDB.alphaBody) & "'" & - ", Alto_Cnt = '" & prodInCount(prodDB.alto) & "'" & - ", Effect_Cnt = '" & prodInCount(prodDB.effect) & "'" & - ", EffectV3_Cnt = '" & prodInCount(prodDB.effectV3) & "'" & - ", MAXIMUM_ALPHA_Cnt = '" & prodInCount(prodDB.maximumAlpha) & "'" & - ", Optimum_Cnt = '" & prodInCount(prodDB.optimum) & "'" & - ", Mask5Cnt = '" & comInCount(comDB.mask5) & "'" & - ", Mask10Cnt = '" & comInCount(comDB.mask10) & "'" & - ", HairBandCnt = '" & comInCount(comDB.hairband) & "'" & - ", GelCnt = '" & comInCount(comDB.gel) & "'" & - ", MiniGelCnt = '" & comInCount(comDB.minigel) & "'" & - ", AmpleCnt = '" & comInCount(comDB.ample) & "'" & - ", CreamCnt = '" & comInCount(comDB.cream) & "'" & - ", UmbrellaCnt = '" & comInCount(comDB.umb) & "'" & - ", FenCnt = '" & comInCount(comDB.fen) & "'" & - ", ChargerCnt = '" & comInCount(comDB.charger) & "'" & - ", CableCnt = '" & comInCount(comDB.cable) & "'" & - ", TonerCnt = '" & comInCount(comDB.toner) & "'" & - ", Case_PRO_Black = '" & comInCount(comDB.problack) & "'" & - ", Case_PRO_Beige = '" & comInCount(comDB.probeige) & "'" & - ", Case_PRO_Red = '" & comInCount(comDB.prored) & "'" & - ", Case_PRO_Pink = '" & comInCount(comDB.propink) & "'" & - ", Case_MAX_Black = '" & comInCount(comDB.maxblack) & "'" & - ", Case_MAX_Apr = '" & comInCount(comDB.maxapr) & "'" & - ", Case_MAX_Mint = '" & comInCount(comDB.maxmint) & "'" & - ", Case_MAX_Beige = '" & comInCount(comDB.maxbeige) & "'" & - ", SoothingGelCnt = '" & comInCount(comDB.soothing) & "'" & - ", Carton0_Cnt = '" & comInCount(comDB.car0) & "'" & - ", Carton1_Cnt = '" & comInCount(comDB.car1) & "'" & - ", Carton2_Cnt = '" & comInCount(comDB.car2) & "'" & - ", Carton3_Cnt = '" & comInCount(comDB.car3) & "'" & - ", Carton4_Cnt = '" & comInCount(comDB.car4) & "'" & - ", Carton5_Cnt = '" & comInCount(comDB.car5) & "'" & - ", Carton6_Cnt = '" & comInCount(comDB.car6) & "'" & - ", Shopbag_Cnt = '" & comInCount(comDB.bag) & "'" & - ", CosShopbag_Cnt = '" & comInCount(comDB.cosbag) & "'" & - ", DustBagCnt = '" & comInCount(comDB.dustbag) & "'" & - ", Case_MAX_Purple = '" & comInCount(comDB.maxPurple) & "'" & - ", Case_PRO_SnakeBlakc = '" & comInCount(comDB.proSnakeBlack) & "'" & - ", KollagenCnt = '" & comInCount(comDB.kollagen) & "'" & - ", KollagenSetCnt = '" & comInCount(comDB.kollagenset) & "'" & - ", Kollagen_PCnt = '" & comInCount(comDB.kollagen_P) & "'" & - ", KollagenSet_PCnt = '" & comInCount(comDB.kollagenset_P) & "'" & - ", CleansingWaterCnt = '" & comInCount(comDB.cleansingWater) & "'" & - ", TonerPadCnt = '" & comInCount(comDB.tonerPad) & "'" & - ", Case_MAX_SafBK_Cnt = '" & comInCount(comDB.maxSaffianoBK) & "'" & - ", Hologram_1Cnt = '" & comInCount(comDB.hologram1) & "'" & - ", Hologram_3Cnt = '" & comInCount(comDB.hologram3) & "'" & - ", Hologram_5Cnt = '" & comInCount(comDB.hologram5) & "'" & - ", Case_MAX_SafPp_Cnt = '" & comInCount(comDB.caseSaffianoPp) & "'" & - ", Case_MAX_Yellow = '" & comInCount(comDB.maxYellow) & "'" & - ", Kollagen_Pe1Cnt = '" & comInCount(comDB.Kollagen_Pe1) & "'" & - ", Kollagen_Pe3Cnt = '" & comInCount(comDB.Kollagen_Pe3) & "'" & - ", Kollagen_Pe5Cnt = '" & comInCount(comDB.Kollagen_Pe5) & "'" & - ", ATCircleCaseCnt = '" & comInCount(comDB.ATCircleCase) & "'" & - ", APSquareCaseCnt = '" & comInCount(comDB.APSquareCase) & "'" & - ", Case_MAX_Peach = '" & comInCount(comDB.maxPeach) & "'" & - ", MasSoothingCnt = '" & comInCount(comDB.massageSoothing) & "'" & - ", Case_MAX_SMintCnt = '" & comInCount(comDB.maxSMint) & "'" & - ", MeshPouchCnt = '" & comInCount(comDB.meshpouch) & "'" & - ", FirmingAmpCnt = '" & comInCount(comDB.firmingAmp) & "'" & - ", HyaluronicAmpCnt = '" & comInCount(comDB.hyaluronicAmp) & "'" & - ", nightshotcnt = '" & comInCount(comDB.nightshot) & "'" & - ", morningshotcnt = '" & comInCount(comDB.morningshot) & "'" & - ", casemaxwoodicnt = '" & comInCount(comDB.casemaxwoodi) & "'" & - ", Elicolltonercnt = '" & comInCount(comDB.Elicolltoner) & "'" & - ", Elicollampcnt = '" & comInCount(comDB.Elicollamp) & "'" & - ", Elicollcreamcnt = '" & comInCount(comDB.Elicollcream) & "'" & - ", Elihyaltonercnt = '" & comInCount(comDB.Elihyaltoner) & "'" & - ", Elihyalampcnt = '" & comInCount(comDB.Elihyalamp) & "'" & - ", Elihyalcreamcnt = '" & comInCount(comDB.Elihyalcream) & "'" & - ", Dayshotcnt = '" & comInCount(comDB.Dayshot) & "'" & - ", Beautyshopbagcnt = '" & comInCount(comDB.Beautyshopbag) & "'" & - ", Gummycnt = '" & comInCount(comDB.Gummy) & "'" & - ", stickjellycnt = '" & comInCount(comDB.Stickjelly) & "'" & - ", Newyearbagcnt = '" & comInCount(comDB.Newyearbag) & "'" & - ", Emsbeltcnt = '" & comInCount(comDB.Emsbelt) & "'" & - ", Beltbagcnt = '" & comInCount(comDB.Beltbag) & "'" & - ", Dayshot2cnt = '" & comInCount(comDB.Dayshot2) & "'" & - ", Elixircnt = '" & comInCount(comDB.Elixir) & "'" & - ", Elixirpremiumcnt = '" & comInCount(comDB.Elixirpremium) & "'" & - ", Emsbeltcontrollsetcnt = '" & comInCount(comDB.Emsbeltcontrollset) & "'" & - ", FabricBagcnt = '" & comInCount(comDB.FabricBag) & "'" & - ", Goldshopbagcnt = '" & comInCount(comDB.Goldshopbag) & "'" & - ", MorNigshotsetcnt = '" & comInCount(comDB.MorNigshotset) & "'" & - ", CTBoxcnt = '" & comInCount(comDB.CTBox) & "'" & - ", ElesqLiftingTonercnt = '" & comInCount(comDB.ElesqLiftingToner) & "'" & - ", ElesqLiftingCeamcnt = '" & comInCount(comDB.ElesqLiftingCeam) & "'" & - ", ElesqLiftingECreamcnt = '" & comInCount(comDB.ElesqLiftingECream) & "'" & - ", ElesqLiftingAmpcnt = '" & comInCount(comDB.ElesqLiftingAmp) & "'" & - ", ElesqAquaTonercnt = '" & comInCount(comDB.ElesqAquaToner) & "'" & - ", ElesqAquaCeamcnt = '" & comInCount(comDB.ElesqAquaCeam) & "'" & - ", ElesqAquaECreamcnt = '" & comInCount(comDB.ElesqAquaECream) & "'" & - ", ElesqAquaAmpcnt = '" & comInCount(comDB.ElesqAquaAmp) & "'" & - ", Carton8_Cnt = '" & comInCount(comDB.car8) & "'" & - ", KeyringCnt = '" & comInCount(comDB.keyring) & "'" & - ", DoenaLiftingTonercnt = '" & comInCount(comDB.DoenaLiftingToner) & "'" & - ", DoenaLiftingAmpcnt = '" & comInCount(comDB.DoenaLiftingAmp) & "'" & - ", DoenaLiftingCreamcnt = '" & comInCount(comDB.DoenaLiftingCream) & "'" & - ", FirmingCollagenGelcnt = '" & comInCount(comDB.FirmingCollagenGel) & "'" & - ", KeyringSallyCnt = '" & comInCount(comDB.keyringSally) & "'" & - ", BeautykitHairbandCnt = '" & comInCount(comDB.beautykitHairband) & "'" & - ", BeautykitMirrorSCnt = '" & comInCount(comDB.beautykitMirrorS) & "'" & - ", BeautykitMirrorLCnt = '" & comInCount(comDB.beautykitMirrorL) & "'" & - ", BloomingMoistureGel150Cnt = '" & comInCount(comDB.bloomingMoistureGel150) & "'" & - ", FirmingCollagenGel150Cnt = '" & comInCount(comDB.firmingCollagenGel150) & "'" & - ", TweedCaseCnt = '" & comInCount(comDB.tweedCase) & "'" & - ", BloomingMoistureGel250Cnt = '" & comInCount(comDB.bloomingMoistureGel250) & "'" & - " WHERE PackingCode = '" & packingCode & "'" '신규구성품추가/신규제품추가 : 추가한 품목 수량 업데이트 추가 + " SET Set_Cnt = '" & item_product_list(prodDB.proset).cnt + item_product_list(prodDB.luxset).cnt & "'" & + query_product_cnt & + query_component_cnt & + " WHERE PackingCode = '" & packingCode & "'" If DBCommand(DBCmd) = False Then errorOut("등록오류") @@ -2515,18 +2319,18 @@ Public Class mainForm Dim eyeSerial As String = Nothing Dim searchCode, fullCode As String - If prodInSerial(prodDB.proset) <> Nothing Then - If prodInSerial(prodDB.proset).ToString.Replace(" ", "") <> "" Then - setSerial = prodInSerial(prodDB.proset) + If item_product_list(prodDB.proset).serial <> Nothing Then + If item_product_list(prodDB.proset).serial.ToString.Replace(" ", "") <> "" Then + setSerial = item_product_list(prodDB.proset).serial End If End If - If prodInSerial(prodDB.luxset) <> Nothing Then - If prodInSerial(prodDB.luxset).ToString.Replace(" ", "") <> "" Then + If item_product_list(prodDB.luxset).serial <> Nothing Then + If item_product_list(prodDB.luxset).serial.ToString.Replace(" ", "") <> "" Then If setSerial = Nothing Then - setSerial = prodInSerial(prodDB.luxset) + setSerial = item_product_list(prodDB.luxset).serial Else - setSerial = setSerial & "/" & prodInSerial(prodDB.luxset) + setSerial = setSerial & "/" & item_product_list(prodDB.luxset).serial End If End If End If @@ -2557,28 +2361,18 @@ Public Class mainForm Next End If + Dim query_product_serial As String = Nothing + For i = prodDB.proface To item_product_max_index + query_product_serial = query_product_serial & ", " & item_product_list(i).sales_packing_serial_col_nm & " = '" & item_product_list(i).serial & "'" + Next + DBCmd = "UPDATE " & applySalesDB & " SET `Data` = NOW()" & ", Main_Product_SN = '" & setSerial & "'" & ", Main_FACE_SN = '" & faceSerial & "'" & ", Main_EYE_SN = '" & eyeSerial & "'" & - ", Pro_Face_Serial = '" & prodInSerial(prodDB.proface) & "'" & - ", Pro_Eye_Serial = '" & prodInSerial(prodDB.proeye) & "'" & - ", Pro_Body_Serial = '" & prodInSerial(prodDB.probody) & "'" & - ", Lux_Face_Serial = '" & prodInSerial(prodDB.luxface) & "'" & - ", Lux_Eye_Serial = '" & prodInSerial(prodDB.luxeye) & "'" & - ", Lux_Body_Serial = '" & prodInSerial(prodDB.luxbody) & "'" & - ", MAXIMUM_SN = '" & prodInSerial(prodDB.maximum) & "'" & - ", Alpha_Set_Serial = '" & prodInSerial(prodDB.alphaSet) & "'" & - ", Alpha_Face_Serial = '" & prodInSerial(prodDB.alphaFace) & "'" & - ", Alpha_Eye_Serial = '" & prodInSerial(prodDB.alphaEye) & "'" & - ", Alpha_Body_Serial = '" & prodInSerial(prodDB.alphaBody) & "'" & - ", Alto_Serial = '" & prodInSerial(prodDB.alto) & "'" & - ", Effect_Serial = '" & prodInSerial(prodDB.effect) & "'" & - ", EffectV3_Serial = '" & prodInSerial(prodDB.effectV3) & "'" & - ", MAXIMUM_ALPHA_SN = '" & prodInSerial(prodDB.maximumAlpha) & "'" & - ", Optimum_Serial = '" & prodInSerial(prodDB.optimum) & "'" & - " WHERE PackingCode = '" & packingCode & "'" '신규제품추가 : 추가한 제품의 시리얼번호 업데이트 쿼리 추가 + query_product_serial & + " WHERE PackingCode = '" & packingCode & "'" If DBCommand(DBCmd) Then Return False @@ -2650,18 +2444,18 @@ Public Class mainForm Try Dim commandDB As String = "UPDATE " & applySalesDB & " SET " - For i = prodDB.proset To prodDB_max_index + For i = 1 To item_product_max_index - If prodInSerial(i) = "" Then - prodInSerial(i) = "null" + If item_product_list(i).serial = "" Then + item_product_list(i).serial = "null" Else - prodInSerial(i) = "'" & prodInSerial(i) & "'" + item_product_list(i).serial = "'" & item_product_list(i).serial & "'" End If - If i <> prodDB_max_index Then - commandDB = commandDB & prodPackCommand(i) & "=" & prodInSerial(i) & ", " + If i <> item_product_max_index Then + commandDB = commandDB & item_product_list(i).sales_packing_serial_col_nm & "=" & item_product_list(i).serial & ", " Else - commandDB = commandDB & prodPackCommand(i) & "=" & prodInSerial(i) + commandDB = commandDB & item_product_list(i).sales_packing_serial_col_nm & "=" & item_product_list(i).serial End If Next @@ -2695,7 +2489,7 @@ Public Class mainForm Return True End If - DBCmd = DBCmd & "," & countCommand(prodDB.packingCount) & " = '" & prodDBCount(prodDB.packingCount) & "' WHERE DATETIME = '" & nowToday & "'" + DBCmd = DBCmd & "," & countCommand(prodDB.packingCount) & " = '" & product_packing_cnt_list(prodDB.packingCount).db_count & "' WHERE DATETIME = '" & nowToday & "'" If DBCommand(DBCmd) = False Then errorOut("등록오류") @@ -2713,23 +2507,24 @@ Public Class mainForm Dim prodCount As Integer = 0 For i = 1 To countCommand.Length - 1 - If i <= prodDB_max_index Then + If countCommand(i) <> Nothing Then + If i <= item_product_max_index Then + prodCount = countSet(i, saveType, True) - prodCount = countSet(i, saveType, True) - - If updateCom = Nothing Then - updateCom = countCommand(i) & " = " & "'" & prodCount & "'" + If updateCom = Nothing Then + updateCom = countCommand(i) & " = " & "'" & prodCount & "'" + Else + updateCom = updateCom & "," & countCommand(i) & " = " & "'" & prodCount & "'" + End If Else - updateCom = updateCom & "," & countCommand(i) & " = " & "'" & prodCount & "'" - End If - Else - prodCount = countSet(i, saveType, False) + prodCount = countSet(i, saveType, False) - If updateCom = Nothing Then - updateCom = countCommand(i) & " = " & "'" & prodCount & "'" - Else - updateCom = updateCom & "," & countCommand(i) & " = " & "'" & prodCount & "'" + If updateCom = Nothing Then + updateCom = countCommand(i) & " = " & "'" & prodCount & "'" + Else + updateCom = updateCom & "," & countCommand(i) & " = " & "'" & prodCount & "'" + End If End If End If Next @@ -2750,61 +2545,28 @@ Public Class mainForm If saveType = True Then If prodType = True Then - saveCount = prodDBCount(cnt) + saveCount = product_packing_cnt_list(cnt).db_count Else - saveCount = comDBCount(cnt - prodDBCount.Length) + saveCount = component_packing_cnt_list(cnt - product_packing_cnt_list.Length).db_count End If Else If prodType = True Then - saveCount = prodInCount(cnt) + saveCount = item_product_list(cnt).cnt Else - saveCount = comInCount(cnt - prodInCount.Length) + saveCount = item_component_list(cnt - item_product_list.Length).cnt End If End If Return saveCount End Function - 'Private Function dbCountReg() As String - ' Try - ' Dim nowToday As String = Format(Now, "yyyy") & "-" & Format(Now, "MM") & "-" & Format(Now, "dd") - ' Dim dbStart As String = "UPDATE " & applyCountDB & " SET " - ' Dim updateCom As String = Nothing - - ' For i = 0 To countCommand.Length - 1 - ' If i <= prodDB.maximum Then - ' If updateCom = Nothing Then - ' updateCom = countCommand(i) & " = " & "'" & prodDBCount(i) & "'" - ' Else - ' updateCom = updateCom & "," & countCommand(i) & " = " & "'" & prodDBCount(i) & "'" - ' End If - ' Else - ' If updateCom = Nothing Then - ' updateCom = countCommand(i) & " = " & "'" & comDBCount(i - prodInCount.Length) & "'" - ' Else - ' updateCom = updateCom & "," & countCommand(i) & " = " & "'" & comDBCount(i - prodInCount.Length) & "'" - ' End If - ' End If - ' Next - - ' updateCom = dbStart & updateCom & " WHERE DATETIME = '" & nowToday & "'" - - ' Return updateCom - - ' Catch ex As Exception - ' errorGen("데이터베이스에 저장할 카운트 작업이 제대로 진행되지 않았습니다.") - ' Return "FAIL" - ' End Try - - 'End Function - Private Sub saveDBCount() - For i = 0 To prodDB_max_index - prodDBCount(i) += prodInCount(i) + For i = 0 To item_product_max_index + product_packing_cnt_list(i).db_count += item_product_list(i).cnt Next - For i = 0 To comDB_max_index - comDBCount(i) += comInCount(i) + For i = 0 To item_component_max_index + component_packing_cnt_list(i).db_count += item_component_list(i).cnt Next End Sub @@ -2832,377 +2594,68 @@ Public Class mainForm End If If rdbMode1.Checked = True Then - DBCmd = "SELECT PackingCount - , ProSetCnt - , LuxSetCnt - , ProFaceCnt - , LuxFaceCnt - , ProEyeCnt - , LuxEyeCnt - , ProBodyCnt - , LuxBodyCnt - , MAXIMUMCnt - , AlphaSetCnt - , AlphaFaceCnt - , AlphaEyeCnt - , AlphaBodyCnt - , AltoCnt - , EffectCnt - , EffectV3Cnt - , MAXIMUMALPHACnt - , OptimumCnt - , Mask5Cnt - , Mask10Cnt - , HairBandCnt - , GelCnt - , MiniGel - , AmpleCnt - , CreamCnt - , UmbrellaCnt - , FenCnt - , ChargerCnt - , CableCnt - , TonerCnt - , CasePROBlack - , CasePROBeige - , CasePRORed - , CasePROPink - , CaseMAXBlack - , CaseMAXApr - , CaseMAXMint - , CaseMAXBeige - , SoothingGelCnt - , Carton0Cnt - , Carton1Cnt - , Carton2Cnt - , Carton3Cnt - , Carton4Cnt - , Carton5Cnt - , Carton6Cnt - , BagCnt - , CosBagCnt - , DustBagCnt - , CaseMAXPurple - , CasePROSnakeBlack - , KollagenCnt - , KollagenSetCnt - , Kollagen_PCnt - , KollagenSet_PCnt - , CleansingWaterCnt - , TonerPadCnt - , CaseMaxSafBK - , Hologram_1Cnt - , Hologram_3Cnt - , Hologram_5Cnt - , CaseMaxSafPp - , CaseMaxYellow - , Kollagen_Pe1Cnt - , Kollagen_Pe3Cnt - , Kollagen_Pe5Cnt - , ATCircleCaseCnt - , APSquareCaseCnt - , CaseMAXPeach - , MasSoothingCnt - , CaseMAXSMint - , MeshPouchCnt - , FirmingAmpCnt - , HyaluronicAmpCnt - , nightshotcnt - , morningshotcnt - , casemaxwoodicnt - , Elicolltonercnt - , Elicollampcnt - , Elicollcreamcnt - , Elihyaltonercnt - , Elihyalampcnt - , Elihyalcreamcnt - , Dayshotcnt - , Beautyshopbagcnt - , Gummycnt - , Stickjellycnt - , Newyearbagcnt - , Emsbeltcnt - , Beltbagcnt - , Dayshot2cnt - , Elixircnt - , Elixirpremiumcnt - , Emsbeltcontrollsetcnt - , FabricBagcnt - , Goldshopbagcnt - , MorNigshotsetcnt - , CTBoxcnt - , ElesqLiftingTonercnt - , ElesqLiftingCeamcnt - , ElesqLiftingECreamcnt - , ElesqLiftingAmpcnt - , ElesqAquaTonercnt - , ElesqAquaCeamcnt - , ElesqAquaECreamcnt - , ElesqAquaAmpcnt - , Carton8Cnt - , KeyringCnt - , DoenaLiftingTonercnt - , DoenaLiftingAmpcnt - , DoenaLiftingCreamcnt - , FirmingCollagenGelcnt - , KeyringSallyCnt - , BeautykitHairbandCnt - , BeautykitMirrorSCnt - , BeautykitMirrorLCnt - , BloomingMoistureGel150Cnt - , FirmingCollagenGel150Cnt - , TweedCaseCnt - , BloomingMoistureGel250Cnt - FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" '신규구성품추가/신규제품추가 : 추가한 품목 일반동작 수량 조회 추가 + + Dim query_packing_count As String = Nothing + For i = 1 To item_product_max_index + If product_packing_cnt_list(i).packing_cnt_col_nm <> Nothing Then + query_packing_count = query_packing_count & ", " & product_packing_cnt_list(i).packing_cnt_col_nm + Else + query_packing_count = query_packing_count & ", 0" + End If + Next + For i = 0 To item_component_max_index + If component_packing_cnt_list(i).packing_cnt_col_nm <> Nothing Then + query_packing_count = query_packing_count & ", " & component_packing_cnt_list(i).packing_cnt_col_nm + Else + query_packing_count = query_packing_count & ", 0" + End If + Next + + DBCmd = "SELECT PackingCount " & query_packing_count & " FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" + countCommandFunc(countSaveList.normal) Else If rdbAuto1.Checked = True Then - DBCmd = "SELECT AutoPackCnt - , APProSetCnt - , APLuxSetCnt - , APProFaceCnt - , APLuxFaceCnt - , APProEyeCnt - , APLuxEyeCnt - , APProBodyCnt - , APLuxBodyCnt - , APMAXIMUMCnt - , APAlphaSetCnt - , APAlphaFaceCnt - , APAlphaEyeCnt - , APAlphaBodyCnt - , APAltoCnt - , APEffectCnt - , APEffectV3Cnt - , APMAXIMUMALPHACnt - , APOptimumCnt - , APMask5Cnt - , APMask10Cnt - , APHairBandCnt - , APGelCnt - , APMiniGel - , APAmpleCnt - , APCreamCnt - , APUmbrellaCnt - , APFenCnt - , APChargerCnt - , APCableCnt - , APTonerCnt - , APCasePROBlack - , APCasePROBeige - , APCasePRORed - , APCasePROPink - , APCaseMAXBlack - , APCaseMAXApr - , APCaseMAXMint - , APCaseMAXBeige - , APSoothingGelCnt - , APCarton0Cnt - , APCarton1Cnt - , APCarton2Cnt - , APCarton3Cnt - , APCarton4Cnt - , APCarton5Cnt - , APCarton6Cnt - , APBagCnt - , APCosBagCnt - , APDustBagCnt - , APCaseMAXPurple - , APCasePROSnakeBlack - , APKollagenCnt - , APKollagenSetCnt - , APKollagen_PCnt - , APKollagenSet_PCnt - , APCleansingWaterCnt - , APTonerPadCnt - , APCaseMaxSafBK - , APHologram_1Cnt - , APHologram_3Cnt - , APHologram_5Cnt - , APCaseMaxSafPp - , APCaseMaxYellow - , APKollagen_Pe1Cnt - , APKollagen_Pe3Cnt - , APKollagen_Pe5Cnt - , APATCircleCaseCnt - , APAPSquareCaseCnt - , APCaseMAXPeach - , APMasSoothingCnt - , APCaseMAXSMint - , APMeshPouchCnt - , APFirmingAmpCnt - , APHyaluronicAmpCnt - , APnightshotcnt - , APmorningshotcnt - , APcasemaxwoodicnt - , APElicolltonercnt - , APElicollampcnt - , APElicollcreamcnt - , APElihyaltonercnt - , APElihyalampcnt - , APElihyalcreamcnt - , APDayshotcnt - , APBeautyshopbagcnt - , APGummycnt - , APStickjellycnt - , APNewyearbagcnt - , APEmsbeltcnt - , APBeltbagcnt - , APDayshot2cnt - , APElixircnt - , APElixirpremiumcnt - , APEmsbeltcontrollsetcnt - , APFabricBagcnt - , APGoldshopbagcnt - , APMorNigshotsetcnt - , APCTBoxcnt - , APElesqLiftingTonercnt - , APElesqLiftingCeamcnt - , APElesqLiftingECreamcnt - , APElesqLiftingAmpcnt - , APElesqAquaTonercnt - , APElesqAquaCeamcnt - , APElesqAquaECreamcnt - , APElesqAquaAmpcnt - , APCarton8Cnt - , APKeyringCnt - , APDoenaLiftingTonercnt - , APDoenaLiftingAmpcnt - , APDoenaLiftingCreamcnt - , APFirmingCollagenGelcnt - , APKeyringSallyCnt - , APBeautykitHairbandCnt - , APBeautykitMirrorSCnt - , APBeautykitMirrorLCnt - , APBloomingMoistureGel150Cnt - , APFirmingCollagenGel150Cnt - , APTweedCaseCnt - , APBloomingMoistureGel250Cnt - FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" '신규구성품추가/신규제품추가 : 추가한 품목 자동화동작(포장) 수량 조회 추가 + + Dim query_packing_count As String = Nothing + For i = 1 To item_product_max_index + If product_packing_cnt_list(i).ap_packing_cnt_col_nm <> Nothing Then + query_packing_count = query_packing_count & ", " & product_packing_cnt_list(i).ap_packing_cnt_col_nm + Else + query_packing_count = query_packing_count & ", 0" + End If + Next + For i = 0 To item_component_max_index + If component_packing_cnt_list(i).ap_packing_cnt_col_nm <> Nothing Then + query_packing_count = query_packing_count & ", " & component_packing_cnt_list(i).ap_packing_cnt_col_nm + Else + query_packing_count = query_packing_count & ", 0" + End If + Next + + DBCmd = "SELECT AutoPackCnt " & query_packing_count & " FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" + countCommandFunc(countSaveList.autopack) Else - DBCmd = "SELECT AutoWeightCnt - , AWProSetCnt - , AWLuxSetCnt - , AWProFaceCnt - , AWLuxFaceCnt - , AWProEyeCnt - , AWLuxEyeCnt - , AWProBodyCnt - , AWLuxBodyCnt - , AWMAXIMUMCnt - , AWAlphaSetCnt - , AWAlphaFaceCnt - , AWAlphaEyeCnt - , AWAlphaBodyCnt - , AWAltoCnt - , AWEffectCnt - , AWEffectV3Cnt - , AWMAXIMUMALPHACnt - , AWOptimumCnt - , AWMask5Cnt - , AWMask10Cnt - , AWHairBandCnt - , AWGelCnt - , AWMiniGel - , AWAmpleCnt - , AWCreamCnt - , AWUmbrellaCnt - , AWFenCnt - , AWChargerCnt - , AWCableCnt - , AWTonerCnt - , AWCasePROBlack - , AWCasePROBeige - , AWCasePRORed - , AWCasePROPink - , AWCaseMAXBlack - , AWCaseMAXApr - , AWCaseMAXMint - , AWCaseMAXBeige - , AWSoothingGelCnt - , AWCarton0Cnt - , AWCarton1Cnt - , AWCarton2Cnt - , AWCarton3Cnt - , AWCarton4Cnt - , AWCarton5Cnt - , AWCarton6Cnt - , AWBagCnt - , AWCosBagCnt - , AWDustBagCnt - , AWCaseMAXPurple - , AWCasePROSnakeBlack - , AWKollagenCnt - , AWKollagenSetCnt - , AWKollagen_PCnt - , AWKollagenSet_PCnt - , AWCleansingWaterCnt - , AWTonerPadCnt - , AWCaseMaxSafBK - , AWHologram_1Cnt - , AWHologram_3Cnt - , AWHologram_5Cnt - , AWCaseMaxSafPp - , AWCaseMaxYellow - , AWKollagen_Pe1Cnt - , AWKollagen_Pe3Cnt - , AWKollagen_Pe5Cnt - , AWATCircleCaseCnt - , AWAPSquareCaseCnt - , AWCaseMAXPeach - , AWMasSoothingCnt - , AWCaseMAXSMint - , AWMeshPouchCnt - , AWFirmingAmpCnt - , AWHyaluronicAmpCnt - , AWnightshotcnt - , AWmorningshotcnt - , AWcasemaxwoodicnt - , AWElicolltonercnt - , AWElicollampcnt - , AWElicollcreamcnt - , AWElihyaltonercnt - , AWElihyalampcnt - , AWElihyalcreamcnt - , AWDayshotcnt - , AWBeautyshopbagcnt - , AWGummycnt - , AWStickjellycnt - , AWNewyearbagcnt - , AWEmsbeltcnt - , AWBeltbagcnt - , AWDayshot2cnt - , AWElixircnt - , AWElixirpremiumcnt - , AWEmsbeltcontrollsetcnt - , AWFabricBagcnt - , AWGoldshopbagcnt - , AWMorNigshotsetcnt - , AWCTBoxcnt - , AWElesqLiftingTonercnt - , AWElesqLiftingCeamcnt - , AWElesqLiftingECreamcnt - , AWElesqLiftingAmpcnt - , AWElesqAquaTonercnt - , AWElesqAquaCeamcnt - , AWElesqAquaECreamcnt - , AWElesqAquaAmpcnt - , AWCarton8Cnt - , AWKeyringCnt - , AWDoenaLiftingTonercnt - , AWDoenaLiftingAmpcnt - , AWDoenaLiftingCreamcnt - , AWFirmingCollagenGelcnt - , AWKeyringSallyCnt - , AWBeautykitHairbandCnt - , AWBeautykitMirrorSCnt - , AWBeautykitMirrorLCnt - , AWBloomingMoistureGel150Cnt - , AWFirmingCollagenGel150Cnt - , AWTweedCaseCnt - , AWBloomingMoistureGel250Cnt - FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" '신규구성품추가/신규제품추가 : 추가한 품목 자동화동작(무게측정) 수량 조회 추가 + + Dim query_packing_count As String = Nothing + For i = 1 To item_product_max_index + If product_packing_cnt_list(i).aw_packing_cnt_col_nm <> Nothing Then + query_packing_count = query_packing_count & ", " & product_packing_cnt_list(i).aw_packing_cnt_col_nm + Else + query_packing_count = query_packing_count & ", 0" + End If + Next + For i = 0 To item_component_max_index + If component_packing_cnt_list(i).aw_packing_cnt_col_nm <> Nothing Then + query_packing_count = query_packing_count & ", " & component_packing_cnt_list(i).aw_packing_cnt_col_nm + Else + query_packing_count = query_packing_count & ", 0" + End If + Next + + DBCmd = "SELECT AutoWeightCnt " & query_packing_count & " FROM " & applyCountDB & " WHERE DATETIME = '" & nowToday & "'" + countCommandFunc(countSaveList.autoWeight) End If End If @@ -3210,11 +2663,11 @@ Public Class mainForm If DBQueryReader(DBCmd) Then For i = 0 To countCommand.Length - 1 - If i <= prodDB_max_index Then - prodDBCount(i) = sqlDataQuery(i) + If i <= item_product_max_index Then + product_packing_cnt_list(i).db_count = sqlDataQuery(i) Else - enumCount = i - prodDBCount.Length - comDBCount(enumCount) = sqlDataQuery(i) + enumCount = i - product_packing_cnt_list.Length + component_packing_cnt_list(enumCount).db_count = sqlDataQuery(i) End If Next @@ -3284,68 +2737,21 @@ Public Class mainForm sb.Append("PackingTime") sb.Append(",PackingCode") sb.Append(",Packing_Count") - sb.Append(",PRO_SET") - sb.Append(",PRO_SET_Serial") - sb.Append(",LUX_SET") - sb.Append(",LUX_SET_Serial") - sb.Append(",PRO_FACE") - sb.Append(",PRO_FACE_Serial") - sb.Append(",LUX_FACE") - sb.Append(",LUX_FACE_Serial") - sb.Append(",PRO_EYE") - sb.Append(",PRO_EYE_Serial") - sb.Append(",LUX_EYE") - sb.Append(",LUX_EYE_Serial") - sb.Append(",PRO_BODY") - sb.Append(",PRO_BODY_Serial") - sb.Append(",LUX_BODY") - sb.Append(",LUX_BODY_Serial") - sb.Append(",MAXIMUM") - sb.Append(",MAXIMUM_Serial") - sb.Append(",ALPHA_SET_Cnt") - sb.Append(",ALPHA_SET_Serial") - sb.Append(",ALPHA_FACE_Cnt") - sb.Append(",ALPHA_FACE_Serial") - sb.Append(",ALPHA_EYE_Cnt") - sb.Append(",ALPHA_EYE_Serial") - sb.Append(",ALPHA_Body_Cnt") - sb.Append(",ALPHA_Body_Serial") - sb.Append(",ALTO_Cnt") - sb.Append(",ALTO_Serial") - sb.Append(",Effect_Cnt") - sb.Append(",Effect_Serial") - sb.Append(",EffectV3_Cnt") - sb.Append(",EffectV3_Serial") - sb.Append(",MAXIMUM_ALPHA_Cnt") - sb.Append(",MAXIMUM_ALPHA_SN") - sb.Append(",Optimum_Cnt") - sb.Append(",Optimum_Serial") - '신규제품추가 : 추가한 prodDB 에 해당하는 jomtSalesPackingTbl 에 생성한 컬럼명 추가 + For i = 1 To item_product_max_index + sb.Append("," & item_product_list(i).sales_packing_cnt_col_nm) + sb.Append("," & item_product_list(i).sales_packing_serial_col_nm) + Next + ElseIf target = saveCountName Then sb.Append("TestDate") sb.Append(",Packing_Count") - sb.Append(",PRO_SET") - sb.Append(",LUX_SET") - sb.Append(",PRO_FACE") - sb.Append(",LUX_FACE") - sb.Append(",PRO_EYE") - sb.Append(",LUX_EYE") - sb.Append(",PRO_BODY") - sb.Append(",LUX_BODY") - sb.Append(",MAXIMUM") - sb.Append(",ALPHA_SET_Cnt") - sb.Append(",ALPHA_FACE_Cnt") - sb.Append(",ALPHA_EYE_Cnt") - sb.Append(",ALPHA_Body_Cnt") - sb.Append(",ALTO_Cnt") - sb.Append(",Effect_Cnt") - sb.Append(",EffectV3_Cnt") - sb.Append(",MAXIMUM_ALPHA_Cnt") - sb.Append(",Optimum_Serial") - '신규제품추가 + For i = 1 To item_product_max_index + sb.Append("," & product_packing_cnt_list(i).packing_cnt_col_nm) + Next + End If - For i = 0 To comDB_max_index + For i = 0 To item_component_max_index Dim item_name As String = "N/A" DBCmd = "SELECT ItemName FROM " & applyClistDB & " WHERE ProdCode = '" & i & "' LIMIT 1" @@ -3406,18 +2812,18 @@ Public Class mainForm Try Dim saveData As String = Nothing - For i = 0 To prodDB_max_index + For i = 0 To item_product_max_index - saveData = saveLocalData(saveData, prodInCount(i)) + saveData = saveLocalData(saveData, item_product_list(i).cnt) If i <> prodDB.packingCount Then - saveData = saveLocalData(saveData, prodInSerial(i)) + saveData = saveLocalData(saveData, item_product_list(i).serial) End If Next - For i = 0 To comDB_max_index - saveData = saveLocalData(saveData, comInCount(i)) + For i = 0 To item_component_max_index + saveData = saveLocalData(saveData, item_component_list(i).cnt) Next Return saveData @@ -3487,14 +2893,14 @@ Public Class mainForm Private Function saveLocalCount() As String Try Dim strData As String = Nothing - For i = 0 To prodDB_max_index - prodComCount(i) += prodInCount(i) - strData = saveLocalData(strData, prodComCount(i)) + For i = 0 To item_product_max_index + product_packing_cnt_list(i).com_count += item_product_list(i).cnt + strData = saveLocalData(strData, product_packing_cnt_list(i).com_count) Next - For i = 0 To comDB_max_index - comComCount(i) += comInCount(i) - strData = saveLocalData(strData, comComCount(i)) + For i = 0 To item_component_max_index + component_packing_cnt_list(i).com_count += item_component_list(i).cnt + strData = saveLocalData(strData, component_packing_cnt_list(i).com_count) Next Return strData @@ -3522,19 +2928,19 @@ Public Class mainForm End If Next - prodInCount(prodDB.packingCount) += 1 + item_product_list(prodDB.packingCount).cnt += 1 Return False End Function Private Sub clearNowCount() - For i = 0 To prodDB_max_index - prodInCount(i) = "0" - prodInSerial(i) = Nothing + For i = 0 To item_product_max_index + item_product_list(i).cnt = "0" + item_product_list(i).serial = Nothing Next - For i = 0 To comDB_max_index - comInCount(i) = "0" + For i = 0 To item_component_max_index + item_component_list(i).cnt = "0" Next End Sub @@ -5229,18 +4635,18 @@ Public Class mainForm End Sub Private Sub countOut() - txbCount.Text = prodComCount(prodDB.packingCount) - txbProSet.Text = prodComCount(prodDB.proset) - txbProFace.Text = prodComCount(prodDB.proface) - txbProEye.Text = prodComCount(prodDB.proeye) - txbProBody.Text = prodComCount(prodDB.probody) - txbLuxSet.Text = prodComCount(prodDB.luxset) - txbLuxFace.Text = prodComCount(prodDB.luxface) - txbLuxEye.Text = prodComCount(prodDB.luxeye) - txbLuxBody.Text = prodComCount(prodDB.luxbody) - txbMAX.Text = prodComCount(prodDB.maximum) - txbGel.Text = comComCount(comDB.gel) - txbAmp.Text = comComCount(comDB.ample) + txbCount.Text = product_packing_cnt_list(prodDB.packingCount).com_count + txbProSet.Text = product_packing_cnt_list(prodDB.proset).com_count + txbProFace.Text = product_packing_cnt_list(prodDB.proface).com_count + txbProEye.Text = product_packing_cnt_list(prodDB.proeye).com_count + txbProBody.Text = product_packing_cnt_list(prodDB.probody).com_count + txbLuxSet.Text = product_packing_cnt_list(prodDB.luxset).com_count + txbLuxFace.Text = product_packing_cnt_list(prodDB.luxface).com_count + txbLuxEye.Text = product_packing_cnt_list(prodDB.luxeye).com_count + txbLuxBody.Text = product_packing_cnt_list(prodDB.luxbody).com_count + txbMAX.Text = product_packing_cnt_list(prodDB.maximum).com_count + txbGel.Text = component_packing_cnt_list(comDB.gel).com_count + txbAmp.Text = component_packing_cnt_list(comDB.ample).com_count End Sub Private Sub cartClear() diff --git a/OrderPackingProcessor/mySQLAddress.vb b/OrderPackingProcessor/mySQLAddress.vb index b33cf01..b0ae162 100644 --- a/OrderPackingProcessor/mySQLAddress.vb +++ b/OrderPackingProcessor/mySQLAddress.vb @@ -1,4 +1,6 @@ -Module mySQLAddress +Imports OrderPackingProcessor.mySQLAddress + +Module mySQLAddress Private Const mainOrderDB As String = "jomtOrderDB.jomtOrderTbl" Private Const testOrderDB As String = "jomtOrderTestDB.jomtOrderTbl" @@ -86,12 +88,6 @@ optimum '신규제품추가 : 추가하는 품목의 변수 추가 End Enum - Public prodDB_max_index As Integer = [Enum].GetNames(GetType(prodDB)).Length - 1 - Public prodDBCount(prodDB_max_index) As Integer '' DB 저장 - Public prodInCount(prodDB_max_index) As Integer '' 패킹 저장 10 - Public prodComCount(prodDB_max_index) As Integer '' 로컬 저장 - Public prodInSerial(prodDB_max_index) As String '' LogData 저장 - Public prodPackCommand(prodDB_max_index) As String '' Public Enum comDB mask5 @@ -198,29 +194,52 @@ bloomingMoistureGel250 '신규구성품추가 : 추가하는 품목의 변수 추가 End Enum - Public comDB_max_index As Integer = [Enum].GetNames(GetType(comDB)).Length - 1 - Public comDBCount(comDB_max_index) As Integer ''DB 저장 - Public comInCount(comDB_max_index) As Integer '' 패킹 저장 32 + 10 = 42 - 1 = 41 - Public comComCount(comDB_max_index) As Integer '' 로컬 저장 - Public countCommand(prodInCount.Length + comInCount.Length - 1) As String + Structure item_info + Dim item_type As String 'P:Product / C:Component + Dim prod_code As String + Dim sales_packing_cnt_col_nm As String + Dim sales_packing_serial_col_nm As String + Dim cnt As Integer + Dim serial As String + End Structure + Public item_product_list() As item_info + Public item_component_list() As item_info + Public item_product_max_index As Integer + Public item_component_max_index As Integer + + Structure packing_count_info + Dim item_type As String 'P:Product / C:Component + Dim prod_code As String + Dim packing_cnt_col_nm As String + Dim ap_packing_cnt_col_nm As String + Dim aw_packing_cnt_col_nm As String + Dim db_count As Integer + Dim com_count As Integer + End Structure + Public product_packing_cnt_list() As packing_count_info + Public component_packing_cnt_list() As packing_count_info + Public countCommand() As String + + ''데이터베이스 관련 + Private DBCmd As String Public Function packingCountset(dbType As Int16, prodCode As Int16, ckCount As Int16, serial As String) If dbType = dbCode.prodDBcode Then - If prodCode >= prodDB.proset And prodCode <= prodDB_max_index Then - prodInCount(prodCode) += ckCount - If prodInSerial(prodCode) = Nothing Then - prodInSerial(prodCode) = serial + If prodCode >= 1 And prodCode <= item_product_max_index Then + item_product_list(prodCode).cnt += ckCount + If item_product_list(prodCode).serial = Nothing Then + item_product_list(prodCode).serial = serial Else - prodInSerial(prodCode) = prodInSerial(prodCode) & "/" & serial + item_product_list(prodCode).serial = item_product_list(prodCode).serial & "/" & serial End If Else MsgBox("잘못된 데이터가 개입되었습니다", vbCritical) Return True End If Else - If prodCode >= comDB.mask5 And prodCode <= comDB_max_index Then - comInCount(prodCode) += ckCount + If prodCode >= 0 And prodCode <= item_component_max_index Then + item_component_list(prodCode).cnt += ckCount Else MsgBox("잘못된 데이터가 개입되었습니다", vbCritical) Return True @@ -231,411 +250,142 @@ End Function Public Sub countCommandFunc(saveType As Int16) + ReDim countCommand(item_product_max_index + item_component_max_index + 1) Select Case saveType Case countSaveList.normal countCommand(prodDB.packingCount) = "PackingCount" - countCommand(prodDB.proset) = "ProSetCnt" - countCommand(prodDB.luxset) = "LuxSetCnt" - countCommand(prodDB.proface) = "ProFaceCnt" - countCommand(prodDB.luxface) = "LuxFaceCnt" - countCommand(prodDB.proeye) = "ProEyeCnt" - countCommand(prodDB.luxeye) = "LuxEyeCnt" - countCommand(prodDB.probody) = "ProBodyCnt" - countCommand(prodDB.luxbody) = "LuxBodyCnt" - countCommand(prodDB.maximum) = "MAXIMUMCnt" - countCommand(prodDB.alphaSet) = "AlphaSetCnt" - countCommand(prodDB.alphaFace) = "AlphaFaceCnt" - countCommand(prodDB.alphaEye) = "AlphaEyeCnt" - countCommand(prodDB.alphaBody) = "AlphaBodyCnt" - countCommand(prodDB.alto) = "AltoCnt" - countCommand(prodDB.effect) = "EffectCnt" - countCommand(prodDB.effectV3) = "EffectV3Cnt" - countCommand(prodDB.maximumAlpha) = "MAXIMUMALPHACnt" - countCommand(prodDB.optimum) = "OptimumCnt" - '신규제품추가 : 추가한 prodDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 일반동작 컬럼명 추가 - countCommand(prodInCount.Length + comDB.mask5) = "Mask5Cnt" - countCommand(prodInCount.Length + comDB.mask10) = "Mask10Cnt" - countCommand(prodInCount.Length + comDB.hairband) = "HairBandCnt" - countCommand(prodInCount.Length + comDB.gel) = "GelCnt" - countCommand(prodInCount.Length + comDB.minigel) = "MiniGel" - countCommand(prodInCount.Length + comDB.ample) = "AmpleCnt" - countCommand(prodInCount.Length + comDB.cream) = "CreamCnt" - countCommand(prodInCount.Length + comDB.umb) = "UmbrellaCnt" - countCommand(prodInCount.Length + comDB.fen) = "FenCnt" - countCommand(prodInCount.Length + comDB.charger) = "ChargerCnt" - countCommand(prodInCount.Length + comDB.cable) = "CableCnt" - countCommand(prodInCount.Length + comDB.toner) = "TonerCnt" - countCommand(prodInCount.Length + comDB.problack) = "CasePROBlack" - countCommand(prodInCount.Length + comDB.probeige) = "CasePROBeige" - countCommand(prodInCount.Length + comDB.prored) = "CasePRORed" - countCommand(prodInCount.Length + comDB.propink) = "CasePROPink" - countCommand(prodInCount.Length + comDB.maxblack) = "CaseMAXBlack" - countCommand(prodInCount.Length + comDB.maxapr) = "CaseMAXApr" - countCommand(prodInCount.Length + comDB.maxmint) = "CaseMAXMint" - countCommand(prodInCount.Length + comDB.maxbeige) = "CaseMAXBeige" - countCommand(prodInCount.Length + comDB.soothing) = "SoothingGelCnt" - countCommand(prodInCount.Length + comDB.car0) = "Carton0Cnt" - countCommand(prodInCount.Length + comDB.car1) = "Carton1Cnt" - countCommand(prodInCount.Length + comDB.car2) = "Carton2Cnt" - countCommand(prodInCount.Length + comDB.car3) = "Carton3Cnt" - countCommand(prodInCount.Length + comDB.car4) = "Carton4Cnt" - countCommand(prodInCount.Length + comDB.car5) = "Carton5Cnt" - countCommand(prodInCount.Length + comDB.car6) = "Carton6Cnt" - countCommand(prodInCount.Length + comDB.bag) = "BagCnt" - countCommand(prodInCount.Length + comDB.cosbag) = "CosBagCnt" - countCommand(prodInCount.Length + comDB.dustbag) = "DustBagCnt" - countCommand(prodInCount.Length + comDB.maxPurple) = "CaseMAXPurple" - countCommand(prodInCount.Length + comDB.proSnakeBlack) = "CasePROSnakeBlack" - countCommand(prodInCount.Length + comDB.kollagen) = "KollagenCnt" - countCommand(prodInCount.Length + comDB.kollagenset) = "KollagenSetCnt" - countCommand(prodInCount.Length + comDB.kollagen_P) = "Kollagen_PCnt" - countCommand(prodInCount.Length + comDB.kollagenset_P) = "KollagenSet_PCnt" - countCommand(prodInCount.Length + comDB.cleansingWater) = "CleansingWaterCnt" - countCommand(prodInCount.Length + comDB.tonerPad) = "TonerPadCnt" - countCommand(prodInCount.Length + comDB.maxSaffianoBK) = "CaseMaxSafBK" - countCommand(prodInCount.Length + comDB.hologram1) = "Hologram_1Cnt" - countCommand(prodInCount.Length + comDB.hologram3) = "Hologram_3Cnt" - countCommand(prodInCount.Length + comDB.hologram5) = "Hologram_5Cnt" - countCommand(prodInCount.Length + comDB.caseSaffianoPp) = "CaseMaxSafPp" - countCommand(prodInCount.Length + comDB.maxYellow) = "CaseMaxYellow" - countCommand(prodInCount.Length + comDB.Kollagen_Pe1) = "Kollagen_Pe1Cnt" - countCommand(prodInCount.Length + comDB.Kollagen_Pe3) = "Kollagen_Pe3Cnt" - countCommand(prodInCount.Length + comDB.Kollagen_Pe5) = "Kollagen_Pe5Cnt" - countCommand(prodInCount.Length + comDB.ATCircleCase) = "ATCircleCaseCnt" - countCommand(prodInCount.Length + comDB.APSquareCase) = "APSquareCaseCnt" - countCommand(prodInCount.Length + comDB.maxPeach) = "CaseMAXPeach" - countCommand(prodInCount.Length + comDB.massageSoothing) = "MasSoothingCnt" - countCommand(prodInCount.Length + comDB.maxSMint) = "CaseMAXSMint" - countCommand(prodInCount.Length + comDB.meshpouch) = "MeshPouchCnt" - countCommand(prodInCount.Length + comDB.firmingAmp) = "FirmingAmpCnt" - countCommand(prodInCount.Length + comDB.hyaluronicAmp) = "HyaluronicAmpCnt" - countCommand(prodInCount.Length + comDB.nightshot) = "nightshotcnt" - countCommand(prodInCount.Length + comDB.morningshot) = "morningshotcnt" - countCommand(prodInCount.Length + comDB.casemaxwoodi) = "casemaxwoodicnt" - countCommand(prodInCount.Length + comDB.Elicolltoner) = "Elicolltonercnt" - countCommand(prodInCount.Length + comDB.Elicollamp) = "Elicollampcnt" - countCommand(prodInCount.Length + comDB.Elicollcream) = "Elicollcreamcnt" - countCommand(prodInCount.Length + comDB.Elihyaltoner) = "Elihyaltonercnt" - countCommand(prodInCount.Length + comDB.Elihyalamp) = "Elihyalampcnt" - countCommand(prodInCount.Length + comDB.Elihyalcream) = "Elihyalcreamcnt" - countCommand(prodInCount.Length + comDB.Dayshot) = "Dayshotcnt" - countCommand(prodInCount.Length + comDB.Beautyshopbag) = "Beautyshopbagcnt" - countCommand(prodInCount.Length + comDB.Gummy) = "Gummycnt" - countCommand(prodInCount.Length + comDB.Stickjelly) = "Stickjellycnt" - countCommand(prodInCount.Length + comDB.Newyearbag) = "Newyearbagcnt" - countCommand(prodInCount.Length + comDB.Emsbelt) = "Emsbeltcnt" - countCommand(prodInCount.Length + comDB.Beltbag) = "Beltbagcnt" - countCommand(prodInCount.Length + comDB.Dayshot2) = "Dayshot2cnt" - countCommand(prodInCount.Length + comDB.Elixir) = "Elixircnt" - countCommand(prodInCount.Length + comDB.Elixirpremium) = "Elixirpremiumcnt" - countCommand(prodInCount.Length + comDB.Emsbeltcontrollset) = "Emsbeltcontrollsetcnt" - countCommand(prodInCount.Length + comDB.FabricBag) = "FabricBagcnt" - countCommand(prodInCount.Length + comDB.Goldshopbag) = "Goldshopbagcnt" - countCommand(prodInCount.Length + comDB.MorNigshotset) = "MorNigshotsetcnt" - countCommand(prodInCount.Length + comDB.CTBox) = "CTBoxcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingToner) = "ElesqLiftingTonercnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingCeam) = "ElesqLiftingCeamcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingECream) = "ElesqLiftingECreamcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingAmp) = "ElesqLiftingAmpcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaToner) = "ElesqAquaTonercnt" - countCommand(prodInCount.Length + comDB.ElesqAquaCeam) = "ElesqAquaCeamcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaECream) = "ElesqAquaECreamcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaAmp) = "ElesqAquaAmpcnt" - countCommand(prodInCount.Length + comDB.car8) = "Carton8Cnt" - countCommand(prodInCount.Length + comDB.keyring) = "KeyringCnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingToner) = "DoenaLiftingTonercnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingAmp) = "DoenaLiftingAmpcnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingCream) = "DoenaLiftingCreamcnt" - countCommand(prodInCount.Length + comDB.FirmingCollagenGel) = "FirmingCollagenGelcnt" - countCommand(prodInCount.Length + comDB.keyringSally) = "KeyringSallyCnt" - countCommand(prodInCount.Length + comDB.beautykitHairband) = "BeautykitHairbandCnt" - countCommand(prodInCount.Length + comDB.beautykitMirrorS) = "BeautykitMirrorSCnt" - countCommand(prodInCount.Length + comDB.beautykitMirrorL) = "BeautykitMirrorLCnt" - countCommand(prodInCount.Length + comDB.bloomingMoistureGel150) = "BloomingMoistureGel150Cnt" - countCommand(prodInCount.Length + comDB.firmingCollagenGel150) = "FirmingCollagenGel150Cnt" - countCommand(prodInCount.Length + comDB.tweedCase) = "TweedCaseCnt" - countCommand(prodInCount.Length + comDB.bloomingMoistureGel250) = "BloomingMoistureGel250Cnt" - '신규구성품추가 : 추가한 comDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 일반동작 컬럼명 추가 + For i = 1 To item_product_max_index + countCommand(i) = product_packing_cnt_list(i).packing_cnt_col_nm + Next + + For i = 0 To item_component_max_index + If component_packing_cnt_list(i).packing_cnt_col_nm <> Nothing Then + countCommand(product_packing_cnt_list.Length + i) = component_packing_cnt_list(i).packing_cnt_col_nm + End If + Next Case countSaveList.autopack countCommand(prodDB.packingCount) = "AutoPackCnt" - countCommand(prodDB.proset) = "APProSetCnt" - countCommand(prodDB.luxset) = "APLuxSetCnt" - countCommand(prodDB.proface) = "APProFaceCnt" - countCommand(prodDB.luxface) = "APLuxFaceCnt" - countCommand(prodDB.proeye) = "APProEyeCnt" - countCommand(prodDB.luxeye) = "APLuxEyeCnt" - countCommand(prodDB.probody) = "APProBodyCnt" - countCommand(prodDB.luxbody) = "APLuxBodyCnt" - countCommand(prodDB.maximum) = "APMAXIMUMCnt" - countCommand(prodDB.alphaSet) = "APAlphaSetCnt" - countCommand(prodDB.alphaFace) = "APAlphaFaceCnt" - countCommand(prodDB.alphaEye) = "APAlphaEyeCnt" - countCommand(prodDB.alphaBody) = "APAlphaBodyCnt" - countCommand(prodDB.alto) = "APAltoCnt" - countCommand(prodDB.effect) = "APEffectCnt" - countCommand(prodDB.effectV3) = "APEffectV3Cnt" - countCommand(prodDB.maximumAlpha) = "APMAXIMUMALPHACnt" - countCommand(prodDB.optimum) = "APOptimumCnt" - '신규제품추가 : 추가한 prodDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 자동화동작(포장) 컬럼명 추가 - countCommand(prodInCount.Length + comDB.mask5) = "APMask5Cnt" - countCommand(prodInCount.Length + comDB.mask10) = "APMask10Cnt" - countCommand(prodInCount.Length + comDB.hairband) = "APHairBandCnt" - countCommand(prodInCount.Length + comDB.gel) = "APGelCnt" - countCommand(prodInCount.Length + comDB.minigel) = "APMiniGel" - countCommand(prodInCount.Length + comDB.ample) = "APAmpleCnt" - countCommand(prodInCount.Length + comDB.cream) = "APCreamCnt" - countCommand(prodInCount.Length + comDB.umb) = "APUmbrellaCnt" - countCommand(prodInCount.Length + comDB.fen) = "APFenCnt" - countCommand(prodInCount.Length + comDB.charger) = "APChargerCnt" - countCommand(prodInCount.Length + comDB.cable) = "APCableCnt" - countCommand(prodInCount.Length + comDB.toner) = "APTonerCnt" - countCommand(prodInCount.Length + comDB.problack) = "APCasePROBlack" - countCommand(prodInCount.Length + comDB.probeige) = "APCasePROBeige" - countCommand(prodInCount.Length + comDB.prored) = "APCasePRORed" - countCommand(prodInCount.Length + comDB.propink) = "APCasePROPink" - countCommand(prodInCount.Length + comDB.maxblack) = "APCaseMAXBlack" - countCommand(prodInCount.Length + comDB.maxapr) = "APCaseMAXApr" - countCommand(prodInCount.Length + comDB.maxmint) = "APCaseMAXMint" - countCommand(prodInCount.Length + comDB.maxbeige) = "APCaseMAXBeige" - countCommand(prodInCount.Length + comDB.soothing) = "APSoothingGelCnt" - countCommand(prodInCount.Length + comDB.car0) = "APCarton0Cnt" - countCommand(prodInCount.Length + comDB.car1) = "APCarton1Cnt" - countCommand(prodInCount.Length + comDB.car2) = "APCarton2Cnt" - countCommand(prodInCount.Length + comDB.car3) = "APCarton3Cnt" - countCommand(prodInCount.Length + comDB.car4) = "APCarton4Cnt" - countCommand(prodInCount.Length + comDB.car5) = "APCarton5Cnt" - countCommand(prodInCount.Length + comDB.car6) = "APCarton6Cnt" - countCommand(prodInCount.Length + comDB.bag) = "APBagCnt" - countCommand(prodInCount.Length + comDB.cosbag) = "APCosBagCnt" - countCommand(prodInCount.Length + comDB.dustbag) = "APDustBagCnt" - countCommand(prodInCount.Length + comDB.maxPurple) = "APCaseMAXPurple" - countCommand(prodInCount.Length + comDB.proSnakeBlack) = "APCasePROSnakeBlack" - countCommand(prodInCount.Length + comDB.kollagen) = "APKollagenCnt" - countCommand(prodInCount.Length + comDB.kollagenset) = "APKollagenSetCnt" - countCommand(prodInCount.Length + comDB.kollagen_P) = "APKollagen_PCnt" - countCommand(prodInCount.Length + comDB.kollagenset_P) = "APKollagenSet_PCnt" - countCommand(prodInCount.Length + comDB.cleansingWater) = "APCleansingWaterCnt" - countCommand(prodInCount.Length + comDB.tonerPad) = "APTonerPadCnt" - countCommand(prodInCount.Length + comDB.maxSaffianoBK) = "APCaseMaxSafBK" - countCommand(prodInCount.Length + comDB.hologram1) = "APHologram_1Cnt" - countCommand(prodInCount.Length + comDB.hologram3) = "APHologram_3Cnt" - countCommand(prodInCount.Length + comDB.hologram5) = "APHologram_5Cnt" - countCommand(prodInCount.Length + comDB.caseSaffianoPp) = "APCaseMaxSafPp" - countCommand(prodInCount.Length + comDB.maxYellow) = "APCaseMaxYellow" - countCommand(prodInCount.Length + comDB.Kollagen_Pe1) = "APKollagen_Pe1Cnt" - countCommand(prodInCount.Length + comDB.Kollagen_Pe3) = "APKollagen_Pe3Cnt" - countCommand(prodInCount.Length + comDB.Kollagen_Pe5) = "APKollagen_Pe5Cnt" - countCommand(prodInCount.Length + comDB.ATCircleCase) = "APATCircleCaseCnt" - countCommand(prodInCount.Length + comDB.APSquareCase) = "APAPSquareCaseCnt" - countCommand(prodInCount.Length + comDB.maxPeach) = "APCaseMAXPeach" - countCommand(prodInCount.Length + comDB.massageSoothing) = "APMasSoothingCnt" - countCommand(prodInCount.Length + comDB.maxSMint) = "APCaseMAXSMint" - countCommand(prodInCount.Length + comDB.meshpouch) = "APMeshPouchCnt" - countCommand(prodInCount.Length + comDB.firmingAmp) = "APFirmingAmpCnt" - countCommand(prodInCount.Length + comDB.hyaluronicAmp) = "APHyaluronicAmpCnt" - countCommand(prodInCount.Length + comDB.nightshot) = "APnightshotcnt" - countCommand(prodInCount.Length + comDB.morningshot) = "APmorningshotcnt" - countCommand(prodInCount.Length + comDB.casemaxwoodi) = "APcasemaxwoodicnt" - countCommand(prodInCount.Length + comDB.Elicolltoner) = "APElicolltonercnt" - countCommand(prodInCount.Length + comDB.Elicollamp) = "APElicollampcnt" - countCommand(prodInCount.Length + comDB.Elicollcream) = "APElicollcreamcnt" - countCommand(prodInCount.Length + comDB.Elihyaltoner) = "APElihyaltonercnt" - countCommand(prodInCount.Length + comDB.Elihyalamp) = "APElihyalampcnt" - countCommand(prodInCount.Length + comDB.Elihyalcream) = "APElihyalcreamcnt" - countCommand(prodInCount.Length + comDB.Dayshot) = "APDayshotcnt" - countCommand(prodInCount.Length + comDB.Beautyshopbag) = "APBeautyshopbagcnt" - countCommand(prodInCount.Length + comDB.Gummy) = "APGummycnt" - countCommand(prodInCount.Length + comDB.Stickjelly) = "APStickjellycnt" - countCommand(prodInCount.Length + comDB.Newyearbag) = "APNewyearbagcnt" - countCommand(prodInCount.Length + comDB.Emsbelt) = "APEmsbeltcnt" - countCommand(prodInCount.Length + comDB.Beltbag) = "APBeltbagcnt" - countCommand(prodInCount.Length + comDB.Dayshot2) = "APDayshot2cnt" - countCommand(prodInCount.Length + comDB.Elixir) = "APElixircnt" - countCommand(prodInCount.Length + comDB.Elixirpremium) = "APElixirpremiumcnt" - countCommand(prodInCount.Length + comDB.Emsbeltcontrollset) = "APEmsbeltcontrollsetcnt" - countCommand(prodInCount.Length + comDB.FabricBag) = "APFabricBagcnt" - countCommand(prodInCount.Length + comDB.Goldshopbag) = "APGoldshopbagcnt" - countCommand(prodInCount.Length + comDB.MorNigshotset) = "APMorNigshotsetcnt" - countCommand(prodInCount.Length + comDB.CTBox) = "APCTBoxcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingToner) = "APElesqLiftingTonercnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingCeam) = "APElesqLiftingCeamcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingECream) = "APElesqLiftingECreamcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingAmp) = "APElesqLiftingAmpcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaToner) = "APElesqAquaTonercnt" - countCommand(prodInCount.Length + comDB.ElesqAquaCeam) = "APElesqAquaCeamcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaECream) = "APElesqAquaECreamcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaAmp) = "APElesqAquaAmpcnt" - countCommand(prodInCount.Length + comDB.car8) = "APCarton8Cnt" - countCommand(prodInCount.Length + comDB.keyring) = "APKeyringCnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingToner) = "APDoenaLiftingTonercnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingAmp) = "APDoenaLiftingAmpcnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingCream) = "APDoenaLiftingCreamcnt" - countCommand(prodInCount.Length + comDB.FirmingCollagenGel) = "APFirmingCollagenGelcnt" - countCommand(prodInCount.Length + comDB.keyringSally) = "APKeyringSallyCnt" - countCommand(prodInCount.Length + comDB.beautykitHairband) = "APBeautykitHairbandCnt" - countCommand(prodInCount.Length + comDB.beautykitMirrorS) = "APBeautykitMirrorSCnt" - countCommand(prodInCount.Length + comDB.beautykitMirrorL) = "APBeautykitMirrorLCnt" - countCommand(prodInCount.Length + comDB.bloomingMoistureGel150) = "APBloomingMoistureGel150Cnt" - countCommand(prodInCount.Length + comDB.firmingCollagenGel150) = "APFirmingCollagenGel150Cnt" - countCommand(prodInCount.Length + comDB.tweedCase) = "APTweedCaseCnt" - countCommand(prodInCount.Length + comDB.bloomingMoistureGel250) = "APBloomingMoistureGel250Cnt" - '신규구성품추가 : 추가한 comDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 자동화동작(포장) 컬럼명 추가 + For i = 1 To item_product_max_index + countCommand(i) = product_packing_cnt_list(i).ap_packing_cnt_col_nm + Next + + For i = 0 To item_component_max_index + If component_packing_cnt_list(i).ap_packing_cnt_col_nm <> Nothing Then + countCommand(product_packing_cnt_list.Length + i) = component_packing_cnt_list(i).ap_packing_cnt_col_nm + End If + Next Case countSaveList.autoWeight countCommand(prodDB.packingCount) = "AutoWeightCnt" - countCommand(prodDB.proset) = "AWProSetCnt" - countCommand(prodDB.luxset) = "AWLuxSetCnt" - countCommand(prodDB.proface) = "AWProFaceCnt" - countCommand(prodDB.luxface) = "AWLuxFaceCnt" - countCommand(prodDB.proeye) = "AWProEyeCnt" - countCommand(prodDB.luxeye) = "AWLuxEyeCnt" - countCommand(prodDB.probody) = "AWProBodyCnt" - countCommand(prodDB.luxbody) = "AWLuxBodyCnt" - countCommand(prodDB.maximum) = "AWMAXIMUMCnt" - countCommand(prodDB.alphaSet) = "AWAlphaSetCnt" - countCommand(prodDB.alphaFace) = "AWAlphaFaceCnt" - countCommand(prodDB.alphaEye) = "AWAlphaEyeCnt" - countCommand(prodDB.alphaBody) = "AWAlphaBodyCnt" - countCommand(prodDB.alto) = "AWAltoCnt" - countCommand(prodDB.effect) = "AWEffectCnt" - countCommand(prodDB.effectV3) = "AWEffectV3Cnt" - countCommand(prodDB.maximumAlpha) = "AWMAXIMUMALPHACnt" - countCommand(prodDB.optimum) = "AWOptimumCnt" - '신규제품추가 : 추가한 prodDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 자동화동작(무게측정) 컬럼명 추가 - countCommand(prodInCount.Length + comDB.mask5) = "AWMask5Cnt" - countCommand(prodInCount.Length + comDB.mask10) = "AWMask10Cnt" - countCommand(prodInCount.Length + comDB.hairband) = "AWHairBandCnt" - countCommand(prodInCount.Length + comDB.gel) = "AWGelCnt" - countCommand(prodInCount.Length + comDB.minigel) = "AWMiniGel" - countCommand(prodInCount.Length + comDB.ample) = "AWAmpleCnt" - countCommand(prodInCount.Length + comDB.cream) = "AWCreamCnt" - countCommand(prodInCount.Length + comDB.umb) = "AWUmbrellaCnt" - countCommand(prodInCount.Length + comDB.fen) = "AWFenCnt" - countCommand(prodInCount.Length + comDB.charger) = "AWChargerCnt" - countCommand(prodInCount.Length + comDB.cable) = "AWCableCnt" - countCommand(prodInCount.Length + comDB.toner) = "AWTonerCnt" - countCommand(prodInCount.Length + comDB.problack) = "AWCasePROBlack" - countCommand(prodInCount.Length + comDB.probeige) = "AWCasePROBeige" - countCommand(prodInCount.Length + comDB.prored) = "AWCasePRORed" - countCommand(prodInCount.Length + comDB.propink) = "AWCasePROPink" - countCommand(prodInCount.Length + comDB.maxblack) = "AWCaseMAXBlack" - countCommand(prodInCount.Length + comDB.maxapr) = "AWCaseMAXApr" - countCommand(prodInCount.Length + comDB.maxmint) = "AWCaseMAXMint" - countCommand(prodInCount.Length + comDB.maxbeige) = "AWCaseMAXBeige" - countCommand(prodInCount.Length + comDB.soothing) = "AWSoothingGelCnt" - countCommand(prodInCount.Length + comDB.car0) = "AWCarton0Cnt" - countCommand(prodInCount.Length + comDB.car1) = "AWCarton1Cnt" - countCommand(prodInCount.Length + comDB.car2) = "AWCarton2Cnt" - countCommand(prodInCount.Length + comDB.car3) = "AWCarton3Cnt" - countCommand(prodInCount.Length + comDB.car4) = "AWCarton4Cnt" - countCommand(prodInCount.Length + comDB.car5) = "AWCarton5Cnt" - countCommand(prodInCount.Length + comDB.car6) = "AWCarton6Cnt" - countCommand(prodInCount.Length + comDB.bag) = "AWBagCnt" - countCommand(prodInCount.Length + comDB.cosbag) = "AWCosBagCnt" - countCommand(prodInCount.Length + comDB.dustbag) = "AWDustBagCnt" - countCommand(prodInCount.Length + comDB.maxPurple) = "AWCaseMAXPurple" - countCommand(prodInCount.Length + comDB.proSnakeBlack) = "AWCasePROSnakeBlack" - countCommand(prodInCount.Length + comDB.kollagen) = "AWKollagenCnt" - countCommand(prodInCount.Length + comDB.kollagenset) = "AWKollagenSetCnt" - countCommand(prodInCount.Length + comDB.kollagen_P) = "AWKollagen_PCnt" - countCommand(prodInCount.Length + comDB.kollagenset_P) = "AWKollagenSet_PCnt" - countCommand(prodInCount.Length + comDB.cleansingWater) = "AWCleansingWaterCnt" - countCommand(prodInCount.Length + comDB.tonerPad) = "AWTonerPadCnt" - countCommand(prodInCount.Length + comDB.maxSaffianoBK) = "AWCaseMaxSafBK" - countCommand(prodInCount.Length + comDB.hologram1) = "AWHologram_1Cnt" - countCommand(prodInCount.Length + comDB.hologram3) = "AWHologram_3Cnt" - countCommand(prodInCount.Length + comDB.hologram5) = "AWHologram_5Cnt" - countCommand(prodInCount.Length + comDB.caseSaffianoPp) = "AWCaseMaxSafPp" - countCommand(prodInCount.Length + comDB.maxYellow) = "AWCaseMaxYellow" - countCommand(prodInCount.Length + comDB.Kollagen_Pe1) = "AWKollagen_Pe1Cnt" - countCommand(prodInCount.Length + comDB.Kollagen_Pe3) = "AWKollagen_Pe3Cnt" - countCommand(prodInCount.Length + comDB.Kollagen_Pe5) = "AWKollagen_Pe5Cnt" - countCommand(prodInCount.Length + comDB.ATCircleCase) = "AWATCircleCaseCnt" - countCommand(prodInCount.Length + comDB.APSquareCase) = "AWAPSquareCaseCnt" - countCommand(prodInCount.Length + comDB.maxPeach) = "AWCaseMAXPeach" - countCommand(prodInCount.Length + comDB.massageSoothing) = "AWMasSoothingCnt" - countCommand(prodInCount.Length + comDB.maxSMint) = "AWCaseMAXSMint" - countCommand(prodInCount.Length + comDB.meshpouch) = "AWMeshPouchCnt" - countCommand(prodInCount.Length + comDB.firmingAmp) = "AWFirmingAmpCnt" - countCommand(prodInCount.Length + comDB.hyaluronicAmp) = "AWHyaluronicAmpCnt" - countCommand(prodInCount.Length + comDB.nightshot) = "AWnightshotcnt" - countCommand(prodInCount.Length + comDB.morningshot) = "AWmorningshotcnt" - countCommand(prodInCount.Length + comDB.casemaxwoodi) = "AWcasemaxwoodicnt" - countCommand(prodInCount.Length + comDB.Elicolltoner) = "AWElicolltonercnt" - countCommand(prodInCount.Length + comDB.Elicollamp) = "AWElicollampcnt" - countCommand(prodInCount.Length + comDB.Elicollcream) = "AWElicollcreamcnt" - countCommand(prodInCount.Length + comDB.Elihyaltoner) = "AWElihyaltonercnt" - countCommand(prodInCount.Length + comDB.Elihyalamp) = "AWElihyalampcnt" - countCommand(prodInCount.Length + comDB.Elihyalcream) = "AWElihyalcreamcnt" - countCommand(prodInCount.Length + comDB.Dayshot) = "AWDayshotcnt" - countCommand(prodInCount.Length + comDB.Beautyshopbag) = "AWBeautyshopbagcnt" - countCommand(prodInCount.Length + comDB.Gummy) = "AWGummycnt" - countCommand(prodInCount.Length + comDB.Stickjelly) = "AWStickjellycnt" - countCommand(prodInCount.Length + comDB.Newyearbag) = "AWNewyearbagcnt" - countCommand(prodInCount.Length + comDB.Emsbelt) = "AWEmsbeltcnt" - countCommand(prodInCount.Length + comDB.Beltbag) = "AWBeltbagcnt" - countCommand(prodInCount.Length + comDB.Dayshot2) = "AWDayshot2cnt" - countCommand(prodInCount.Length + comDB.Elixir) = "AWElixircnt" - countCommand(prodInCount.Length + comDB.Elixirpremium) = "AWElixirpremiumcnt" - countCommand(prodInCount.Length + comDB.Emsbeltcontrollset) = "AWEmsbeltcontrollsetcnt" - countCommand(prodInCount.Length + comDB.FabricBag) = "AWFabricBagcnt" - countCommand(prodInCount.Length + comDB.Goldshopbag) = "AWGoldshopbagcnt" - countCommand(prodInCount.Length + comDB.MorNigshotset) = "AWMorNigshotsetcnt" - countCommand(prodInCount.Length + comDB.CTBox) = "AWCTBoxcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingToner) = "AWlesqLiftingTonercnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingCeam) = "AWElesqLiftingCeamcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingECream) = "AWElesqLiftingECreamcnt" - countCommand(prodInCount.Length + comDB.ElesqLiftingAmp) = "AWElesqLiftingAmpcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaToner) = "AWElesqAquaTonercnt" - countCommand(prodInCount.Length + comDB.ElesqAquaCeam) = "AWElesqAquaCeamcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaECream) = "AWElesqAquaECreamcnt" - countCommand(prodInCount.Length + comDB.ElesqAquaAmp) = "AWElesqAquaAmpcnt" - countCommand(prodInCount.Length + comDB.car8) = "AWCarton8Cnt" - countCommand(prodInCount.Length + comDB.keyring) = "AWKeyringCnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingToner) = "AWDoenaLiftingTonercnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingAmp) = "AWDoenaLiftingAmpcnt" - countCommand(prodInCount.Length + comDB.DoenaLiftingCream) = "AWDoenaLiftingCreamcnt" - countCommand(prodInCount.Length + comDB.FirmingCollagenGel) = "AWFirmingCollagenGelcnt" - countCommand(prodInCount.Length + comDB.keyringSally) = "AWKeyringSallyCnt" - countCommand(prodInCount.Length + comDB.beautykitHairband) = "AWBeautykitHairbandCnt" - countCommand(prodInCount.Length + comDB.beautykitMirrorS) = "AWBeautykitMirrorSCnt" - countCommand(prodInCount.Length + comDB.beautykitMirrorL) = "AWBeautykitMirrorLCnt" - countCommand(prodInCount.Length + comDB.bloomingMoistureGel150) = "AWBloomingMoistureGel150Cnt" - countCommand(prodInCount.Length + comDB.firmingCollagenGel150) = "AWFirmingCollagenGel150Cnt" - countCommand(prodInCount.Length + comDB.tweedCase) = "AWTweedCaseCnt" - countCommand(prodInCount.Length + comDB.bloomingMoistureGel250) = "AWBloomingMoistureGel250Cnt" - '신규구성품추가 : 추가한 comDB 수량을 DB에 저장하기 위해 jomtPackingCount 에 생성한 자동화동작(무게측정) 컬럼명 추가 + For i = 1 To item_product_max_index + countCommand(i) = product_packing_cnt_list(i).aw_packing_cnt_col_nm + Next + + For i = 0 To item_component_max_index + If component_packing_cnt_list(i).aw_packing_cnt_col_nm <> Nothing Then + countCommand(product_packing_cnt_list.Length + i) = component_packing_cnt_list(i).aw_packing_cnt_col_nm + End If + Next End Select End Sub Public Sub countDBCommand() - prodPackCommand(prodDB.proset) = "Main_Product_SN" - prodPackCommand(prodDB.luxset) = "Main_Product_SN" - prodPackCommand(prodDB.proface) = "Pro_Face_Serial" - prodPackCommand(prodDB.luxface) = "Lux_Face_Serial" - prodPackCommand(prodDB.proeye) = "Pro_Eye_Serial" - prodPackCommand(prodDB.luxeye) = "Lux_Eye_Serial" - prodPackCommand(prodDB.probody) = "Pro_Body_Serial" - prodPackCommand(prodDB.luxbody) = "Lux_Body_Serial" - prodPackCommand(prodDB.maximum) = "MAXIMUM_SN" - prodPackCommand(prodDB.alphaSet) = "Alpha_Set_Serial" - prodPackCommand(prodDB.alphaFace) = "Alpha_Face_Serial" - prodPackCommand(prodDB.alphaEye) = "Alpha_Eye_Serial" - prodPackCommand(prodDB.alphaBody) = "Alpha_Body_Serial" - prodPackCommand(prodDB.alto) = "Alto_Serial" - prodPackCommand(prodDB.effect) = "Effect_Serial" - prodPackCommand(prodDB.effectV3) = "EffectV3_Serial" - prodPackCommand(prodDB.maximumAlpha) = "MAXIMUM_ALPHA_SN" - prodPackCommand(prodDB.optimum) = "Optimum_Serial" - '신규제품추가 : 추가한 prodDB 시리얼번호를 DB에 저장하기 위해 jomtSalesPackingTbl 에 생성한 시리얼번호 컬럼명 추가 + + DBCmd = "SELECT MAX(ProdCode) FROM " & applyPlistDB & ";" + If DBQueryReader(DBCmd) Then + item_product_max_index = sqlDataQuery(0) + ReDim item_product_list(item_product_max_index) + ReDim product_packing_cnt_list(item_product_max_index) + End If + + DBCmd = "SELECT CAST(ProdCode AS CHAR) + , SalesPackingCntColNm + , SalesPackingSerialColNm + , PackingCntColNm + , APPackingCntColNm + , AWPackingCntColNm + FROM " & applyPlistDB & " GROUP BY ProdCode ORDER BY ProdCode asc;" + If DBQueryReader(DBCmd) Then + Dim RowCount As Int16 = (sqlDataQuery.Length / 6) - 1 + Dim dataSetCount As Int32 = 0 + Dim item_data As item_info + Dim packing_count_data As packing_count_info + + For row = 0 To RowCount + item_data.item_type = "P" + packing_count_data.item_type = "P" + For col = 0 To 5 + If col = 0 Then + item_data.prod_code = sqlDataQuery(dataSetCount) + packing_count_data.prod_code = sqlDataQuery(dataSetCount) + ElseIf col = 1 Then + item_data.sales_packing_cnt_col_nm = sqlDataQuery(dataSetCount) + ElseIf col = 2 Then + item_data.sales_packing_serial_col_nm = sqlDataQuery(dataSetCount) + ElseIf col = 3 Then + packing_count_data.packing_cnt_col_nm = sqlDataQuery(dataSetCount) + ElseIf col = 4 Then + packing_count_data.ap_packing_cnt_col_nm = sqlDataQuery(dataSetCount) + ElseIf col = 5 Then + packing_count_data.aw_packing_cnt_col_nm = sqlDataQuery(dataSetCount) + End If + dataSetCount += 1 + Next + item_product_list(item_data.prod_code) = item_data + product_packing_cnt_list(packing_count_data.prod_code) = packing_count_data + Next + End If + + DBCmd = "SELECT MAX(ProdCode) FROM " & applyClistDB & ";" + If DBQueryReader(DBCmd) Then + item_component_max_index = sqlDataQuery(0) + ReDim item_component_list(item_component_max_index) + ReDim component_packing_cnt_list(item_component_max_index) + End If + + DBCmd = "SELECT CAST(ProdCode AS CHAR) + , SalesPackingCntColNm + , PackingCntColNm + , APPackingCntColNm + , AWPackingCntColNm + FROM " & applyClistDB & " GROUP BY ProdCode ORDER BY ProdCode asc;" + If DBQueryReader(DBCmd) Then + Dim RowCount As Int16 = (sqlDataQuery.Length / 5) - 1 + Dim dataSetCount As Int32 = 0 + Dim item_data As item_info + Dim packing_count_data As packing_count_info + + For row = 0 To RowCount + item_data.item_type = "C" + packing_count_data.item_type = "C" + For col = 0 To 4 + If col = 0 Then + item_data.prod_code = sqlDataQuery(dataSetCount) + packing_count_data.prod_code = sqlDataQuery(dataSetCount) + ElseIf col = 1 Then + item_data.sales_packing_cnt_col_nm = sqlDataQuery(dataSetCount) + ElseIf col = 2 Then + packing_count_data.packing_cnt_col_nm = sqlDataQuery(dataSetCount) + ElseIf col = 3 Then + packing_count_data.ap_packing_cnt_col_nm = sqlDataQuery(dataSetCount) + ElseIf col = 4 Then + packing_count_data.aw_packing_cnt_col_nm = sqlDataQuery(dataSetCount) + End If + dataSetCount += 1 + Next + item_component_list(item_data.prod_code) = item_data + component_packing_cnt_list(packing_count_data.prod_code) = packing_count_data + Next + End If + End Sub End Module