diff --git a/Product_Manager/FormSetting.vb b/Product_Manager/FormSetting.vb index dff7105..27cb662 100644 --- a/Product_Manager/FormSetting.vb +++ b/Product_Manager/FormSetting.vb @@ -1,13 +1,13 @@ Module FormSetting Public Enum ModeList - DUALSONIC - MAXIMUM - ALTO - EFFECT + DUALSONIC '카트리지 분리형 모델 + MAXIMUM '카트리지 일체형, HIFU + RF + EP + MC 기능 제공 모델 + ALTO '카트리지 일체형, RF + EP 기능 제공 모델 + EFFECT '카트리지 일체형, HIFU 기능 제공 모델 MAX_Mode End Enum - Public SelectModel As Int16 + Public SelectModeType As Int16 Public Sub StartTop() @@ -19,7 +19,7 @@ .Size = New Size(1210, 90) End With - With .gbProdSelect + With .gbModelSelect .Location = New Point(10, 5) .Size = New Size(400, 80) End With @@ -79,7 +79,7 @@ Public Sub DUALForm_Setting() AuthSetting("인증코드설정", "카트리지") DefaultSetting() - ModeSetting(SelectModel) + ModeSetting(SelectModeType) DUALSetting() End Sub @@ -93,21 +93,21 @@ Public Sub MAXForm_Setting() AuthSetting("플래쉬 설정값 초기화", "초기화") DefaultSetting() - ModeSetting(SelectModel) + ModeSetting(SelectModeType) MAXSetting() End Sub Public Sub ALTOForm_Setting() AuthSetting("플래쉬 설정값 초기화", "초기화") DefaultSetting() - ModeSetting(SelectModel) + ModeSetting(SelectModeType) MAXSetting() End Sub Public Sub EFFECTForm_Setting() AuthSetting("플래쉬 설정값 초기화", "초기화") DefaultSetting() - ModeSetting(SelectModel) + ModeSetting(SelectModeType) MAXSetting() End Sub @@ -143,7 +143,6 @@ End Sub Private Sub ModeSetting(ModelNum As Int16) - InfoModeSetting(ModelNum) ShotCountSetting(ModelNum) MotorOpSetting(ModelNum) FreqOpSetting(ModelNum) @@ -151,20 +150,18 @@ Private Sub DefaultSetting() InfoSetting() - AreaSetting() TDSetting() FreqPowerSetting() ShotSetting() MotorSetting() - DeviceOpSetting() End Sub Private Sub AuthSetting(btnStr As String, btnStr2 As String) - '' 인증 항목 + ' 인증 항목 With MainForm With .gbAuth - .Location = New Point(10, 35) + .Location = New Point(10, 26) .Size = New Size(380, 70) .Text = btnStr End With @@ -187,545 +184,47 @@ End Sub Private Sub InfoSetting() - With MainForm - With .gbInfo - .Text = "제품 정보 설정" - .Location = New Point(10, 125) - .Size = New Size(380, 330) - End With - - ''---------------------------------------------------- - - With .pnIfNumber - .Location = New Point(10, 30) - .Size = New Size(360, 40) - End With - - With .lbIfBarcode - .Location = New Point(5, 7) - End With - - With .txbIfNumber - .Location = New Point(145, 5) - .Size = New Size(205, 32) - .TextAlign = HorizontalAlignment.Center - .Text = "10" & Format(Now, "yy") & Format(Now, "MM") & "000000" - .ReadOnly = True - End With - - ''---------------------------------------------------- - - With .pnIfCode - .Location = New Point(10, 70) - .Size = New Size(360, 40) - End With - - With .lbIfCode - .Location = New Point(5, 7) - End With - - With .txbIfCode - .Location = New Point(145, 5) - .Size = New Size(205, 32) - .TextAlign = HorizontalAlignment.Center - .Text = "JOMT" - .MaxLength = 4 - End With - - ''---------------------------------------------------- - - With .pnIfDate - .Location = New Point(10, 110) - .Size = New Size(360, 40) - End With - - With .lbIfDate - .Location = New Point(23, 7) - End With - - With .lbIfYear - .Location = New Point(140, 8) - End With - - With .nudIfYear - .Location = New Point(175, 5) - .Size = New Size(65, 32) - .TextAlign = HorizontalAlignment.Center - .Minimum = 10 - .Maximum = 99 - .Text = Format(Now, "yy") - End With - - ''---------------------------------------------------- - - With .lbIfMonth - .Location = New Point(250, 8) - End With - - With .nudIfMonth - .Location = New Point(285, 5) - .Size = New Size(65, 32) - .TextAlign = HorizontalAlignment.Center - .Minimum = 1 - .Maximum = 12 - .Text = Format(Now, "MM") - End With - - ''-------------------------------------------------------- - - With .pnIfSerial - .Location = New Point(10, 230) - .Size = New Size(360, 40) - End With - - With .lbIfSerial - .Location = New Point(5, 7) - End With - - With .nudIfSerial - .Location = New Point(145, 5) - .Size = New Size(205, 32) - .TextAlign = HorizontalAlignment.Center - .Maximum = 999999 - .Minimum = 0 - End With - - With .pnIfResult - .Location = New Point(10, 270) - .Size = New Size(360, 50) - End With - - With .btnIfWrite - .Location = New Point(250, 5) - .Size = New Size(105, 40) - .Text = "쓰기" - End With - - With .btnIfRead - .Location = New Point(145, 5) - .Size = New Size(105, 40) - End With - - With .txbInfoBox - .Location = New Point(10, 12) - .Size = New Size(130, 29) - .TextAlign = HorizontalAlignment.Center - .Text = String.Empty - .BackColor = Color.FromArgb(0, 192, 0) - .Visible = False - End With - - End With - End Sub - - Private Sub InfoModeSetting(ModeNum As Int16) - Select Case ModeNum - Case ModeList.DUALSONIC - - With MainForm - - With .gbInfo - .Size = New Size(380, 330) - End With - - With .pnIfMoTy - .Location = New Point(10, 150) - .Size = New Size(360, 80) - End With - - With .pnIfModel - .Location = New Point(0, 0) - .Size = New Size(360, 40) - End With - - With .lbIfModel - .Location = New Point(23, 7) - .Text = "모델종류" - End With - - With .rdbIfPRO_V1 - .Location = New Point(110, 7) - .Text = "PRO" - .Checked = True - .Visible = True - .Enabled = True - End With - - With .rdbIfLUX_V2 - .Location = New Point(190, 7) - .Text = "LUX" - .Checked = False - .Visible = True - .Enabled = True - End With - - With .rdbIfALPHA - .Location = New Point(260, 7) - .Text = "ALPHA" - .Checked = False - .Visible = True - .Enabled = True - End With - - With .pnIfType - .Location = New Point(0, 40) - .Size = New Size(360, 40) - .Visible = True - .Enabled = True - End With - - With .lbIfType - .Location = New Point(23, 7) - End With - - With .rdbIfFace - .Location = New Point(110, 7) - .Checked = True - End With - - With .rdbIfEye - .Location = New Point(190, 7) - End With - - With .rdbIfBody - .Location = New Point(260, 7) - End With - - With .pnIfSerial - .Location = New Point(10, 230) - End With - - With .pnIfResult - .Location = New Point(10, 270) - End With - + If MainForm.SelectedModelInfo.Code.Length = 2 Then + With MainForm + With .lbType + .Text = "카트리지 구분" End With - Case ModeList.MAXIMUM - - With MainForm - - With .gbInfo - .Size = New Size(380, 290) - End With - - With .pnIfMoTy - .Location = New Point(10, 150) - .Size = New Size(360, 40) - End With - - With .pnIfModel - .Location = New Point(0, 0) - .Size = New Size(360, 40) - End With - - With .lbIfModel - .Location = New Point(23, 7) - .Text = "타입종류" - End With - - With .rdbIfPRO_V1 - .Location = New Point(110, 7) - .Text = "V1" - .Checked = False - .Visible = True - .Enabled = True - End With - - With .rdbIfLUX_V2 - .Location = New Point(190, 7) - .Text = "V2" - .Checked = True - .Visible = True - .Enabled = True - End With - - With .rdbIfALPHA - .Location = New Point(260, 7) - .Text = "ALPHA" - .Checked = False - .Visible = False - .Enabled = False - End With - - With .pnIfType - .Location = New Point(0, 40) - .Size = New Size(360, 40) - .Visible = False - .Enabled = False - End With - - With .lbIfType - .Location = New Point(23, 7) - End With - - With .rdbIfFace - .Location = New Point(110, 7) - .Checked = True - End With - - With .rdbIfEye - .Location = New Point(190, 7) - .Checked = False - End With - - With .rdbIfBody - .Location = New Point(260, 7) - .Checked = False - End With - - With .pnIfSerial - .Location = New Point(10, 190) - End With - - With .pnIfResult - .Location = New Point(10, 230) - End With - + With .comboBoxColor + .Enabled = True End With - Case ModeList.ALTO - With MainForm - - With .gbInfo - .Size = New Size(380, 290) - End With - - With .pnIfMoTy - .Location = New Point(10, 150) - .Size = New Size(360, 40) - End With - - With .pnIfModel - .Location = New Point(0, 0) - .Size = New Size(360, 40) - End With - - With .lbIfModel - .Location = New Point(23, 7) - .Text = "타입종류" - End With - - With .rdbIfPRO_V1 - .Location = New Point(110, 7) - .Text = "SET" - .Checked = True - .Visible = True - .Enabled = True - End With - - With .rdbIfLUX_V2 - .Location = New Point(190, 7) - .Text = "V2" - .Checked = False - .Visible = False - .Enabled = False - End With - - With .rdbIfALPHA - .Location = New Point(260, 7) - .Text = "ALPHA" - .Checked = False - .Visible = False - .Enabled = False - End With - - With .pnIfType - .Location = New Point(0, 40) - .Size = New Size(360, 40) - .Visible = False - .Enabled = False - End With - - With .lbIfType - .Location = New Point(23, 7) - End With - - With .rdbIfFace - .Location = New Point(110, 7) - .Checked = True - End With - - With .rdbIfEye - .Location = New Point(190, 7) - .Checked = False - End With - - With .rdbIfBody - .Location = New Point(260, 7) - .Checked = False - End With - - With .pnIfSerial - .Location = New Point(10, 190) - End With - - With .pnIfResult - .Location = New Point(10, 230) - End With - - + With .comboBoxClass + .Enabled = True End With - Case ModeList.EFFECT - With MainForm - - With .gbInfo - .Size = New Size(380, 290) - End With - - With .pnIfMoTy - .Location = New Point(10, 150) - .Size = New Size(360, 40) - End With - - With .pnIfModel - .Location = New Point(0, 0) - .Size = New Size(360, 40) - End With - - With .lbIfModel - .Location = New Point(23, 7) - .Text = "타입종류" - End With - - With .rdbIfPRO_V1 - .Location = New Point(110, 7) - .Text = "SET" - .Checked = True - .Visible = True - .Enabled = True - End With - - With .rdbIfLUX_V2 - .Location = New Point(190, 7) - .Text = "V2" - .Checked = False - .Visible = False - .Enabled = False - End With - - With .rdbIfALPHA - .Location = New Point(260, 7) - .Text = "ALPHA" - .Checked = False - .Visible = False - .Enabled = False - End With - - With .pnIfType - .Location = New Point(0, 40) - .Size = New Size(360, 40) - .Visible = False - .Enabled = False - End With - - With .lbIfType - .Location = New Point(23, 7) - End With - - With .rdbIfFace - .Location = New Point(110, 7) - .Checked = True - End With - - With .rdbIfEye - .Location = New Point(190, 7) - .Checked = False - End With - - With .rdbIfBody - .Location = New Point(260, 7) - .Checked = False - End With - - With .pnIfSerial - .Location = New Point(10, 190) - End With - - With .pnIfResult - .Location = New Point(10, 230) - End With - + With .pnlIfVersion + .Visible = True End With - Case Else - MsgBox("잘못된 경로입니다.", vbCritical) - End Select - - End Sub - - Private Sub AreaSetting() - With MainForm - With .gbArea - .Location = New Point(10, 475) - .Size = New Size(380, 170) - End With - - - With .pnAbroad - .Location = New Point(10, 30) - .Size = New Size(360, 40) - End With - - With .lbAbroad - .Location = New Point(23, 7) - .Size = New Size(82, 24) - End With - - With .txbAbroad - .Location = New Point(145, 5) - .Size = New Size(205, 32) - .TextAlign = HorizontalAlignment.Center - .Text = "0" - End With - - - With .pnAgency - .Location = New Point(10, 70) - .Size = New Size(360, 40) - End With - - With .lbAgency - .Location = New Point(5, 7) - .Size = New Size(100, 24) - End With - - With .txbAgency - .Location = New Point(145, 5) - .Size = New Size(205, 32) - .TextAlign = HorizontalAlignment.Center - .Text = "0" - End With - - - With .pnArResult - .Location = New Point(10, 110) - .Size = New Size(360, 50) - End With - - With .txbAreaBox - - .Location = New Point(10, 12) - .Size = New Size(130, 29) - .BackColor = Color.FromArgb(0, 192, 0) - .TextAlign = HorizontalAlignment.Center - .Text = String.Empty - .Visible = False End With + Else + With MainForm + + With .lbType + .Text = "타입종류/버전" + End With + + With .comboBoxColor + .Enabled = False + End With + + With .comboBoxClass + .Enabled = False + End With + + With .pnlIfVersion + .Visible = False + End With - With .btnArRead - .Location = New Point(145, 5) - .Size = New Size(105, 40) End With - - With .btnArWrite - .Location = New Point(250, 5) - .Size = New Size(105, 40) - End With - - End With + End If End Sub Private Sub TDSetting() @@ -755,7 +254,6 @@ .ImeMode = ImeMode.Disable End With - With .pnTdResult .Location = New Point(10, 70) .Size = New Size(360, 50) @@ -1183,37 +681,6 @@ .Minimum = 1 End With - With .pnDvMoTy - .Location = New Point(10, 150) - .Size = New Size(360, 40) - End With - - With .pnDvModel - .Location = New Point(0, 0) - .Size = New Size(360, 40) - End With - - With .lbDvModel - .Location = New Point(23, 7) - .Size = New Size(82, 24) - End With - - With .rdbDvPRO - .Location = New Point(110, 7) - .Size = New Size(66, 28) - End With - - With .rdbDvLUX - .Location = New Point(182, 7) - .Size = New Size(67, 28) - End With - - With .rdbDvALPHA - .Location = New Point(260, 7) - .Size = New Size(91, 28) - End With - - With .pnDvSerial .Location = New Point(10, 190) .Size = New Size(360, 40) @@ -1299,12 +766,6 @@ .txbIfCode.Text = String.Empty .nudIfYear.Text = Format(Now, "yy") .nudIfMonth.Text = Format(Now, "MM") - .rdbIfPRO_V1.Checked = True - .rdbIfLUX_V2.Checked = False - .rdbIfALPHA.Checked = False - .rdbIfFace.Checked = True - .rdbIfEye.Checked = False - .rdbIfBody.Checked = False .nudIfSerial.Text = String.Empty .txbAbroad.Text = String.Empty .txbAgency.Text = String.Empty @@ -1345,9 +806,6 @@ .txbALAllErr.Text = String.Empty End With - - - End Sub diff --git a/Product_Manager/MainForm.Designer.vb b/Product_Manager/MainForm.Designer.vb index 3b3d80f..2af6ef8 100644 --- a/Product_Manager/MainForm.Designer.vb +++ b/Product_Manager/MainForm.Designer.vb @@ -1,9 +1,9 @@ - _ + Partial Class MainForm Inherits System.Windows.Forms.Form 'Form은 Dispose를 재정의하여 구성 요소 목록을 정리합니다. - _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then @@ -20,20 +20,17 @@ Partial Class MainForm '참고: 다음 프로시저는 Windows Form 디자이너에 필요합니다. '수정하려면 Windows Form 디자이너를 사용하십시오. '코드 편집기에서는 수정하지 마세요. - _ + Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(MainForm)) - Me.gbProdSelect = New System.Windows.Forms.GroupBox() - Me.rdbEffect = New System.Windows.Forms.RadioButton() - Me.rdbAlto = New System.Windows.Forms.RadioButton() - Me.rdbMax = New System.Windows.Forms.RadioButton() - Me.rdbDual = New System.Windows.Forms.RadioButton() Me.gbComport = New System.Windows.Forms.GroupBox() Me.btnComport = New System.Windows.Forms.Button() Me.cboComport = New System.Windows.Forms.ComboBox() Me.lbComport = New System.Windows.Forms.Label() Me.pnTop = New System.Windows.Forms.Panel() + Me.gbModelSelect = New System.Windows.Forms.GroupBox() + Me.comboBoxModel = New System.Windows.Forms.ComboBox() Me.gbOpOut = New System.Windows.Forms.GroupBox() Me.rdbUseTime = New System.Windows.Forms.RadioButton() Me.rdbDev = New System.Windows.Forms.RadioButton() @@ -92,6 +89,18 @@ Partial Class MainForm Me.txbAbroad = New System.Windows.Forms.TextBox() Me.lbAbroad = New System.Windows.Forms.Label() Me.gbInfo = New System.Windows.Forms.GroupBox() + Me.pnlIfVersion = New System.Windows.Forms.Panel() + Me.comboBoxVersion = New System.Windows.Forms.ComboBox() + Me.Label4 = New System.Windows.Forms.Label() + Me.pnIfType = New System.Windows.Forms.Panel() + Me.comboBoxType = New System.Windows.Forms.ComboBox() + Me.lbType = New System.Windows.Forms.Label() + Me.pnlIfClass = New System.Windows.Forms.Panel() + Me.comboBoxClass = New System.Windows.Forms.ComboBox() + Me.Label2 = New System.Windows.Forms.Label() + Me.pnIfColor = New System.Windows.Forms.Panel() + Me.comboBoxColor = New System.Windows.Forms.ComboBox() + Me.Label1 = New System.Windows.Forms.Label() Me.pnIfResult = New System.Windows.Forms.Panel() Me.btnIfWrite = New System.Windows.Forms.Button() Me.btnIfRead = New System.Windows.Forms.Button() @@ -99,17 +108,6 @@ Partial Class MainForm Me.pnIfSerial = New System.Windows.Forms.Panel() Me.nudIfSerial = New System.Windows.Forms.NumericUpDown() Me.lbIfSerial = New System.Windows.Forms.Label() - Me.pnIfMoTy = New System.Windows.Forms.Panel() - Me.pnIfType = New System.Windows.Forms.Panel() - Me.rdbIfBody = New System.Windows.Forms.RadioButton() - Me.rdbIfEye = New System.Windows.Forms.RadioButton() - Me.rdbIfFace = New System.Windows.Forms.RadioButton() - Me.lbIfType = New System.Windows.Forms.Label() - Me.pnIfModel = New System.Windows.Forms.Panel() - Me.rdbIfALPHA = New System.Windows.Forms.RadioButton() - Me.rdbIfLUX_V2 = New System.Windows.Forms.RadioButton() - Me.rdbIfPRO_V1 = New System.Windows.Forms.RadioButton() - Me.lbIfModel = New System.Windows.Forms.Label() Me.pnIfDate = New System.Windows.Forms.Panel() Me.nudIfMonth = New System.Windows.Forms.NumericUpDown() Me.nudIfYear = New System.Windows.Forms.NumericUpDown() @@ -340,12 +338,6 @@ Partial Class MainForm Me.pnDvSerial = New System.Windows.Forms.Panel() Me.nudDvSerial = New System.Windows.Forms.NumericUpDown() Me.lbDvSerial = New System.Windows.Forms.Label() - Me.pnDvMoTy = New System.Windows.Forms.Panel() - Me.pnDvModel = New System.Windows.Forms.Panel() - Me.rdbDvALPHA = New System.Windows.Forms.RadioButton() - Me.rdbDvLUX = New System.Windows.Forms.RadioButton() - Me.rdbDvPRO = New System.Windows.Forms.RadioButton() - Me.lbDvModel = New System.Windows.Forms.Label() Me.pnDvDate = New System.Windows.Forms.Panel() Me.nudDvMonth = New System.Windows.Forms.NumericUpDown() Me.nudDvYear = New System.Windows.Forms.NumericUpDown() @@ -399,9 +391,9 @@ Partial Class MainForm Me.btnLoadNum = New System.Windows.Forms.Button() Me.txbLoadNum = New System.Windows.Forms.TextBox() Me.lbLoadNum = New System.Windows.Forms.Label() - Me.gbProdSelect.SuspendLayout() Me.gbComport.SuspendLayout() Me.pnTop.SuspendLayout() + Me.gbModelSelect.SuspendLayout() Me.gbOpOut.SuspendLayout() Me.gbEtcOp.SuspendLayout() Me.pnBottom.SuspendLayout() @@ -425,12 +417,13 @@ Partial Class MainForm Me.pnAgency.SuspendLayout() Me.pnAbroad.SuspendLayout() Me.gbInfo.SuspendLayout() + Me.pnlIfVersion.SuspendLayout() + Me.pnIfType.SuspendLayout() + Me.pnlIfClass.SuspendLayout() + Me.pnIfColor.SuspendLayout() Me.pnIfResult.SuspendLayout() Me.pnIfSerial.SuspendLayout() CType(Me.nudIfSerial, System.ComponentModel.ISupportInitialize).BeginInit() - Me.pnIfMoTy.SuspendLayout() - Me.pnIfType.SuspendLayout() - Me.pnIfModel.SuspendLayout() Me.pnIfDate.SuspendLayout() CType(Me.nudIfMonth, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.nudIfYear, System.ComponentModel.ISupportInitialize).BeginInit() @@ -482,8 +475,6 @@ Partial Class MainForm Me.pnDvResult.SuspendLayout() Me.pnDvSerial.SuspendLayout() CType(Me.nudDvSerial, System.ComponentModel.ISupportInitialize).BeginInit() - Me.pnDvMoTy.SuspendLayout() - Me.pnDvModel.SuspendLayout() Me.pnDvDate.SuspendLayout() CType(Me.nudDvMonth, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.nudDvYear, System.ComponentModel.ISupportInitialize).BeginInit() @@ -498,95 +489,24 @@ Partial Class MainForm Me.pnLoadTop.SuspendLayout() Me.SuspendLayout() ' - 'gbProdSelect - ' - Me.gbProdSelect.Controls.Add(Me.rdbEffect) - Me.gbProdSelect.Controls.Add(Me.rdbAlto) - Me.gbProdSelect.Controls.Add(Me.rdbMax) - Me.gbProdSelect.Controls.Add(Me.rdbDual) - Me.gbProdSelect.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbProdSelect.Location = New System.Drawing.Point(11, 6) - Me.gbProdSelect.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbProdSelect.Name = "gbProdSelect" - Me.gbProdSelect.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbProdSelect.Size = New System.Drawing.Size(499, 100) - Me.gbProdSelect.TabIndex = 0 - Me.gbProdSelect.TabStop = False - Me.gbProdSelect.Text = "제품선택" - ' - 'rdbEffect - ' - Me.rdbEffect.AutoSize = True - Me.rdbEffect.Font = New System.Drawing.Font("함초롬바탕", 12.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.rdbEffect.Location = New System.Drawing.Point(349, 41) - Me.rdbEffect.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbEffect.Name = "rdbEffect" - Me.rdbEffect.Size = New System.Drawing.Size(120, 33) - Me.rdbEffect.TabIndex = 3 - Me.rdbEffect.TabStop = True - Me.rdbEffect.Text = "EFFECT" - Me.rdbEffect.UseVisualStyleBackColor = True - ' - 'rdbAlto - ' - Me.rdbAlto.AutoSize = True - Me.rdbAlto.Font = New System.Drawing.Font("함초롬바탕", 12.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.rdbAlto.Location = New System.Drawing.Point(269, 41) - Me.rdbAlto.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbAlto.Name = "rdbAlto" - Me.rdbAlto.Size = New System.Drawing.Size(93, 33) - Me.rdbAlto.TabIndex = 2 - Me.rdbAlto.TabStop = True - Me.rdbAlto.Text = "ALTO" - Me.rdbAlto.UseVisualStyleBackColor = True - ' - 'rdbMax - ' - Me.rdbMax.AutoSize = True - Me.rdbMax.Font = New System.Drawing.Font("함초롬바탕", 12.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.rdbMax.Location = New System.Drawing.Point(143, 41) - Me.rdbMax.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbMax.Name = "rdbMax" - Me.rdbMax.Size = New System.Drawing.Size(143, 33) - Me.rdbMax.TabIndex = 1 - Me.rdbMax.TabStop = True - Me.rdbMax.Text = "MAXIMUM" - Me.rdbMax.UseVisualStyleBackColor = True - ' - 'rdbDual - ' - Me.rdbDual.AutoSize = True - Me.rdbDual.Font = New System.Drawing.Font("함초롬바탕", 12.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.rdbDual.Location = New System.Drawing.Point(5, 41) - Me.rdbDual.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbDual.Name = "rdbDual" - Me.rdbDual.Size = New System.Drawing.Size(163, 33) - Me.rdbDual.TabIndex = 0 - Me.rdbDual.TabStop = True - Me.rdbDual.Text = "DUALSONIC" - Me.rdbDual.UseVisualStyleBackColor = True - ' 'gbComport ' Me.gbComport.Controls.Add(Me.btnComport) Me.gbComport.Controls.Add(Me.cboComport) Me.gbComport.Controls.Add(Me.lbComport) Me.gbComport.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbComport.Location = New System.Drawing.Point(518, 9) - Me.gbComport.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbComport.Location = New System.Drawing.Point(453, 7) Me.gbComport.Name = "gbComport" - Me.gbComport.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbComport.Size = New System.Drawing.Size(402, 100) + Me.gbComport.Size = New System.Drawing.Size(352, 80) Me.gbComport.TabIndex = 1 Me.gbComport.TabStop = False Me.gbComport.Text = "통신설정" ' 'btnComport ' - Me.btnComport.Location = New System.Drawing.Point(275, 35) - Me.btnComport.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnComport.Location = New System.Drawing.Point(241, 28) Me.btnComport.Name = "btnComport" - Me.btnComport.Size = New System.Drawing.Size(86, 50) + Me.btnComport.Size = New System.Drawing.Size(75, 40) Me.btnComport.TabIndex = 2 Me.btnComport.Text = "검색" Me.btnComport.UseVisualStyleBackColor = True @@ -594,43 +514,60 @@ Partial Class MainForm 'cboComport ' Me.cboComport.FormattingEnabled = True - Me.cboComport.Location = New System.Drawing.Point(107, 39) - Me.cboComport.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.cboComport.Location = New System.Drawing.Point(94, 31) Me.cboComport.Name = "cboComport" - Me.cboComport.Size = New System.Drawing.Size(159, 40) + Me.cboComport.Size = New System.Drawing.Size(140, 32) Me.cboComport.TabIndex = 1 ' 'lbComport ' Me.lbComport.AutoSize = True - Me.lbComport.Location = New System.Drawing.Point(7, 45) + Me.lbComport.Location = New System.Drawing.Point(6, 36) Me.lbComport.Name = "lbComport" - Me.lbComport.Size = New System.Drawing.Size(106, 32) + Me.lbComport.Size = New System.Drawing.Size(82, 24) Me.lbComport.TabIndex = 0 Me.lbComport.Text = "통신포트" ' 'pnTop ' + Me.pnTop.Controls.Add(Me.gbModelSelect) Me.pnTop.Controls.Add(Me.gbOpOut) Me.pnTop.Controls.Add(Me.gbEtcOp) - Me.pnTop.Controls.Add(Me.gbProdSelect) Me.pnTop.Controls.Add(Me.gbComport) Me.pnTop.Location = New System.Drawing.Point(0, 0) - Me.pnTop.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.pnTop.Name = "pnTop" - Me.pnTop.Size = New System.Drawing.Size(1398, 112) + Me.pnTop.Size = New System.Drawing.Size(1223, 90) Me.pnTop.TabIndex = 2 ' + 'gbModelSelect + ' + Me.gbModelSelect.Controls.Add(Me.comboBoxModel) + Me.gbModelSelect.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.gbModelSelect.Location = New System.Drawing.Point(10, 8) + Me.gbModelSelect.Name = "gbModelSelect" + Me.gbModelSelect.Size = New System.Drawing.Size(437, 76) + Me.gbModelSelect.TabIndex = 4 + Me.gbModelSelect.TabStop = False + Me.gbModelSelect.Text = "제품선택" + ' + 'comboBoxModel + ' + Me.comboBoxModel.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.comboBoxModel.FormattingEnabled = True + Me.comboBoxModel.Location = New System.Drawing.Point(93, 28) + Me.comboBoxModel.Name = "comboBoxModel" + Me.comboBoxModel.Size = New System.Drawing.Size(297, 32) + Me.comboBoxModel.TabIndex = 94 + Me.comboBoxModel.Text = "Select!" + ' 'gbOpOut ' Me.gbOpOut.Controls.Add(Me.rdbUseTime) Me.gbOpOut.Controls.Add(Me.rdbDev) Me.gbOpOut.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbOpOut.Location = New System.Drawing.Point(1075, 6) - Me.gbOpOut.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbOpOut.Location = New System.Drawing.Point(941, 5) Me.gbOpOut.Name = "gbOpOut" - Me.gbOpOut.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbOpOut.Size = New System.Drawing.Size(307, 100) + Me.gbOpOut.Size = New System.Drawing.Size(269, 80) Me.gbOpOut.TabIndex = 2 Me.gbOpOut.TabStop = False Me.gbOpOut.Text = "설정 종류" @@ -639,10 +576,9 @@ Partial Class MainForm ' Me.rdbUseTime.AutoSize = True Me.rdbUseTime.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.rdbUseTime.Location = New System.Drawing.Point(26, 44) - Me.rdbUseTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbUseTime.Location = New System.Drawing.Point(23, 35) Me.rdbUseTime.Name = "rdbUseTime" - Me.rdbUseTime.Size = New System.Drawing.Size(134, 36) + Me.rdbUseTime.Size = New System.Drawing.Size(106, 28) Me.rdbUseTime.TabIndex = 1 Me.rdbUseTime.TabStop = True Me.rdbUseTime.Text = "사용 정보" @@ -652,10 +588,9 @@ Partial Class MainForm ' Me.rdbDev.AutoSize = True Me.rdbDev.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.rdbDev.Location = New System.Drawing.Point(163, 45) - Me.rdbDev.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.rdbDev.Location = New System.Drawing.Point(143, 36) Me.rdbDev.Name = "rdbDev" - Me.rdbDev.Size = New System.Drawing.Size(134, 36) + Me.rdbDev.Size = New System.Drawing.Size(106, 28) Me.rdbDev.TabIndex = 0 Me.rdbDev.TabStop = True Me.rdbDev.Text = "본체 정보" @@ -665,11 +600,9 @@ Partial Class MainForm ' Me.gbEtcOp.Controls.Add(Me.ckbDBUse) Me.gbEtcOp.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbEtcOp.Location = New System.Drawing.Point(927, 6) - Me.gbEtcOp.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbEtcOp.Location = New System.Drawing.Point(811, 5) Me.gbEtcOp.Name = "gbEtcOp" - Me.gbEtcOp.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbEtcOp.Size = New System.Drawing.Size(143, 100) + Me.gbEtcOp.Size = New System.Drawing.Size(125, 80) Me.gbEtcOp.TabIndex = 2 Me.gbEtcOp.TabStop = False Me.gbEtcOp.Text = "기타설정" @@ -677,10 +610,9 @@ Partial Class MainForm 'ckbDBUse ' Me.ckbDBUse.AutoSize = True - Me.ckbDBUse.Location = New System.Drawing.Point(23, 44) - Me.ckbDBUse.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.ckbDBUse.Location = New System.Drawing.Point(20, 35) Me.ckbDBUse.Name = "ckbDBUse" - Me.ckbDBUse.Size = New System.Drawing.Size(121, 36) + Me.ckbDBUse.Size = New System.Drawing.Size(97, 28) Me.ckbDBUse.TabIndex = 0 Me.ckbDBUse.Text = "DB 사용" Me.ckbDBUse.UseVisualStyleBackColor = True @@ -691,19 +623,17 @@ Partial Class MainForm Me.pnBottom.Controls.Add(Me.gbSetting) Me.pnBottom.Controls.Add(Me.gbRunTime) Me.pnBottom.Controls.Add(Me.gbDevice) - Me.pnBottom.Location = New System.Drawing.Point(0, 112) - Me.pnBottom.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnBottom.Location = New System.Drawing.Point(0, 90) Me.pnBottom.Name = "pnBottom" - Me.pnBottom.Size = New System.Drawing.Size(1398, 834) + Me.pnBottom.Size = New System.Drawing.Size(1223, 667) Me.pnBottom.TabIndex = 3 ' 'btnwrite ' Me.btnwrite.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnwrite.Location = New System.Drawing.Point(933, 645) - Me.btnwrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnwrite.Location = New System.Drawing.Point(816, 516) Me.btnwrite.Name = "btnwrite" - Me.btnwrite.Size = New System.Drawing.Size(450, 181) + Me.btnwrite.Size = New System.Drawing.Size(394, 145) Me.btnwrite.TabIndex = 2 Me.btnwrite.Text = "전체 읽기" Me.btnwrite.UseVisualStyleBackColor = True @@ -718,11 +648,9 @@ Partial Class MainForm Me.gbSetting.Controls.Add(Me.gbInfo) Me.gbSetting.Controls.Add(Me.gbAuth) Me.gbSetting.Font = New System.Drawing.Font("함초롬바탕", 15.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Underline), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbSetting.Location = New System.Drawing.Point(11, 6) - Me.gbSetting.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbSetting.Location = New System.Drawing.Point(10, 5) Me.gbSetting.Name = "gbSetting" - Me.gbSetting.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbSetting.Size = New System.Drawing.Size(909, 819) + Me.gbSetting.Size = New System.Drawing.Size(795, 655) Me.gbSetting.TabIndex = 0 Me.gbSetting.TabStop = False Me.gbSetting.Text = "카트리지 설정" @@ -733,11 +661,9 @@ Partial Class MainForm Me.gbMotor.Controls.Add(Me.pnMotor) Me.gbMotor.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbMotor.ForeColor = System.Drawing.Color.Black - Me.gbMotor.Location = New System.Drawing.Point(457, 425) - Me.gbMotor.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbMotor.Location = New System.Drawing.Point(400, 340) Me.gbMotor.Name = "gbMotor" - Me.gbMotor.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbMotor.Size = New System.Drawing.Size(434, 162) + Me.gbMotor.Size = New System.Drawing.Size(380, 130) Me.gbMotor.TabIndex = 58 Me.gbMotor.TabStop = False Me.gbMotor.Text = "TD 모터 설정" @@ -747,19 +673,17 @@ Partial Class MainForm Me.pnMtResult.Controls.Add(Me.btnMtWrite) Me.pnMtResult.Controls.Add(Me.btnMtRead) Me.pnMtResult.Controls.Add(Me.txbMtBox) - Me.pnMtResult.Location = New System.Drawing.Point(11, 88) - Me.pnMtResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMtResult.Location = New System.Drawing.Point(10, 70) Me.pnMtResult.Name = "pnMtResult" - Me.pnMtResult.Size = New System.Drawing.Size(411, 62) + Me.pnMtResult.Size = New System.Drawing.Size(360, 50) Me.pnMtResult.TabIndex = 47 ' 'btnMtWrite ' Me.btnMtWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnMtWrite.Location = New System.Drawing.Point(286, 6) - Me.btnMtWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMtWrite.Location = New System.Drawing.Point(250, 5) Me.btnMtWrite.Name = "btnMtWrite" - Me.btnMtWrite.Size = New System.Drawing.Size(120, 50) + Me.btnMtWrite.Size = New System.Drawing.Size(105, 40) Me.btnMtWrite.TabIndex = 47 Me.btnMtWrite.Text = "쓰기" Me.btnMtWrite.UseVisualStyleBackColor = True @@ -767,10 +691,9 @@ Partial Class MainForm 'btnMtRead ' Me.btnMtRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnMtRead.Location = New System.Drawing.Point(166, 6) - Me.btnMtRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMtRead.Location = New System.Drawing.Point(145, 5) Me.btnMtRead.Name = "btnMtRead" - Me.btnMtRead.Size = New System.Drawing.Size(120, 50) + Me.btnMtRead.Size = New System.Drawing.Size(105, 40) Me.btnMtRead.TabIndex = 46 Me.btnMtRead.Text = "읽기" Me.btnMtRead.UseVisualStyleBackColor = True @@ -780,10 +703,9 @@ Partial Class MainForm Me.txbMtBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbMtBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbMtBox.ForeColor = System.Drawing.Color.White - Me.txbMtBox.Location = New System.Drawing.Point(11, 15) - Me.txbMtBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMtBox.Location = New System.Drawing.Point(10, 12) Me.txbMtBox.Name = "txbMtBox" - Me.txbMtBox.Size = New System.Drawing.Size(148, 35) + Me.txbMtBox.Size = New System.Drawing.Size(130, 29) Me.txbMtBox.TabIndex = 45 Me.txbMtBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbMtBox.Visible = False @@ -792,28 +714,26 @@ Partial Class MainForm ' Me.pnMotor.Controls.Add(Me.txbMotor) Me.pnMotor.Controls.Add(Me.lbMotor) - Me.pnMotor.Location = New System.Drawing.Point(11, 38) - Me.pnMotor.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMotor.Location = New System.Drawing.Point(10, 30) Me.pnMotor.Name = "pnMotor" - Me.pnMotor.Size = New System.Drawing.Size(411, 50) + Me.pnMotor.Size = New System.Drawing.Size(360, 40) Me.pnMotor.TabIndex = 45 ' 'txbMotor ' Me.txbMotor.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMotor.Location = New System.Drawing.Point(166, 6) - Me.txbMotor.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMotor.Location = New System.Drawing.Point(145, 5) Me.txbMotor.Name = "txbMotor" - Me.txbMotor.Size = New System.Drawing.Size(234, 38) + Me.txbMotor.Size = New System.Drawing.Size(205, 32) Me.txbMotor.TabIndex = 1 ' 'lbMotor ' Me.lbMotor.AutoSize = True Me.lbMotor.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMotor.Location = New System.Drawing.Point(26, 9) + Me.lbMotor.Location = New System.Drawing.Point(23, 7) Me.lbMotor.Name = "lbMotor" - Me.lbMotor.Size = New System.Drawing.Size(106, 32) + Me.lbMotor.Size = New System.Drawing.Size(82, 24) Me.lbMotor.TabIndex = 0 Me.lbMotor.Text = "모터이동" ' @@ -824,11 +744,9 @@ Partial Class MainForm Me.gbShot.Controls.Add(Me.pnShot) Me.gbShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbShot.ForeColor = System.Drawing.Color.Black - Me.gbShot.Location = New System.Drawing.Point(457, 594) - Me.gbShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbShot.Location = New System.Drawing.Point(400, 475) Me.gbShot.Name = "gbShot" - Me.gbShot.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbShot.Size = New System.Drawing.Size(434, 212) + Me.gbShot.Size = New System.Drawing.Size(380, 170) Me.gbShot.TabIndex = 57 Me.gbShot.TabStop = False Me.gbShot.Text = "Shot Count 설정" @@ -838,19 +756,17 @@ Partial Class MainForm Me.pnShResult.Controls.Add(Me.btnShWrite) Me.pnShResult.Controls.Add(Me.btnShRead) Me.pnShResult.Controls.Add(Me.txbShotBox) - Me.pnShResult.Location = New System.Drawing.Point(11, 138) - Me.pnShResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnShResult.Location = New System.Drawing.Point(10, 110) Me.pnShResult.Name = "pnShResult" - Me.pnShResult.Size = New System.Drawing.Size(411, 62) + Me.pnShResult.Size = New System.Drawing.Size(360, 50) Me.pnShResult.TabIndex = 47 ' 'btnShWrite ' Me.btnShWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnShWrite.Location = New System.Drawing.Point(286, 6) - Me.btnShWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnShWrite.Location = New System.Drawing.Point(250, 5) Me.btnShWrite.Name = "btnShWrite" - Me.btnShWrite.Size = New System.Drawing.Size(120, 50) + Me.btnShWrite.Size = New System.Drawing.Size(105, 40) Me.btnShWrite.TabIndex = 47 Me.btnShWrite.Text = "쓰기" Me.btnShWrite.UseVisualStyleBackColor = True @@ -858,10 +774,9 @@ Partial Class MainForm 'btnShRead ' Me.btnShRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnShRead.Location = New System.Drawing.Point(166, 6) - Me.btnShRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnShRead.Location = New System.Drawing.Point(145, 5) Me.btnShRead.Name = "btnShRead" - Me.btnShRead.Size = New System.Drawing.Size(120, 50) + Me.btnShRead.Size = New System.Drawing.Size(105, 40) Me.btnShRead.TabIndex = 46 Me.btnShRead.Text = "읽기" Me.btnShRead.UseVisualStyleBackColor = True @@ -871,10 +786,9 @@ Partial Class MainForm Me.txbShotBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbShotBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbShotBox.ForeColor = System.Drawing.Color.White - Me.txbShotBox.Location = New System.Drawing.Point(11, 15) - Me.txbShotBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbShotBox.Location = New System.Drawing.Point(10, 12) Me.txbShotBox.Name = "txbShotBox" - Me.txbShotBox.Size = New System.Drawing.Size(148, 35) + Me.txbShotBox.Size = New System.Drawing.Size(130, 29) Me.txbShotBox.TabIndex = 45 Me.txbShotBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbShotBox.Visible = False @@ -883,28 +797,26 @@ Partial Class MainForm ' Me.pnMaxShot.Controls.Add(Me.txbMaxShot) Me.pnMaxShot.Controls.Add(Me.lbMaxShot) - Me.pnMaxShot.Location = New System.Drawing.Point(11, 88) - Me.pnMaxShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMaxShot.Location = New System.Drawing.Point(10, 70) Me.pnMaxShot.Name = "pnMaxShot" - Me.pnMaxShot.Size = New System.Drawing.Size(411, 50) + Me.pnMaxShot.Size = New System.Drawing.Size(360, 40) Me.pnMaxShot.TabIndex = 46 ' 'txbMaxShot ' Me.txbMaxShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMaxShot.Location = New System.Drawing.Point(166, 6) - Me.txbMaxShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMaxShot.Location = New System.Drawing.Point(145, 5) Me.txbMaxShot.Name = "txbMaxShot" - Me.txbMaxShot.Size = New System.Drawing.Size(234, 38) + Me.txbMaxShot.Size = New System.Drawing.Size(205, 32) Me.txbMaxShot.TabIndex = 1 ' 'lbMaxShot ' Me.lbMaxShot.AutoSize = True Me.lbMaxShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMaxShot.Location = New System.Drawing.Point(26, 9) + Me.lbMaxShot.Location = New System.Drawing.Point(23, 7) Me.lbMaxShot.Name = "lbMaxShot" - Me.lbMaxShot.Size = New System.Drawing.Size(106, 32) + Me.lbMaxShot.Size = New System.Drawing.Size(82, 24) Me.lbMaxShot.TabIndex = 0 Me.lbMaxShot.Text = "전체샷수" ' @@ -912,28 +824,26 @@ Partial Class MainForm ' Me.pnShot.Controls.Add(Me.txbShot) Me.pnShot.Controls.Add(Me.lbShot) - Me.pnShot.Location = New System.Drawing.Point(11, 38) - Me.pnShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnShot.Location = New System.Drawing.Point(10, 30) Me.pnShot.Name = "pnShot" - Me.pnShot.Size = New System.Drawing.Size(411, 50) + Me.pnShot.Size = New System.Drawing.Size(360, 40) Me.pnShot.TabIndex = 45 ' 'txbShot ' Me.txbShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbShot.Location = New System.Drawing.Point(166, 6) - Me.txbShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbShot.Location = New System.Drawing.Point(145, 5) Me.txbShot.Name = "txbShot" - Me.txbShot.Size = New System.Drawing.Size(234, 38) + Me.txbShot.Size = New System.Drawing.Size(205, 32) Me.txbShot.TabIndex = 1 ' 'lbShot ' Me.lbShot.AutoSize = True Me.lbShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbShot.Location = New System.Drawing.Point(26, 9) + Me.lbShot.Location = New System.Drawing.Point(23, 7) Me.lbShot.Name = "lbShot" - Me.lbShot.Size = New System.Drawing.Size(106, 32) + Me.lbShot.Size = New System.Drawing.Size(82, 24) Me.lbShot.TabIndex = 0 Me.lbShot.Text = "남은샷수" ' @@ -944,11 +854,9 @@ Partial Class MainForm Me.gbFreqPwr.Controls.Add(Me.pnFreq) Me.gbFreqPwr.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbFreqPwr.ForeColor = System.Drawing.Color.Black - Me.gbFreqPwr.Location = New System.Drawing.Point(457, 212) - Me.gbFreqPwr.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbFreqPwr.Location = New System.Drawing.Point(400, 170) Me.gbFreqPwr.Name = "gbFreqPwr" - Me.gbFreqPwr.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbFreqPwr.Size = New System.Drawing.Size(434, 212) + Me.gbFreqPwr.Size = New System.Drawing.Size(380, 170) Me.gbFreqPwr.TabIndex = 56 Me.gbFreqPwr.TabStop = False Me.gbFreqPwr.Text = "주파수 및 파워 설정" @@ -958,19 +866,17 @@ Partial Class MainForm Me.pnFPResult.Controls.Add(Me.btnFPWrite) Me.pnFPResult.Controls.Add(Me.btnFPRead) Me.pnFPResult.Controls.Add(Me.txbFPBox) - Me.pnFPResult.Location = New System.Drawing.Point(11, 138) - Me.pnFPResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnFPResult.Location = New System.Drawing.Point(10, 110) Me.pnFPResult.Name = "pnFPResult" - Me.pnFPResult.Size = New System.Drawing.Size(411, 62) + Me.pnFPResult.Size = New System.Drawing.Size(360, 50) Me.pnFPResult.TabIndex = 47 ' 'btnFPWrite ' Me.btnFPWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnFPWrite.Location = New System.Drawing.Point(286, 6) - Me.btnFPWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnFPWrite.Location = New System.Drawing.Point(250, 5) Me.btnFPWrite.Name = "btnFPWrite" - Me.btnFPWrite.Size = New System.Drawing.Size(120, 50) + Me.btnFPWrite.Size = New System.Drawing.Size(105, 40) Me.btnFPWrite.TabIndex = 47 Me.btnFPWrite.Text = "쓰기" Me.btnFPWrite.UseVisualStyleBackColor = True @@ -978,10 +884,9 @@ Partial Class MainForm 'btnFPRead ' Me.btnFPRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnFPRead.Location = New System.Drawing.Point(166, 6) - Me.btnFPRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnFPRead.Location = New System.Drawing.Point(145, 5) Me.btnFPRead.Name = "btnFPRead" - Me.btnFPRead.Size = New System.Drawing.Size(120, 50) + Me.btnFPRead.Size = New System.Drawing.Size(105, 40) Me.btnFPRead.TabIndex = 46 Me.btnFPRead.Text = "읽기" Me.btnFPRead.UseVisualStyleBackColor = True @@ -991,10 +896,9 @@ Partial Class MainForm Me.txbFPBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbFPBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbFPBox.ForeColor = System.Drawing.Color.White - Me.txbFPBox.Location = New System.Drawing.Point(11, 15) - Me.txbFPBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbFPBox.Location = New System.Drawing.Point(10, 12) Me.txbFPBox.Name = "txbFPBox" - Me.txbFPBox.Size = New System.Drawing.Size(148, 35) + Me.txbFPBox.Size = New System.Drawing.Size(130, 29) Me.txbFPBox.TabIndex = 45 Me.txbFPBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbFPBox.Visible = False @@ -1003,28 +907,26 @@ Partial Class MainForm ' Me.pnPower.Controls.Add(Me.txbPower) Me.pnPower.Controls.Add(Me.lbPower) - Me.pnPower.Location = New System.Drawing.Point(11, 88) - Me.pnPower.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnPower.Location = New System.Drawing.Point(10, 70) Me.pnPower.Name = "pnPower" - Me.pnPower.Size = New System.Drawing.Size(411, 50) + Me.pnPower.Size = New System.Drawing.Size(360, 40) Me.pnPower.TabIndex = 46 ' 'txbPower ' Me.txbPower.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbPower.Location = New System.Drawing.Point(166, 6) - Me.txbPower.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPower.Location = New System.Drawing.Point(145, 5) Me.txbPower.Name = "txbPower" - Me.txbPower.Size = New System.Drawing.Size(234, 38) + Me.txbPower.Size = New System.Drawing.Size(205, 32) Me.txbPower.TabIndex = 1 ' 'lbPower ' Me.lbPower.AutoSize = True Me.lbPower.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbPower.Location = New System.Drawing.Point(67, 9) + Me.lbPower.Location = New System.Drawing.Point(59, 7) Me.lbPower.Name = "lbPower" - Me.lbPower.Size = New System.Drawing.Size(60, 32) + Me.lbPower.Size = New System.Drawing.Size(46, 24) Me.lbPower.TabIndex = 0 Me.lbPower.Text = "파워" ' @@ -1032,28 +934,26 @@ Partial Class MainForm ' Me.pnFreq.Controls.Add(Me.txbFreq) Me.pnFreq.Controls.Add(Me.lbFreq) - Me.pnFreq.Location = New System.Drawing.Point(11, 38) - Me.pnFreq.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnFreq.Location = New System.Drawing.Point(10, 30) Me.pnFreq.Name = "pnFreq" - Me.pnFreq.Size = New System.Drawing.Size(411, 50) + Me.pnFreq.Size = New System.Drawing.Size(360, 40) Me.pnFreq.TabIndex = 45 ' 'txbFreq ' Me.txbFreq.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbFreq.Location = New System.Drawing.Point(166, 6) - Me.txbFreq.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbFreq.Location = New System.Drawing.Point(145, 5) Me.txbFreq.Name = "txbFreq" - Me.txbFreq.Size = New System.Drawing.Size(234, 38) + Me.txbFreq.Size = New System.Drawing.Size(205, 32) Me.txbFreq.TabIndex = 1 ' 'lbFreq ' Me.lbFreq.AutoSize = True Me.lbFreq.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbFreq.Location = New System.Drawing.Point(47, 9) + Me.lbFreq.Location = New System.Drawing.Point(41, 7) Me.lbFreq.Name = "lbFreq" - Me.lbFreq.Size = New System.Drawing.Size(83, 32) + Me.lbFreq.Size = New System.Drawing.Size(64, 24) Me.lbFreq.TabIndex = 0 Me.lbFreq.Text = "주파수" ' @@ -1063,11 +963,9 @@ Partial Class MainForm Me.gbTD.Controls.Add(Me.pnTDSerial) Me.gbTD.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbTD.ForeColor = System.Drawing.Color.Black - Me.gbTD.Location = New System.Drawing.Point(457, 44) - Me.gbTD.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbTD.Location = New System.Drawing.Point(400, 35) Me.gbTD.Name = "gbTD" - Me.gbTD.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbTD.Size = New System.Drawing.Size(434, 162) + Me.gbTD.Size = New System.Drawing.Size(380, 130) Me.gbTD.TabIndex = 55 Me.gbTD.TabStop = False Me.gbTD.Text = "TD 번호 설정" @@ -1077,19 +975,17 @@ Partial Class MainForm Me.pnTdResult.Controls.Add(Me.btnTdWrite) Me.pnTdResult.Controls.Add(Me.btnTdRead) Me.pnTdResult.Controls.Add(Me.txbTDBox) - Me.pnTdResult.Location = New System.Drawing.Point(11, 88) - Me.pnTdResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnTdResult.Location = New System.Drawing.Point(10, 70) Me.pnTdResult.Name = "pnTdResult" - Me.pnTdResult.Size = New System.Drawing.Size(411, 62) + Me.pnTdResult.Size = New System.Drawing.Size(360, 50) Me.pnTdResult.TabIndex = 47 ' 'btnTdWrite ' Me.btnTdWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnTdWrite.Location = New System.Drawing.Point(286, 6) - Me.btnTdWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnTdWrite.Location = New System.Drawing.Point(250, 5) Me.btnTdWrite.Name = "btnTdWrite" - Me.btnTdWrite.Size = New System.Drawing.Size(120, 50) + Me.btnTdWrite.Size = New System.Drawing.Size(105, 40) Me.btnTdWrite.TabIndex = 47 Me.btnTdWrite.Text = "쓰기" Me.btnTdWrite.UseVisualStyleBackColor = True @@ -1097,10 +993,9 @@ Partial Class MainForm 'btnTdRead ' Me.btnTdRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnTdRead.Location = New System.Drawing.Point(166, 6) - Me.btnTdRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnTdRead.Location = New System.Drawing.Point(145, 5) Me.btnTdRead.Name = "btnTdRead" - Me.btnTdRead.Size = New System.Drawing.Size(120, 50) + Me.btnTdRead.Size = New System.Drawing.Size(105, 40) Me.btnTdRead.TabIndex = 46 Me.btnTdRead.Text = "읽기" Me.btnTdRead.UseVisualStyleBackColor = True @@ -1110,10 +1005,9 @@ Partial Class MainForm Me.txbTDBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbTDBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbTDBox.ForeColor = System.Drawing.Color.White - Me.txbTDBox.Location = New System.Drawing.Point(11, 15) - Me.txbTDBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbTDBox.Location = New System.Drawing.Point(10, 12) Me.txbTDBox.Name = "txbTDBox" - Me.txbTDBox.Size = New System.Drawing.Size(148, 35) + Me.txbTDBox.Size = New System.Drawing.Size(130, 29) Me.txbTDBox.TabIndex = 45 Me.txbTDBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbTDBox.Visible = False @@ -1122,28 +1016,26 @@ Partial Class MainForm ' Me.pnTDSerial.Controls.Add(Me.txbTDSerial) Me.pnTDSerial.Controls.Add(Me.lbTDSerial) - Me.pnTDSerial.Location = New System.Drawing.Point(11, 38) - Me.pnTDSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnTDSerial.Location = New System.Drawing.Point(10, 30) Me.pnTDSerial.Name = "pnTDSerial" - Me.pnTDSerial.Size = New System.Drawing.Size(411, 50) + Me.pnTDSerial.Size = New System.Drawing.Size(360, 40) Me.pnTDSerial.TabIndex = 45 ' 'txbTDSerial ' Me.txbTDSerial.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbTDSerial.Location = New System.Drawing.Point(166, 6) - Me.txbTDSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbTDSerial.Location = New System.Drawing.Point(145, 5) Me.txbTDSerial.Name = "txbTDSerial" - Me.txbTDSerial.Size = New System.Drawing.Size(234, 38) + Me.txbTDSerial.Size = New System.Drawing.Size(205, 32) Me.txbTDSerial.TabIndex = 1 ' 'lbTDSerial ' Me.lbTDSerial.AutoSize = True Me.lbTDSerial.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbTDSerial.Location = New System.Drawing.Point(6, 9) + Me.lbTDSerial.Location = New System.Drawing.Point(5, 7) Me.lbTDSerial.Name = "lbTDSerial" - Me.lbTDSerial.Size = New System.Drawing.Size(129, 32) + Me.lbTDSerial.Size = New System.Drawing.Size(100, 24) Me.lbTDSerial.TabIndex = 0 Me.lbTDSerial.Text = "시리얼번호" ' @@ -1154,11 +1046,9 @@ Partial Class MainForm Me.gbArea.Controls.Add(Me.pnAbroad) Me.gbArea.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbArea.ForeColor = System.Drawing.Color.Black - Me.gbArea.Location = New System.Drawing.Point(11, 594) - Me.gbArea.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbArea.Location = New System.Drawing.Point(9, 498) Me.gbArea.Name = "gbArea" - Me.gbArea.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbArea.Size = New System.Drawing.Size(434, 212) + Me.gbArea.Size = New System.Drawing.Size(380, 155) Me.gbArea.TabIndex = 54 Me.gbArea.TabStop = False Me.gbArea.Text = "지역 코드 설정" @@ -1168,19 +1058,17 @@ Partial Class MainForm Me.pnArResult.Controls.Add(Me.btnArWrite) Me.pnArResult.Controls.Add(Me.btnArRead) Me.pnArResult.Controls.Add(Me.txbAreaBox) - Me.pnArResult.Location = New System.Drawing.Point(11, 138) - Me.pnArResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnArResult.Location = New System.Drawing.Point(10, 106) Me.pnArResult.Name = "pnArResult" - Me.pnArResult.Size = New System.Drawing.Size(411, 62) + Me.pnArResult.Size = New System.Drawing.Size(360, 50) Me.pnArResult.TabIndex = 47 ' 'btnArWrite ' Me.btnArWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnArWrite.Location = New System.Drawing.Point(286, 6) - Me.btnArWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnArWrite.Location = New System.Drawing.Point(250, 5) Me.btnArWrite.Name = "btnArWrite" - Me.btnArWrite.Size = New System.Drawing.Size(120, 50) + Me.btnArWrite.Size = New System.Drawing.Size(105, 40) Me.btnArWrite.TabIndex = 47 Me.btnArWrite.Text = "쓰기" Me.btnArWrite.UseVisualStyleBackColor = True @@ -1188,10 +1076,9 @@ Partial Class MainForm 'btnArRead ' Me.btnArRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnArRead.Location = New System.Drawing.Point(166, 6) - Me.btnArRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnArRead.Location = New System.Drawing.Point(145, 5) Me.btnArRead.Name = "btnArRead" - Me.btnArRead.Size = New System.Drawing.Size(120, 50) + Me.btnArRead.Size = New System.Drawing.Size(105, 40) Me.btnArRead.TabIndex = 46 Me.btnArRead.Text = "읽기" Me.btnArRead.UseVisualStyleBackColor = True @@ -1201,10 +1088,9 @@ Partial Class MainForm Me.txbAreaBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbAreaBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbAreaBox.ForeColor = System.Drawing.Color.White - Me.txbAreaBox.Location = New System.Drawing.Point(11, 15) - Me.txbAreaBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbAreaBox.Location = New System.Drawing.Point(10, 12) Me.txbAreaBox.Name = "txbAreaBox" - Me.txbAreaBox.Size = New System.Drawing.Size(148, 35) + Me.txbAreaBox.Size = New System.Drawing.Size(130, 29) Me.txbAreaBox.TabIndex = 45 Me.txbAreaBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbAreaBox.Visible = False @@ -1213,28 +1099,26 @@ Partial Class MainForm ' Me.pnAgency.Controls.Add(Me.txbAgency) Me.pnAgency.Controls.Add(Me.lbAgency) - Me.pnAgency.Location = New System.Drawing.Point(11, 88) - Me.pnAgency.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnAgency.Location = New System.Drawing.Point(9, 66) Me.pnAgency.Name = "pnAgency" - Me.pnAgency.Size = New System.Drawing.Size(411, 50) + Me.pnAgency.Size = New System.Drawing.Size(360, 40) Me.pnAgency.TabIndex = 46 ' 'txbAgency ' Me.txbAgency.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbAgency.Location = New System.Drawing.Point(166, 6) - Me.txbAgency.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbAgency.Location = New System.Drawing.Point(145, 5) Me.txbAgency.Name = "txbAgency" - Me.txbAgency.Size = New System.Drawing.Size(234, 38) + Me.txbAgency.Size = New System.Drawing.Size(205, 32) Me.txbAgency.TabIndex = 1 ' 'lbAgency ' Me.lbAgency.AutoSize = True Me.lbAgency.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbAgency.Location = New System.Drawing.Point(6, 9) + Me.lbAgency.Location = New System.Drawing.Point(5, 7) Me.lbAgency.Name = "lbAgency" - Me.lbAgency.Size = New System.Drawing.Size(129, 32) + Me.lbAgency.Size = New System.Drawing.Size(100, 24) Me.lbAgency.TabIndex = 0 Me.lbAgency.Text = "대리점코드" ' @@ -1242,67 +1126,180 @@ Partial Class MainForm ' Me.pnAbroad.Controls.Add(Me.txbAbroad) Me.pnAbroad.Controls.Add(Me.lbAbroad) - Me.pnAbroad.Location = New System.Drawing.Point(11, 38) - Me.pnAbroad.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnAbroad.Location = New System.Drawing.Point(10, 27) Me.pnAbroad.Name = "pnAbroad" - Me.pnAbroad.Size = New System.Drawing.Size(411, 50) + Me.pnAbroad.Size = New System.Drawing.Size(360, 40) Me.pnAbroad.TabIndex = 45 ' 'txbAbroad ' Me.txbAbroad.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbAbroad.Location = New System.Drawing.Point(166, 6) - Me.txbAbroad.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbAbroad.Location = New System.Drawing.Point(145, 5) Me.txbAbroad.Name = "txbAbroad" - Me.txbAbroad.Size = New System.Drawing.Size(234, 38) + Me.txbAbroad.Size = New System.Drawing.Size(205, 32) Me.txbAbroad.TabIndex = 1 ' 'lbAbroad ' Me.lbAbroad.AutoSize = True Me.lbAbroad.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbAbroad.Location = New System.Drawing.Point(26, 9) + Me.lbAbroad.Location = New System.Drawing.Point(23, 7) Me.lbAbroad.Name = "lbAbroad" - Me.lbAbroad.Size = New System.Drawing.Size(106, 32) + Me.lbAbroad.Size = New System.Drawing.Size(82, 24) Me.lbAbroad.TabIndex = 0 Me.lbAbroad.Text = "국가코드" ' 'gbInfo ' + Me.gbInfo.Controls.Add(Me.pnlIfVersion) + Me.gbInfo.Controls.Add(Me.pnIfType) + Me.gbInfo.Controls.Add(Me.pnlIfClass) + Me.gbInfo.Controls.Add(Me.pnIfColor) Me.gbInfo.Controls.Add(Me.pnIfResult) Me.gbInfo.Controls.Add(Me.pnIfSerial) - Me.gbInfo.Controls.Add(Me.pnIfMoTy) Me.gbInfo.Controls.Add(Me.pnIfDate) Me.gbInfo.Controls.Add(Me.pnIfCode) Me.gbInfo.Controls.Add(Me.pnIfNumber) Me.gbInfo.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbInfo.Location = New System.Drawing.Point(11, 156) - Me.gbInfo.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbInfo.Location = New System.Drawing.Point(9, 96) Me.gbInfo.Name = "gbInfo" - Me.gbInfo.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbInfo.Size = New System.Drawing.Size(434, 412) + Me.gbInfo.Size = New System.Drawing.Size(380, 396) Me.gbInfo.TabIndex = 52 Me.gbInfo.TabStop = False Me.gbInfo.Text = "제품 정보 설정" ' + 'pnlIfVersion + ' + Me.pnlIfVersion.Controls.Add(Me.comboBoxVersion) + Me.pnlIfVersion.Controls.Add(Me.Label4) + Me.pnlIfVersion.Location = New System.Drawing.Point(10, 261) + Me.pnlIfVersion.Name = "pnlIfVersion" + Me.pnlIfVersion.Size = New System.Drawing.Size(360, 40) + Me.pnlIfVersion.TabIndex = 9 + ' + 'comboBoxVersion + ' + Me.comboBoxVersion.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.comboBoxVersion.FormattingEnabled = True + Me.comboBoxVersion.Location = New System.Drawing.Point(144, 4) + Me.comboBoxVersion.Name = "comboBoxVersion" + Me.comboBoxVersion.Size = New System.Drawing.Size(206, 32) + Me.comboBoxVersion.TabIndex = 98 + Me.comboBoxVersion.Text = "Select!" + ' + 'Label4 + ' + Me.Label4.AutoSize = True + Me.Label4.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.Label4.Location = New System.Drawing.Point(5, 7) + Me.Label4.Name = "Label4" + Me.Label4.Size = New System.Drawing.Size(46, 24) + Me.Label4.TabIndex = 0 + Me.Label4.Text = "버전" + ' + 'pnIfType + ' + Me.pnIfType.Controls.Add(Me.comboBoxType) + Me.pnIfType.Controls.Add(Me.lbType) + Me.pnIfType.Location = New System.Drawing.Point(10, 144) + Me.pnIfType.Name = "pnIfType" + Me.pnIfType.Size = New System.Drawing.Size(360, 40) + Me.pnIfType.TabIndex = 8 + ' + 'comboBoxType + ' + Me.comboBoxType.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.comboBoxType.FormattingEnabled = True + Me.comboBoxType.Location = New System.Drawing.Point(144, 4) + Me.comboBoxType.Name = "comboBoxType" + Me.comboBoxType.Size = New System.Drawing.Size(206, 32) + Me.comboBoxType.TabIndex = 97 + Me.comboBoxType.Text = "Select!" + ' + 'lbType + ' + Me.lbType.AutoSize = True + Me.lbType.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.lbType.Location = New System.Drawing.Point(5, 7) + Me.lbType.Name = "lbType" + Me.lbType.Size = New System.Drawing.Size(82, 24) + Me.lbType.TabIndex = 0 + Me.lbType.Text = "타입종류" + ' + 'pnlIfClass + ' + Me.pnlIfClass.Controls.Add(Me.comboBoxClass) + Me.pnlIfClass.Controls.Add(Me.Label2) + Me.pnlIfClass.Location = New System.Drawing.Point(10, 221) + Me.pnlIfClass.Name = "pnlIfClass" + Me.pnlIfClass.Size = New System.Drawing.Size(360, 40) + Me.pnlIfClass.TabIndex = 7 + ' + 'comboBoxClass + ' + Me.comboBoxClass.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.comboBoxClass.FormattingEnabled = True + Me.comboBoxClass.Location = New System.Drawing.Point(144, 5) + Me.comboBoxClass.Name = "comboBoxClass" + Me.comboBoxClass.Size = New System.Drawing.Size(206, 32) + Me.comboBoxClass.TabIndex = 96 + Me.comboBoxClass.Text = "Select!" + ' + 'Label2 + ' + Me.Label2.AutoSize = True + Me.Label2.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.Label2.Location = New System.Drawing.Point(5, 7) + Me.Label2.Name = "Label2" + Me.Label2.Size = New System.Drawing.Size(82, 24) + Me.Label2.TabIndex = 0 + Me.Label2.Text = "유통구분" + ' + 'pnIfColor + ' + Me.pnIfColor.Controls.Add(Me.comboBoxColor) + Me.pnIfColor.Controls.Add(Me.Label1) + Me.pnIfColor.Location = New System.Drawing.Point(10, 184) + Me.pnIfColor.Name = "pnIfColor" + Me.pnIfColor.Size = New System.Drawing.Size(360, 40) + Me.pnIfColor.TabIndex = 6 + ' + 'comboBoxColor + ' + Me.comboBoxColor.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.comboBoxColor.FormattingEnabled = True + Me.comboBoxColor.Location = New System.Drawing.Point(144, 5) + Me.comboBoxColor.Name = "comboBoxColor" + Me.comboBoxColor.Size = New System.Drawing.Size(206, 32) + Me.comboBoxColor.TabIndex = 95 + Me.comboBoxColor.Text = "Select!" + ' + 'Label1 + ' + Me.Label1.AutoSize = True + Me.Label1.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) + Me.Label1.Location = New System.Drawing.Point(5, 7) + Me.Label1.Name = "Label1" + Me.Label1.Size = New System.Drawing.Size(46, 24) + Me.Label1.TabIndex = 0 + Me.Label1.Text = "색상" + ' 'pnIfResult ' Me.pnIfResult.Controls.Add(Me.btnIfWrite) Me.pnIfResult.Controls.Add(Me.btnIfRead) Me.pnIfResult.Controls.Add(Me.txbInfoBox) - Me.pnIfResult.Location = New System.Drawing.Point(11, 338) - Me.pnIfResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIfResult.Location = New System.Drawing.Point(10, 338) Me.pnIfResult.Name = "pnIfResult" - Me.pnIfResult.Size = New System.Drawing.Size(411, 62) + Me.pnIfResult.Size = New System.Drawing.Size(360, 50) Me.pnIfResult.TabIndex = 5 ' 'btnIfWrite ' Me.btnIfWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnIfWrite.Location = New System.Drawing.Point(286, 6) - Me.btnIfWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnIfWrite.Location = New System.Drawing.Point(250, 5) Me.btnIfWrite.Name = "btnIfWrite" - Me.btnIfWrite.Size = New System.Drawing.Size(120, 50) + Me.btnIfWrite.Size = New System.Drawing.Size(105, 40) Me.btnIfWrite.TabIndex = 47 Me.btnIfWrite.Text = "쓰기" Me.btnIfWrite.UseVisualStyleBackColor = True @@ -1310,10 +1307,9 @@ Partial Class MainForm 'btnIfRead ' Me.btnIfRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnIfRead.Location = New System.Drawing.Point(166, 6) - Me.btnIfRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnIfRead.Location = New System.Drawing.Point(145, 5) Me.btnIfRead.Name = "btnIfRead" - Me.btnIfRead.Size = New System.Drawing.Size(120, 50) + Me.btnIfRead.Size = New System.Drawing.Size(105, 40) Me.btnIfRead.TabIndex = 46 Me.btnIfRead.Text = "읽기" Me.btnIfRead.UseVisualStyleBackColor = True @@ -1323,10 +1319,9 @@ Partial Class MainForm Me.txbInfoBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbInfoBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbInfoBox.ForeColor = System.Drawing.Color.White - Me.txbInfoBox.Location = New System.Drawing.Point(11, 15) - Me.txbInfoBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbInfoBox.Location = New System.Drawing.Point(10, 12) Me.txbInfoBox.Name = "txbInfoBox" - Me.txbInfoBox.Size = New System.Drawing.Size(148, 35) + Me.txbInfoBox.Size = New System.Drawing.Size(130, 29) Me.txbInfoBox.TabIndex = 45 Me.txbInfoBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbInfoBox.Visible = False @@ -1335,157 +1330,29 @@ Partial Class MainForm ' Me.pnIfSerial.Controls.Add(Me.nudIfSerial) Me.pnIfSerial.Controls.Add(Me.lbIfSerial) - Me.pnIfSerial.Location = New System.Drawing.Point(11, 288) - Me.pnIfSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIfSerial.Location = New System.Drawing.Point(10, 298) Me.pnIfSerial.Name = "pnIfSerial" - Me.pnIfSerial.Size = New System.Drawing.Size(411, 50) + Me.pnIfSerial.Size = New System.Drawing.Size(360, 40) Me.pnIfSerial.TabIndex = 4 ' 'nudIfSerial ' - Me.nudIfSerial.Location = New System.Drawing.Point(166, 6) - Me.nudIfSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.nudIfSerial.Location = New System.Drawing.Point(145, 5) + Me.nudIfSerial.Maximum = New Decimal(New Integer() {1000000, 0, 0, 0}) Me.nudIfSerial.Name = "nudIfSerial" - Me.nudIfSerial.Size = New System.Drawing.Size(234, 38) + Me.nudIfSerial.Size = New System.Drawing.Size(205, 32) Me.nudIfSerial.TabIndex = 10 ' 'lbIfSerial ' Me.lbIfSerial.AutoSize = True Me.lbIfSerial.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbIfSerial.Location = New System.Drawing.Point(6, 9) + Me.lbIfSerial.Location = New System.Drawing.Point(5, 7) Me.lbIfSerial.Name = "lbIfSerial" - Me.lbIfSerial.Size = New System.Drawing.Size(129, 32) + Me.lbIfSerial.Size = New System.Drawing.Size(100, 24) Me.lbIfSerial.TabIndex = 0 Me.lbIfSerial.Text = "시리얼번호" ' - 'pnIfMoTy - ' - Me.pnIfMoTy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.pnIfMoTy.Controls.Add(Me.pnIfType) - Me.pnIfMoTy.Controls.Add(Me.pnIfModel) - Me.pnIfMoTy.Location = New System.Drawing.Point(11, 188) - Me.pnIfMoTy.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.pnIfMoTy.Name = "pnIfMoTy" - Me.pnIfMoTy.Size = New System.Drawing.Size(411, 100) - Me.pnIfMoTy.TabIndex = 3 - ' - 'pnIfType - ' - Me.pnIfType.Controls.Add(Me.rdbIfBody) - Me.pnIfType.Controls.Add(Me.rdbIfEye) - Me.pnIfType.Controls.Add(Me.rdbIfFace) - Me.pnIfType.Controls.Add(Me.lbIfType) - Me.pnIfType.Location = New System.Drawing.Point(0, 50) - Me.pnIfType.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.pnIfType.Name = "pnIfType" - Me.pnIfType.Size = New System.Drawing.Size(411, 50) - Me.pnIfType.TabIndex = 2 - ' - 'rdbIfBody - ' - Me.rdbIfBody.AutoSize = True - Me.rdbIfBody.Location = New System.Drawing.Point(297, 9) - Me.rdbIfBody.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbIfBody.Name = "rdbIfBody" - Me.rdbIfBody.Size = New System.Drawing.Size(102, 36) - Me.rdbIfBody.TabIndex = 9 - Me.rdbIfBody.TabStop = True - Me.rdbIfBody.Text = "BODY" - Me.rdbIfBody.UseVisualStyleBackColor = True - ' - 'rdbIfEye - ' - Me.rdbIfEye.AutoSize = True - Me.rdbIfEye.Location = New System.Drawing.Point(217, 9) - Me.rdbIfEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbIfEye.Name = "rdbIfEye" - Me.rdbIfEye.Size = New System.Drawing.Size(82, 36) - Me.rdbIfEye.TabIndex = 8 - Me.rdbIfEye.TabStop = True - Me.rdbIfEye.Text = "EYE" - Me.rdbIfEye.UseVisualStyleBackColor = True - ' - 'rdbIfFace - ' - Me.rdbIfFace.AutoSize = True - Me.rdbIfFace.Location = New System.Drawing.Point(126, 9) - Me.rdbIfFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbIfFace.Name = "rdbIfFace" - Me.rdbIfFace.Size = New System.Drawing.Size(97, 36) - Me.rdbIfFace.TabIndex = 7 - Me.rdbIfFace.TabStop = True - Me.rdbIfFace.Text = "FACE" - Me.rdbIfFace.UseVisualStyleBackColor = True - ' - 'lbIfType - ' - Me.lbIfType.AutoSize = True - Me.lbIfType.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbIfType.Location = New System.Drawing.Point(26, 9) - Me.lbIfType.Name = "lbIfType" - Me.lbIfType.Size = New System.Drawing.Size(106, 32) - Me.lbIfType.TabIndex = 0 - Me.lbIfType.Text = "타입종류" - ' - 'pnIfModel - ' - Me.pnIfModel.Controls.Add(Me.rdbIfALPHA) - Me.pnIfModel.Controls.Add(Me.rdbIfLUX_V2) - Me.pnIfModel.Controls.Add(Me.rdbIfPRO_V1) - Me.pnIfModel.Controls.Add(Me.lbIfModel) - Me.pnIfModel.Location = New System.Drawing.Point(0, 0) - Me.pnIfModel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.pnIfModel.Name = "pnIfModel" - Me.pnIfModel.Size = New System.Drawing.Size(411, 50) - Me.pnIfModel.TabIndex = 1 - ' - 'rdbIfALPHA - ' - Me.rdbIfALPHA.AutoSize = True - Me.rdbIfALPHA.Location = New System.Drawing.Point(297, 9) - Me.rdbIfALPHA.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbIfALPHA.Name = "rdbIfALPHA" - Me.rdbIfALPHA.Size = New System.Drawing.Size(116, 36) - Me.rdbIfALPHA.TabIndex = 6 - Me.rdbIfALPHA.TabStop = True - Me.rdbIfALPHA.Text = "ALPHA" - Me.rdbIfALPHA.UseVisualStyleBackColor = True - ' - 'rdbIfLUX_V2 - ' - Me.rdbIfLUX_V2.AutoSize = True - Me.rdbIfLUX_V2.Location = New System.Drawing.Point(217, 9) - Me.rdbIfLUX_V2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbIfLUX_V2.Name = "rdbIfLUX_V2" - Me.rdbIfLUX_V2.Size = New System.Drawing.Size(85, 36) - Me.rdbIfLUX_V2.TabIndex = 5 - Me.rdbIfLUX_V2.TabStop = True - Me.rdbIfLUX_V2.Text = "LUX" - Me.rdbIfLUX_V2.UseVisualStyleBackColor = True - ' - 'rdbIfPRO_V1 - ' - Me.rdbIfPRO_V1.AutoSize = True - Me.rdbIfPRO_V1.Location = New System.Drawing.Point(126, 9) - Me.rdbIfPRO_V1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbIfPRO_V1.Name = "rdbIfPRO_V1" - Me.rdbIfPRO_V1.Size = New System.Drawing.Size(83, 36) - Me.rdbIfPRO_V1.TabIndex = 4 - Me.rdbIfPRO_V1.TabStop = True - Me.rdbIfPRO_V1.Text = "PRO" - Me.rdbIfPRO_V1.UseVisualStyleBackColor = True - ' - 'lbIfModel - ' - Me.lbIfModel.AutoSize = True - Me.lbIfModel.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbIfModel.Location = New System.Drawing.Point(26, 9) - Me.lbIfModel.Name = "lbIfModel" - Me.lbIfModel.Size = New System.Drawing.Size(106, 32) - Me.lbIfModel.TabIndex = 0 - Me.lbIfModel.Text = "모델종류" - ' 'pnIfDate ' Me.pnIfDate.Controls.Add(Me.nudIfMonth) @@ -1493,43 +1360,40 @@ Partial Class MainForm Me.pnIfDate.Controls.Add(Me.lbIfMonth) Me.pnIfDate.Controls.Add(Me.lbIfYear) Me.pnIfDate.Controls.Add(Me.lbIfDate) - Me.pnIfDate.Location = New System.Drawing.Point(11, 138) - Me.pnIfDate.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIfDate.Location = New System.Drawing.Point(10, 104) Me.pnIfDate.Name = "pnIfDate" - Me.pnIfDate.Size = New System.Drawing.Size(411, 50) + Me.pnIfDate.Size = New System.Drawing.Size(360, 40) Me.pnIfDate.TabIndex = 2 ' 'nudIfMonth ' - Me.nudIfMonth.Location = New System.Drawing.Point(326, 6) - Me.nudIfMonth.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.nudIfMonth.Location = New System.Drawing.Point(285, 5) Me.nudIfMonth.Name = "nudIfMonth" - Me.nudIfMonth.Size = New System.Drawing.Size(74, 38) + Me.nudIfMonth.Size = New System.Drawing.Size(65, 32) Me.nudIfMonth.TabIndex = 3 ' 'nudIfYear ' - Me.nudIfYear.Location = New System.Drawing.Point(200, 6) - Me.nudIfYear.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.nudIfYear.Location = New System.Drawing.Point(175, 5) Me.nudIfYear.Name = "nudIfYear" - Me.nudIfYear.Size = New System.Drawing.Size(74, 38) + Me.nudIfYear.Size = New System.Drawing.Size(65, 32) Me.nudIfYear.TabIndex = 2 ' 'lbIfMonth ' Me.lbIfMonth.AutoSize = True - Me.lbIfMonth.Location = New System.Drawing.Point(286, 10) + Me.lbIfMonth.Location = New System.Drawing.Point(250, 8) Me.lbIfMonth.Name = "lbIfMonth" - Me.lbIfMonth.Size = New System.Drawing.Size(37, 32) + Me.lbIfMonth.Size = New System.Drawing.Size(28, 24) Me.lbIfMonth.TabIndex = 2 Me.lbIfMonth.Text = "월" ' 'lbIfYear ' Me.lbIfYear.AutoSize = True - Me.lbIfYear.Location = New System.Drawing.Point(160, 10) + Me.lbIfYear.Location = New System.Drawing.Point(140, 8) Me.lbIfYear.Name = "lbIfYear" - Me.lbIfYear.Size = New System.Drawing.Size(37, 32) + Me.lbIfYear.Size = New System.Drawing.Size(28, 24) Me.lbIfYear.TabIndex = 1 Me.lbIfYear.Text = "년" ' @@ -1537,9 +1401,9 @@ Partial Class MainForm ' Me.lbIfDate.AutoSize = True Me.lbIfDate.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbIfDate.Location = New System.Drawing.Point(26, 9) + Me.lbIfDate.Location = New System.Drawing.Point(6, 7) Me.lbIfDate.Name = "lbIfDate" - Me.lbIfDate.Size = New System.Drawing.Size(106, 32) + Me.lbIfDate.Size = New System.Drawing.Size(82, 24) Me.lbIfDate.TabIndex = 0 Me.lbIfDate.Text = "제조일자" ' @@ -1547,28 +1411,26 @@ Partial Class MainForm ' Me.pnIfCode.Controls.Add(Me.txbIfCode) Me.pnIfCode.Controls.Add(Me.lbIfCode) - Me.pnIfCode.Location = New System.Drawing.Point(11, 88) - Me.pnIfCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIfCode.Location = New System.Drawing.Point(10, 64) Me.pnIfCode.Name = "pnIfCode" - Me.pnIfCode.Size = New System.Drawing.Size(411, 50) + Me.pnIfCode.Size = New System.Drawing.Size(360, 40) Me.pnIfCode.TabIndex = 1 ' 'txbIfCode ' Me.txbIfCode.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbIfCode.Location = New System.Drawing.Point(166, 6) - Me.txbIfCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbIfCode.Location = New System.Drawing.Point(145, 5) Me.txbIfCode.Name = "txbIfCode" - Me.txbIfCode.Size = New System.Drawing.Size(234, 38) + Me.txbIfCode.Size = New System.Drawing.Size(205, 32) Me.txbIfCode.TabIndex = 1 ' 'lbIfCode ' Me.lbIfCode.AutoSize = True Me.lbIfCode.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbIfCode.Location = New System.Drawing.Point(6, 9) + Me.lbIfCode.Location = New System.Drawing.Point(5, 7) Me.lbIfCode.Name = "lbIfCode" - Me.lbIfCode.Size = New System.Drawing.Size(129, 32) + Me.lbIfCode.Size = New System.Drawing.Size(100, 24) Me.lbIfCode.TabIndex = 0 Me.lbIfCode.Text = "제조사코드" ' @@ -1576,29 +1438,27 @@ Partial Class MainForm ' Me.pnIfNumber.Controls.Add(Me.txbIfNumber) Me.pnIfNumber.Controls.Add(Me.lbIfBarcode) - Me.pnIfNumber.Location = New System.Drawing.Point(11, 38) - Me.pnIfNumber.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnIfNumber.Location = New System.Drawing.Point(10, 24) Me.pnIfNumber.Name = "pnIfNumber" - Me.pnIfNumber.Size = New System.Drawing.Size(411, 50) + Me.pnIfNumber.Size = New System.Drawing.Size(360, 40) Me.pnIfNumber.TabIndex = 0 ' 'txbIfNumber ' Me.txbIfNumber.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbIfNumber.Location = New System.Drawing.Point(166, 6) - Me.txbIfNumber.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbIfNumber.Location = New System.Drawing.Point(145, 5) Me.txbIfNumber.Name = "txbIfNumber" Me.txbIfNumber.ReadOnly = True - Me.txbIfNumber.Size = New System.Drawing.Size(234, 38) + Me.txbIfNumber.Size = New System.Drawing.Size(205, 32) Me.txbIfNumber.TabIndex = 1 ' 'lbIfBarcode ' Me.lbIfBarcode.AutoSize = True Me.lbIfBarcode.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbIfBarcode.Location = New System.Drawing.Point(6, 9) + Me.lbIfBarcode.Location = New System.Drawing.Point(5, 7) Me.lbIfBarcode.Name = "lbIfBarcode" - Me.lbIfBarcode.Size = New System.Drawing.Size(129, 32) + Me.lbIfBarcode.Size = New System.Drawing.Size(100, 24) Me.lbIfBarcode.TabIndex = 0 Me.lbIfBarcode.Text = "바코드넘버" ' @@ -1607,11 +1467,9 @@ Partial Class MainForm Me.gbAuth.Controls.Add(Me.btnAuth) Me.gbAuth.Controls.Add(Me.txbAuthBox) Me.gbAuth.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbAuth.Location = New System.Drawing.Point(11, 44) - Me.gbAuth.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbAuth.Location = New System.Drawing.Point(9, 26) Me.gbAuth.Name = "gbAuth" - Me.gbAuth.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbAuth.Size = New System.Drawing.Size(434, 88) + Me.gbAuth.Size = New System.Drawing.Size(380, 70) Me.gbAuth.TabIndex = 0 Me.gbAuth.TabStop = False Me.gbAuth.Text = "인증코드설정" @@ -1619,10 +1477,9 @@ Partial Class MainForm 'btnAuth ' Me.btnAuth.Font = New System.Drawing.Font("굴림", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnAuth.Location = New System.Drawing.Point(183, 34) - Me.btnAuth.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnAuth.Location = New System.Drawing.Point(160, 27) Me.btnAuth.Name = "btnAuth" - Me.btnAuth.Size = New System.Drawing.Size(240, 44) + Me.btnAuth.Size = New System.Drawing.Size(210, 35) Me.btnAuth.TabIndex = 45 Me.btnAuth.Text = "카트리지" Me.btnAuth.UseVisualStyleBackColor = True @@ -1632,10 +1489,9 @@ Partial Class MainForm Me.txbAuthBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbAuthBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbAuthBox.ForeColor = System.Drawing.Color.White - Me.txbAuthBox.Location = New System.Drawing.Point(23, 38) - Me.txbAuthBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbAuthBox.Location = New System.Drawing.Point(20, 30) Me.txbAuthBox.Name = "txbAuthBox" - Me.txbAuthBox.Size = New System.Drawing.Size(148, 35) + Me.txbAuthBox.Size = New System.Drawing.Size(130, 29) Me.txbAuthBox.TabIndex = 44 Me.txbAuthBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbAuthBox.Visible = False @@ -1646,11 +1502,9 @@ Partial Class MainForm Me.gbRunTime.Controls.Add(Me.gbDUALUse) Me.gbRunTime.Controls.Add(Me.tcMAXUse) Me.gbRunTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbRunTime.Location = New System.Drawing.Point(926, 8) - Me.gbRunTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbRunTime.Location = New System.Drawing.Point(810, 6) Me.gbRunTime.Name = "gbRunTime" - Me.gbRunTime.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbRunTime.Size = New System.Drawing.Size(457, 631) + Me.gbRunTime.Size = New System.Drawing.Size(400, 505) Me.gbRunTime.TabIndex = 3 Me.gbRunTime.TabStop = False Me.gbRunTime.Text = "사용 정보" @@ -1661,11 +1515,10 @@ Partial Class MainForm Me.tcAltoUse.Controls.Add(Me.tpALFunc2) Me.tcAltoUse.Controls.Add(Me.tpALTOFull) Me.tcAltoUse.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.tcAltoUse.Location = New System.Drawing.Point(7, 42) - Me.tcAltoUse.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tcAltoUse.Location = New System.Drawing.Point(6, 34) Me.tcAltoUse.Name = "tcAltoUse" Me.tcAltoUse.SelectedIndex = 0 - Me.tcAltoUse.Size = New System.Drawing.Size(434, 569) + Me.tcAltoUse.Size = New System.Drawing.Size(380, 455) Me.tcAltoUse.TabIndex = 57 ' 'tpALFunc1 @@ -1675,11 +1528,10 @@ Partial Class MainForm Me.tpALFunc1.Controls.Add(Me.pnALEtTime) Me.tpALFunc1.Controls.Add(Me.pnALFtTime) Me.tpALFunc1.Controls.Add(Me.pnALFuncBox1) - Me.tpALFunc1.Location = New System.Drawing.Point(4, 35) - Me.tpALFunc1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tpALFunc1.Location = New System.Drawing.Point(4, 30) Me.tpALFunc1.Name = "tpALFunc1" - Me.tpALFunc1.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.tpALFunc1.Size = New System.Drawing.Size(426, 530) + Me.tpALFunc1.Padding = New System.Windows.Forms.Padding(3) + Me.tpALFunc1.Size = New System.Drawing.Size(372, 421) Me.tpALFunc1.TabIndex = 1 Me.tpALFunc1.Text = "Func-1" ' @@ -1694,19 +1546,18 @@ Partial Class MainForm Me.pnALCsTime.Controls.Add(Me.txbALCsHour) Me.pnALCsTime.Controls.Add(Me.lbALCsDay) Me.pnALCsTime.Controls.Add(Me.lbALCsTime) - Me.pnALCsTime.Location = New System.Drawing.Point(7, 231) - Me.pnALCsTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALCsTime.Location = New System.Drawing.Point(6, 185) Me.pnALCsTime.Name = "pnALCsTime" - Me.pnALCsTime.Size = New System.Drawing.Size(411, 112) + Me.pnALCsTime.Size = New System.Drawing.Size(360, 90) Me.pnALCsTime.TabIndex = 55 ' 'lbALCsSec ' Me.lbALCsSec.AutoSize = True Me.lbALCsSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALCsSec.Location = New System.Drawing.Point(371, 60) + Me.lbALCsSec.Location = New System.Drawing.Point(325, 48) Me.lbALCsSec.Name = "lbALCsSec" - Me.lbALCsSec.Size = New System.Drawing.Size(37, 32) + Me.lbALCsSec.Size = New System.Drawing.Size(28, 24) Me.lbALCsSec.TabIndex = 8 Me.lbALCsSec.Text = "초" ' @@ -1714,11 +1565,10 @@ Partial Class MainForm ' Me.txbALCsDay.BackColor = System.Drawing.Color.White Me.txbALCsDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALCsDay.Location = New System.Drawing.Point(6, 56) - Me.txbALCsDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALCsDay.Location = New System.Drawing.Point(5, 45) Me.txbALCsDay.Name = "txbALCsDay" Me.txbALCsDay.ReadOnly = True - Me.txbALCsDay.Size = New System.Drawing.Size(91, 38) + Me.txbALCsDay.Size = New System.Drawing.Size(80, 32) Me.txbALCsDay.TabIndex = 1 Me.txbALCsDay.Text = "0000" Me.txbALCsDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1727,11 +1577,10 @@ Partial Class MainForm ' Me.txbALCsSec.BackColor = System.Drawing.Color.White Me.txbALCsSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALCsSec.Location = New System.Drawing.Point(320, 56) - Me.txbALCsSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALCsSec.Location = New System.Drawing.Point(280, 45) Me.txbALCsSec.Name = "txbALCsSec" Me.txbALCsSec.ReadOnly = True - Me.txbALCsSec.Size = New System.Drawing.Size(51, 38) + Me.txbALCsSec.Size = New System.Drawing.Size(45, 32) Me.txbALCsSec.TabIndex = 7 Me.txbALCsSec.Text = "00" Me.txbALCsSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1740,9 +1589,9 @@ Partial Class MainForm ' Me.lbALCsMin.AutoSize = True Me.lbALCsMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALCsMin.Location = New System.Drawing.Point(280, 60) + Me.lbALCsMin.Location = New System.Drawing.Point(245, 48) Me.lbALCsMin.Name = "lbALCsMin" - Me.lbALCsMin.Size = New System.Drawing.Size(37, 32) + Me.lbALCsMin.Size = New System.Drawing.Size(28, 24) Me.lbALCsMin.TabIndex = 6 Me.lbALCsMin.Text = "분" ' @@ -1750,11 +1599,10 @@ Partial Class MainForm ' Me.txbALCsMin.BackColor = System.Drawing.Color.White Me.txbALCsMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALCsMin.Location = New System.Drawing.Point(229, 56) - Me.txbALCsMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALCsMin.Location = New System.Drawing.Point(200, 45) Me.txbALCsMin.Name = "txbALCsMin" Me.txbALCsMin.ReadOnly = True - Me.txbALCsMin.Size = New System.Drawing.Size(51, 38) + Me.txbALCsMin.Size = New System.Drawing.Size(45, 32) Me.txbALCsMin.TabIndex = 5 Me.txbALCsMin.Text = "00" Me.txbALCsMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1763,9 +1611,9 @@ Partial Class MainForm ' Me.lbALCsHour.AutoSize = True Me.lbALCsHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALCsHour.Location = New System.Drawing.Point(189, 60) + Me.lbALCsHour.Location = New System.Drawing.Point(165, 48) Me.lbALCsHour.Name = "lbALCsHour" - Me.lbALCsHour.Size = New System.Drawing.Size(37, 32) + Me.lbALCsHour.Size = New System.Drawing.Size(28, 24) Me.lbALCsHour.TabIndex = 4 Me.lbALCsHour.Text = "시" ' @@ -1773,11 +1621,10 @@ Partial Class MainForm ' Me.txbALCsHour.BackColor = System.Drawing.Color.White Me.txbALCsHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALCsHour.Location = New System.Drawing.Point(137, 56) - Me.txbALCsHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALCsHour.Location = New System.Drawing.Point(120, 45) Me.txbALCsHour.Name = "txbALCsHour" Me.txbALCsHour.ReadOnly = True - Me.txbALCsHour.Size = New System.Drawing.Size(51, 38) + Me.txbALCsHour.Size = New System.Drawing.Size(45, 32) Me.txbALCsHour.TabIndex = 3 Me.txbALCsHour.Text = "00" Me.txbALCsHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1786,9 +1633,9 @@ Partial Class MainForm ' Me.lbALCsDay.AutoSize = True Me.lbALCsDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALCsDay.Location = New System.Drawing.Point(97, 60) + Me.lbALCsDay.Location = New System.Drawing.Point(85, 48) Me.lbALCsDay.Name = "lbALCsDay" - Me.lbALCsDay.Size = New System.Drawing.Size(37, 32) + Me.lbALCsDay.Size = New System.Drawing.Size(28, 24) Me.lbALCsDay.TabIndex = 2 Me.lbALCsDay.Text = "일" ' @@ -1796,9 +1643,9 @@ Partial Class MainForm ' Me.lbALCsTime.AutoSize = True Me.lbALCsTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALCsTime.Location = New System.Drawing.Point(6, 9) + Me.lbALCsTime.Location = New System.Drawing.Point(5, 7) Me.lbALCsTime.Name = "lbALCsTime" - Me.lbALCsTime.Size = New System.Drawing.Size(234, 35) + Me.lbALCsTime.Size = New System.Drawing.Size(180, 27) Me.lbALCsTime.TabIndex = 0 Me.lbALCsTime.Text = "Cos-Up 사용 시간" ' @@ -1813,19 +1660,18 @@ Partial Class MainForm Me.pnALEtTime.Controls.Add(Me.txbALEtHour) Me.pnALEtTime.Controls.Add(Me.lbALEtDay) Me.pnALEtTime.Controls.Add(Me.lbALEtTime) - Me.pnALEtTime.Location = New System.Drawing.Point(7, 119) - Me.pnALEtTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALEtTime.Location = New System.Drawing.Point(6, 95) Me.pnALEtTime.Name = "pnALEtTime" - Me.pnALEtTime.Size = New System.Drawing.Size(411, 112) + Me.pnALEtTime.Size = New System.Drawing.Size(360, 90) Me.pnALEtTime.TabIndex = 49 ' 'lbALEtSec ' Me.lbALEtSec.AutoSize = True Me.lbALEtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALEtSec.Location = New System.Drawing.Point(371, 60) + Me.lbALEtSec.Location = New System.Drawing.Point(325, 48) Me.lbALEtSec.Name = "lbALEtSec" - Me.lbALEtSec.Size = New System.Drawing.Size(37, 32) + Me.lbALEtSec.Size = New System.Drawing.Size(28, 24) Me.lbALEtSec.TabIndex = 8 Me.lbALEtSec.Text = "초" ' @@ -1833,11 +1679,10 @@ Partial Class MainForm ' Me.txbALEtDay.BackColor = System.Drawing.Color.White Me.txbALEtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALEtDay.Location = New System.Drawing.Point(6, 56) - Me.txbALEtDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALEtDay.Location = New System.Drawing.Point(5, 45) Me.txbALEtDay.Name = "txbALEtDay" Me.txbALEtDay.ReadOnly = True - Me.txbALEtDay.Size = New System.Drawing.Size(91, 38) + Me.txbALEtDay.Size = New System.Drawing.Size(80, 32) Me.txbALEtDay.TabIndex = 1 Me.txbALEtDay.Text = "0000" Me.txbALEtDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1846,11 +1691,10 @@ Partial Class MainForm ' Me.txbALEtSec.BackColor = System.Drawing.Color.White Me.txbALEtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALEtSec.Location = New System.Drawing.Point(320, 56) - Me.txbALEtSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALEtSec.Location = New System.Drawing.Point(280, 45) Me.txbALEtSec.Name = "txbALEtSec" Me.txbALEtSec.ReadOnly = True - Me.txbALEtSec.Size = New System.Drawing.Size(51, 38) + Me.txbALEtSec.Size = New System.Drawing.Size(45, 32) Me.txbALEtSec.TabIndex = 7 Me.txbALEtSec.Text = "00" Me.txbALEtSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1859,9 +1703,9 @@ Partial Class MainForm ' Me.lbALEtMin.AutoSize = True Me.lbALEtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALEtMin.Location = New System.Drawing.Point(280, 60) + Me.lbALEtMin.Location = New System.Drawing.Point(245, 48) Me.lbALEtMin.Name = "lbALEtMin" - Me.lbALEtMin.Size = New System.Drawing.Size(37, 32) + Me.lbALEtMin.Size = New System.Drawing.Size(28, 24) Me.lbALEtMin.TabIndex = 6 Me.lbALEtMin.Text = "분" ' @@ -1869,11 +1713,10 @@ Partial Class MainForm ' Me.txbALEtMin.BackColor = System.Drawing.Color.White Me.txbALEtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALEtMin.Location = New System.Drawing.Point(229, 56) - Me.txbALEtMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALEtMin.Location = New System.Drawing.Point(200, 45) Me.txbALEtMin.Name = "txbALEtMin" Me.txbALEtMin.ReadOnly = True - Me.txbALEtMin.Size = New System.Drawing.Size(51, 38) + Me.txbALEtMin.Size = New System.Drawing.Size(45, 32) Me.txbALEtMin.TabIndex = 5 Me.txbALEtMin.Text = "00" Me.txbALEtMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1882,9 +1725,9 @@ Partial Class MainForm ' Me.lbALEtHour.AutoSize = True Me.lbALEtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALEtHour.Location = New System.Drawing.Point(189, 60) + Me.lbALEtHour.Location = New System.Drawing.Point(165, 48) Me.lbALEtHour.Name = "lbALEtHour" - Me.lbALEtHour.Size = New System.Drawing.Size(37, 32) + Me.lbALEtHour.Size = New System.Drawing.Size(28, 24) Me.lbALEtHour.TabIndex = 4 Me.lbALEtHour.Text = "시" ' @@ -1892,11 +1735,10 @@ Partial Class MainForm ' Me.txbALEtHour.BackColor = System.Drawing.Color.White Me.txbALEtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALEtHour.Location = New System.Drawing.Point(137, 56) - Me.txbALEtHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALEtHour.Location = New System.Drawing.Point(120, 45) Me.txbALEtHour.Name = "txbALEtHour" Me.txbALEtHour.ReadOnly = True - Me.txbALEtHour.Size = New System.Drawing.Size(51, 38) + Me.txbALEtHour.Size = New System.Drawing.Size(45, 32) Me.txbALEtHour.TabIndex = 3 Me.txbALEtHour.Text = "00" Me.txbALEtHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1905,9 +1747,9 @@ Partial Class MainForm ' Me.lbALEtDay.AutoSize = True Me.lbALEtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALEtDay.Location = New System.Drawing.Point(97, 60) + Me.lbALEtDay.Location = New System.Drawing.Point(85, 48) Me.lbALEtDay.Name = "lbALEtDay" - Me.lbALEtDay.Size = New System.Drawing.Size(37, 32) + Me.lbALEtDay.Size = New System.Drawing.Size(28, 24) Me.lbALEtDay.TabIndex = 2 Me.lbALEtDay.Text = "일" ' @@ -1915,9 +1757,9 @@ Partial Class MainForm ' Me.lbALEtTime.AutoSize = True Me.lbALEtTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALEtTime.Location = New System.Drawing.Point(6, 9) + Me.lbALEtTime.Location = New System.Drawing.Point(5, 7) Me.lbALEtTime.Name = "lbALEtTime" - Me.lbALEtTime.Size = New System.Drawing.Size(364, 35) + Me.lbALEtTime.Size = New System.Drawing.Size(281, 27) Me.lbALEtTime.TabIndex = 0 Me.lbALEtTime.Text = "EYE - Tight Up 총 사용 시간" ' @@ -1932,19 +1774,18 @@ Partial Class MainForm Me.pnALFtTime.Controls.Add(Me.txbALFtHour) Me.pnALFtTime.Controls.Add(Me.lbALFtDay) Me.pnALFtTime.Controls.Add(Me.lbALFtTime) - Me.pnALFtTime.Location = New System.Drawing.Point(7, 6) - Me.pnALFtTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALFtTime.Location = New System.Drawing.Point(6, 5) Me.pnALFtTime.Name = "pnALFtTime" - Me.pnALFtTime.Size = New System.Drawing.Size(411, 112) + Me.pnALFtTime.Size = New System.Drawing.Size(360, 90) Me.pnALFtTime.TabIndex = 48 ' 'lbALFtSec ' Me.lbALFtSec.AutoSize = True Me.lbALFtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALFtSec.Location = New System.Drawing.Point(371, 60) + Me.lbALFtSec.Location = New System.Drawing.Point(325, 48) Me.lbALFtSec.Name = "lbALFtSec" - Me.lbALFtSec.Size = New System.Drawing.Size(37, 32) + Me.lbALFtSec.Size = New System.Drawing.Size(28, 24) Me.lbALFtSec.TabIndex = 8 Me.lbALFtSec.Text = "초" ' @@ -1952,11 +1793,10 @@ Partial Class MainForm ' Me.txbALFtDay.BackColor = System.Drawing.Color.White Me.txbALFtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALFtDay.Location = New System.Drawing.Point(6, 56) - Me.txbALFtDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALFtDay.Location = New System.Drawing.Point(5, 45) Me.txbALFtDay.Name = "txbALFtDay" Me.txbALFtDay.ReadOnly = True - Me.txbALFtDay.Size = New System.Drawing.Size(91, 38) + Me.txbALFtDay.Size = New System.Drawing.Size(80, 32) Me.txbALFtDay.TabIndex = 1 Me.txbALFtDay.Text = "0000" Me.txbALFtDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1965,11 +1805,10 @@ Partial Class MainForm ' Me.txbALFtSec.BackColor = System.Drawing.Color.White Me.txbALFtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALFtSec.Location = New System.Drawing.Point(320, 56) - Me.txbALFtSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALFtSec.Location = New System.Drawing.Point(280, 45) Me.txbALFtSec.Name = "txbALFtSec" Me.txbALFtSec.ReadOnly = True - Me.txbALFtSec.Size = New System.Drawing.Size(51, 38) + Me.txbALFtSec.Size = New System.Drawing.Size(45, 32) Me.txbALFtSec.TabIndex = 7 Me.txbALFtSec.Text = "00" Me.txbALFtSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -1978,9 +1817,9 @@ Partial Class MainForm ' Me.lbALFtMin.AutoSize = True Me.lbALFtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALFtMin.Location = New System.Drawing.Point(280, 60) + Me.lbALFtMin.Location = New System.Drawing.Point(245, 48) Me.lbALFtMin.Name = "lbALFtMin" - Me.lbALFtMin.Size = New System.Drawing.Size(37, 32) + Me.lbALFtMin.Size = New System.Drawing.Size(28, 24) Me.lbALFtMin.TabIndex = 6 Me.lbALFtMin.Text = "분" ' @@ -1988,11 +1827,10 @@ Partial Class MainForm ' Me.txbALFtMin.BackColor = System.Drawing.Color.White Me.txbALFtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALFtMin.Location = New System.Drawing.Point(229, 56) - Me.txbALFtMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALFtMin.Location = New System.Drawing.Point(200, 45) Me.txbALFtMin.Name = "txbALFtMin" Me.txbALFtMin.ReadOnly = True - Me.txbALFtMin.Size = New System.Drawing.Size(51, 38) + Me.txbALFtMin.Size = New System.Drawing.Size(45, 32) Me.txbALFtMin.TabIndex = 5 Me.txbALFtMin.Text = "00" Me.txbALFtMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2001,9 +1839,9 @@ Partial Class MainForm ' Me.lbALFtHour.AutoSize = True Me.lbALFtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALFtHour.Location = New System.Drawing.Point(189, 60) + Me.lbALFtHour.Location = New System.Drawing.Point(165, 48) Me.lbALFtHour.Name = "lbALFtHour" - Me.lbALFtHour.Size = New System.Drawing.Size(37, 32) + Me.lbALFtHour.Size = New System.Drawing.Size(28, 24) Me.lbALFtHour.TabIndex = 4 Me.lbALFtHour.Text = "시" ' @@ -2011,11 +1849,10 @@ Partial Class MainForm ' Me.txbALFtHour.BackColor = System.Drawing.Color.White Me.txbALFtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALFtHour.Location = New System.Drawing.Point(137, 56) - Me.txbALFtHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALFtHour.Location = New System.Drawing.Point(120, 45) Me.txbALFtHour.Name = "txbALFtHour" Me.txbALFtHour.ReadOnly = True - Me.txbALFtHour.Size = New System.Drawing.Size(51, 38) + Me.txbALFtHour.Size = New System.Drawing.Size(45, 32) Me.txbALFtHour.TabIndex = 3 Me.txbALFtHour.Text = "00" Me.txbALFtHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2024,9 +1861,9 @@ Partial Class MainForm ' Me.lbALFtDay.AutoSize = True Me.lbALFtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALFtDay.Location = New System.Drawing.Point(97, 60) + Me.lbALFtDay.Location = New System.Drawing.Point(85, 48) Me.lbALFtDay.Name = "lbALFtDay" - Me.lbALFtDay.Size = New System.Drawing.Size(37, 32) + Me.lbALFtDay.Size = New System.Drawing.Size(28, 24) Me.lbALFtDay.TabIndex = 2 Me.lbALFtDay.Text = "일" ' @@ -2034,9 +1871,9 @@ Partial Class MainForm ' Me.lbALFtTime.AutoSize = True Me.lbALFtTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALFtTime.Location = New System.Drawing.Point(6, 9) + Me.lbALFtTime.Location = New System.Drawing.Point(5, 7) Me.lbALFtTime.Name = "lbALFtTime" - Me.lbALFtTime.Size = New System.Drawing.Size(382, 35) + Me.lbALFtTime.Size = New System.Drawing.Size(294, 27) Me.lbALFtTime.TabIndex = 0 Me.lbALFtTime.Text = "FACE - Tight Up 총 사용 시간" ' @@ -2045,20 +1882,18 @@ Partial Class MainForm Me.pnALFuncBox1.Controls.Add(Me.btnALFuncReset1) Me.pnALFuncBox1.Controls.Add(Me.btnALFuncRead1) Me.pnALFuncBox1.Controls.Add(Me.txbALFuncBox1) - Me.pnALFuncBox1.Location = New System.Drawing.Point(7, 400) - Me.pnALFuncBox1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALFuncBox1.Location = New System.Drawing.Point(6, 320) Me.pnALFuncBox1.Name = "pnALFuncBox1" - Me.pnALFuncBox1.Size = New System.Drawing.Size(411, 116) + Me.pnALFuncBox1.Size = New System.Drawing.Size(360, 93) Me.pnALFuncBox1.TabIndex = 54 ' 'btnALFuncReset1 ' Me.btnALFuncReset1.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnALFuncReset1.ForeColor = System.Drawing.Color.Red - Me.btnALFuncReset1.Location = New System.Drawing.Point(11, 6) - Me.btnALFuncReset1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnALFuncReset1.Location = New System.Drawing.Point(10, 5) Me.btnALFuncReset1.Name = "btnALFuncReset1" - Me.btnALFuncReset1.Size = New System.Drawing.Size(194, 62) + Me.btnALFuncReset1.Size = New System.Drawing.Size(170, 50) Me.btnALFuncReset1.TabIndex = 48 Me.btnALFuncReset1.Text = "사용 시간 초기화" Me.btnALFuncReset1.UseVisualStyleBackColor = True @@ -2066,10 +1901,9 @@ Partial Class MainForm 'btnALFuncRead1 ' Me.btnALFuncRead1.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnALFuncRead1.Location = New System.Drawing.Point(206, 6) - Me.btnALFuncRead1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnALFuncRead1.Location = New System.Drawing.Point(180, 5) Me.btnALFuncRead1.Name = "btnALFuncRead1" - Me.btnALFuncRead1.Size = New System.Drawing.Size(194, 62) + Me.btnALFuncRead1.Size = New System.Drawing.Size(170, 50) Me.btnALFuncRead1.TabIndex = 46 Me.btnALFuncRead1.Text = "읽기" Me.btnALFuncRead1.UseVisualStyleBackColor = True @@ -2079,10 +1913,9 @@ Partial Class MainForm Me.txbALFuncBox1.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbALFuncBox1.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbALFuncBox1.ForeColor = System.Drawing.Color.White - Me.txbALFuncBox1.Location = New System.Drawing.Point(11, 75) - Me.txbALFuncBox1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALFuncBox1.Location = New System.Drawing.Point(10, 60) Me.txbALFuncBox1.Name = "txbALFuncBox1" - Me.txbALFuncBox1.Size = New System.Drawing.Size(388, 35) + Me.txbALFuncBox1.Size = New System.Drawing.Size(340, 29) Me.txbALFuncBox1.TabIndex = 45 Me.txbALFuncBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbALFuncBox1.Visible = False @@ -2093,11 +1926,10 @@ Partial Class MainForm Me.tpALFunc2.Controls.Add(Me.pnALLtTime) Me.tpALFunc2.Controls.Add(Me.pnALFuncBox2) Me.tpALFunc2.Controls.Add(Me.pnALBtTime) - Me.tpALFunc2.Location = New System.Drawing.Point(4, 35) - Me.tpALFunc2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tpALFunc2.Location = New System.Drawing.Point(4, 30) Me.tpALFunc2.Name = "tpALFunc2" - Me.tpALFunc2.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.tpALFunc2.Size = New System.Drawing.Size(426, 530) + Me.tpALFunc2.Padding = New System.Windows.Forms.Padding(3) + Me.tpALFunc2.Size = New System.Drawing.Size(372, 421) Me.tpALFunc2.TabIndex = 2 Me.tpALFunc2.Text = "Func-2" ' @@ -2112,19 +1944,18 @@ Partial Class MainForm Me.pnALLtTime.Controls.Add(Me.txbALLtHour) Me.pnALLtTime.Controls.Add(Me.lbALLtDay) Me.pnALLtTime.Controls.Add(Me.lbALLtTime) - Me.pnALLtTime.Location = New System.Drawing.Point(7, 6) - Me.pnALLtTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALLtTime.Location = New System.Drawing.Point(6, 5) Me.pnALLtTime.Name = "pnALLtTime" - Me.pnALLtTime.Size = New System.Drawing.Size(411, 112) + Me.pnALLtTime.Size = New System.Drawing.Size(360, 90) Me.pnALLtTime.TabIndex = 56 ' 'lbALLtSec ' Me.lbALLtSec.AutoSize = True Me.lbALLtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALLtSec.Location = New System.Drawing.Point(371, 60) + Me.lbALLtSec.Location = New System.Drawing.Point(325, 48) Me.lbALLtSec.Name = "lbALLtSec" - Me.lbALLtSec.Size = New System.Drawing.Size(37, 32) + Me.lbALLtSec.Size = New System.Drawing.Size(28, 24) Me.lbALLtSec.TabIndex = 8 Me.lbALLtSec.Text = "초" ' @@ -2132,11 +1963,10 @@ Partial Class MainForm ' Me.txbALLtDay.BackColor = System.Drawing.Color.White Me.txbALLtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALLtDay.Location = New System.Drawing.Point(6, 56) - Me.txbALLtDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALLtDay.Location = New System.Drawing.Point(5, 45) Me.txbALLtDay.Name = "txbALLtDay" Me.txbALLtDay.ReadOnly = True - Me.txbALLtDay.Size = New System.Drawing.Size(91, 38) + Me.txbALLtDay.Size = New System.Drawing.Size(80, 32) Me.txbALLtDay.TabIndex = 1 Me.txbALLtDay.Text = "0000" Me.txbALLtDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2145,11 +1975,10 @@ Partial Class MainForm ' Me.txbALLtSec.BackColor = System.Drawing.Color.White Me.txbALLtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALLtSec.Location = New System.Drawing.Point(320, 56) - Me.txbALLtSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALLtSec.Location = New System.Drawing.Point(280, 45) Me.txbALLtSec.Name = "txbALLtSec" Me.txbALLtSec.ReadOnly = True - Me.txbALLtSec.Size = New System.Drawing.Size(51, 38) + Me.txbALLtSec.Size = New System.Drawing.Size(45, 32) Me.txbALLtSec.TabIndex = 7 Me.txbALLtSec.Text = "00" Me.txbALLtSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2158,9 +1987,9 @@ Partial Class MainForm ' Me.lbALLtMin.AutoSize = True Me.lbALLtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALLtMin.Location = New System.Drawing.Point(280, 60) + Me.lbALLtMin.Location = New System.Drawing.Point(245, 48) Me.lbALLtMin.Name = "lbALLtMin" - Me.lbALLtMin.Size = New System.Drawing.Size(37, 32) + Me.lbALLtMin.Size = New System.Drawing.Size(28, 24) Me.lbALLtMin.TabIndex = 6 Me.lbALLtMin.Text = "분" ' @@ -2168,11 +1997,10 @@ Partial Class MainForm ' Me.txbALLtMin.BackColor = System.Drawing.Color.White Me.txbALLtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALLtMin.Location = New System.Drawing.Point(229, 56) - Me.txbALLtMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALLtMin.Location = New System.Drawing.Point(200, 45) Me.txbALLtMin.Name = "txbALLtMin" Me.txbALLtMin.ReadOnly = True - Me.txbALLtMin.Size = New System.Drawing.Size(51, 38) + Me.txbALLtMin.Size = New System.Drawing.Size(45, 32) Me.txbALLtMin.TabIndex = 5 Me.txbALLtMin.Text = "00" Me.txbALLtMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2181,9 +2009,9 @@ Partial Class MainForm ' Me.lbALLtHour.AutoSize = True Me.lbALLtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALLtHour.Location = New System.Drawing.Point(189, 60) + Me.lbALLtHour.Location = New System.Drawing.Point(165, 48) Me.lbALLtHour.Name = "lbALLtHour" - Me.lbALLtHour.Size = New System.Drawing.Size(37, 32) + Me.lbALLtHour.Size = New System.Drawing.Size(28, 24) Me.lbALLtHour.TabIndex = 4 Me.lbALLtHour.Text = "시" ' @@ -2191,11 +2019,10 @@ Partial Class MainForm ' Me.txbALLtHour.BackColor = System.Drawing.Color.White Me.txbALLtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALLtHour.Location = New System.Drawing.Point(137, 56) - Me.txbALLtHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALLtHour.Location = New System.Drawing.Point(120, 45) Me.txbALLtHour.Name = "txbALLtHour" Me.txbALLtHour.ReadOnly = True - Me.txbALLtHour.Size = New System.Drawing.Size(51, 38) + Me.txbALLtHour.Size = New System.Drawing.Size(45, 32) Me.txbALLtHour.TabIndex = 3 Me.txbALLtHour.Text = "00" Me.txbALLtHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2204,9 +2031,9 @@ Partial Class MainForm ' Me.lbALLtDay.AutoSize = True Me.lbALLtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALLtDay.Location = New System.Drawing.Point(97, 60) + Me.lbALLtDay.Location = New System.Drawing.Point(85, 48) Me.lbALLtDay.Name = "lbALLtDay" - Me.lbALLtDay.Size = New System.Drawing.Size(37, 32) + Me.lbALLtDay.Size = New System.Drawing.Size(28, 24) Me.lbALLtDay.TabIndex = 2 Me.lbALLtDay.Text = "일" ' @@ -2214,9 +2041,9 @@ Partial Class MainForm ' Me.lbALLtTime.AutoSize = True Me.lbALLtTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALLtTime.Location = New System.Drawing.Point(6, 9) + Me.lbALLtTime.Location = New System.Drawing.Point(5, 7) Me.lbALLtTime.Name = "lbALLtTime" - Me.lbALLtTime.Size = New System.Drawing.Size(351, 35) + Me.lbALLtTime.Size = New System.Drawing.Size(272, 27) Me.lbALLtTime.TabIndex = 0 Me.lbALLtTime.Text = "Lip - Tight Up 총 사용 시간" ' @@ -2225,20 +2052,18 @@ Partial Class MainForm Me.pnALFuncBox2.Controls.Add(Me.btnALFuncReset2) Me.pnALFuncBox2.Controls.Add(Me.btnALFuncRead2) Me.pnALFuncBox2.Controls.Add(Me.txbALFuncBox2) - Me.pnALFuncBox2.Location = New System.Drawing.Point(7, 400) - Me.pnALFuncBox2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALFuncBox2.Location = New System.Drawing.Point(6, 320) Me.pnALFuncBox2.Name = "pnALFuncBox2" - Me.pnALFuncBox2.Size = New System.Drawing.Size(411, 116) + Me.pnALFuncBox2.Size = New System.Drawing.Size(360, 93) Me.pnALFuncBox2.TabIndex = 54 ' 'btnALFuncReset2 ' Me.btnALFuncReset2.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnALFuncReset2.ForeColor = System.Drawing.Color.Red - Me.btnALFuncReset2.Location = New System.Drawing.Point(11, 6) - Me.btnALFuncReset2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnALFuncReset2.Location = New System.Drawing.Point(10, 5) Me.btnALFuncReset2.Name = "btnALFuncReset2" - Me.btnALFuncReset2.Size = New System.Drawing.Size(194, 62) + Me.btnALFuncReset2.Size = New System.Drawing.Size(170, 50) Me.btnALFuncReset2.TabIndex = 48 Me.btnALFuncReset2.Text = "사용 시간 초기화" Me.btnALFuncReset2.UseVisualStyleBackColor = True @@ -2246,10 +2071,9 @@ Partial Class MainForm 'btnALFuncRead2 ' Me.btnALFuncRead2.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnALFuncRead2.Location = New System.Drawing.Point(206, 6) - Me.btnALFuncRead2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnALFuncRead2.Location = New System.Drawing.Point(180, 5) Me.btnALFuncRead2.Name = "btnALFuncRead2" - Me.btnALFuncRead2.Size = New System.Drawing.Size(194, 62) + Me.btnALFuncRead2.Size = New System.Drawing.Size(170, 50) Me.btnALFuncRead2.TabIndex = 46 Me.btnALFuncRead2.Text = "읽기" Me.btnALFuncRead2.UseVisualStyleBackColor = True @@ -2259,10 +2083,9 @@ Partial Class MainForm Me.txbALFuncBox2.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbALFuncBox2.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbALFuncBox2.ForeColor = System.Drawing.Color.White - Me.txbALFuncBox2.Location = New System.Drawing.Point(11, 75) - Me.txbALFuncBox2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALFuncBox2.Location = New System.Drawing.Point(10, 60) Me.txbALFuncBox2.Name = "txbALFuncBox2" - Me.txbALFuncBox2.Size = New System.Drawing.Size(388, 35) + Me.txbALFuncBox2.Size = New System.Drawing.Size(340, 29) Me.txbALFuncBox2.TabIndex = 45 Me.txbALFuncBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbALFuncBox2.Visible = False @@ -2278,19 +2101,18 @@ Partial Class MainForm Me.pnALBtTime.Controls.Add(Me.txbALBtHour) Me.pnALBtTime.Controls.Add(Me.lbALBtDay) Me.pnALBtTime.Controls.Add(Me.lbALBtTime) - Me.pnALBtTime.Location = New System.Drawing.Point(7, 119) - Me.pnALBtTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALBtTime.Location = New System.Drawing.Point(6, 95) Me.pnALBtTime.Name = "pnALBtTime" - Me.pnALBtTime.Size = New System.Drawing.Size(411, 112) + Me.pnALBtTime.Size = New System.Drawing.Size(360, 90) Me.pnALBtTime.TabIndex = 49 ' 'lbALBtSec ' Me.lbALBtSec.AutoSize = True Me.lbALBtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALBtSec.Location = New System.Drawing.Point(371, 60) + Me.lbALBtSec.Location = New System.Drawing.Point(325, 48) Me.lbALBtSec.Name = "lbALBtSec" - Me.lbALBtSec.Size = New System.Drawing.Size(37, 32) + Me.lbALBtSec.Size = New System.Drawing.Size(28, 24) Me.lbALBtSec.TabIndex = 8 Me.lbALBtSec.Text = "초" ' @@ -2298,11 +2120,10 @@ Partial Class MainForm ' Me.txbALBtDay.BackColor = System.Drawing.Color.White Me.txbALBtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALBtDay.Location = New System.Drawing.Point(6, 56) - Me.txbALBtDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALBtDay.Location = New System.Drawing.Point(5, 45) Me.txbALBtDay.Name = "txbALBtDay" Me.txbALBtDay.ReadOnly = True - Me.txbALBtDay.Size = New System.Drawing.Size(91, 38) + Me.txbALBtDay.Size = New System.Drawing.Size(80, 32) Me.txbALBtDay.TabIndex = 1 Me.txbALBtDay.Text = "0000" Me.txbALBtDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2311,11 +2132,10 @@ Partial Class MainForm ' Me.txbALBtSec.BackColor = System.Drawing.Color.White Me.txbALBtSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALBtSec.Location = New System.Drawing.Point(320, 56) - Me.txbALBtSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALBtSec.Location = New System.Drawing.Point(280, 45) Me.txbALBtSec.Name = "txbALBtSec" Me.txbALBtSec.ReadOnly = True - Me.txbALBtSec.Size = New System.Drawing.Size(51, 38) + Me.txbALBtSec.Size = New System.Drawing.Size(45, 32) Me.txbALBtSec.TabIndex = 7 Me.txbALBtSec.Text = "00" Me.txbALBtSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2324,9 +2144,9 @@ Partial Class MainForm ' Me.lbALBtMin.AutoSize = True Me.lbALBtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALBtMin.Location = New System.Drawing.Point(280, 60) + Me.lbALBtMin.Location = New System.Drawing.Point(245, 48) Me.lbALBtMin.Name = "lbALBtMin" - Me.lbALBtMin.Size = New System.Drawing.Size(37, 32) + Me.lbALBtMin.Size = New System.Drawing.Size(28, 24) Me.lbALBtMin.TabIndex = 6 Me.lbALBtMin.Text = "분" ' @@ -2334,11 +2154,10 @@ Partial Class MainForm ' Me.txbALBtMin.BackColor = System.Drawing.Color.White Me.txbALBtMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALBtMin.Location = New System.Drawing.Point(229, 56) - Me.txbALBtMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALBtMin.Location = New System.Drawing.Point(200, 45) Me.txbALBtMin.Name = "txbALBtMin" Me.txbALBtMin.ReadOnly = True - Me.txbALBtMin.Size = New System.Drawing.Size(51, 38) + Me.txbALBtMin.Size = New System.Drawing.Size(45, 32) Me.txbALBtMin.TabIndex = 5 Me.txbALBtMin.Text = "00" Me.txbALBtMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2347,9 +2166,9 @@ Partial Class MainForm ' Me.lbALBtHour.AutoSize = True Me.lbALBtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALBtHour.Location = New System.Drawing.Point(189, 60) + Me.lbALBtHour.Location = New System.Drawing.Point(165, 48) Me.lbALBtHour.Name = "lbALBtHour" - Me.lbALBtHour.Size = New System.Drawing.Size(37, 32) + Me.lbALBtHour.Size = New System.Drawing.Size(28, 24) Me.lbALBtHour.TabIndex = 4 Me.lbALBtHour.Text = "시" ' @@ -2357,11 +2176,10 @@ Partial Class MainForm ' Me.txbALBtHour.BackColor = System.Drawing.Color.White Me.txbALBtHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALBtHour.Location = New System.Drawing.Point(137, 56) - Me.txbALBtHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALBtHour.Location = New System.Drawing.Point(120, 45) Me.txbALBtHour.Name = "txbALBtHour" Me.txbALBtHour.ReadOnly = True - Me.txbALBtHour.Size = New System.Drawing.Size(51, 38) + Me.txbALBtHour.Size = New System.Drawing.Size(45, 32) Me.txbALBtHour.TabIndex = 3 Me.txbALBtHour.Text = "00" Me.txbALBtHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2370,9 +2188,9 @@ Partial Class MainForm ' Me.lbALBtDay.AutoSize = True Me.lbALBtDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALBtDay.Location = New System.Drawing.Point(97, 60) + Me.lbALBtDay.Location = New System.Drawing.Point(85, 48) Me.lbALBtDay.Name = "lbALBtDay" - Me.lbALBtDay.Size = New System.Drawing.Size(37, 32) + Me.lbALBtDay.Size = New System.Drawing.Size(28, 24) Me.lbALBtDay.TabIndex = 2 Me.lbALBtDay.Text = "일" ' @@ -2380,9 +2198,9 @@ Partial Class MainForm ' Me.lbALBtTime.AutoSize = True Me.lbALBtTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALBtTime.Location = New System.Drawing.Point(6, 9) + Me.lbALBtTime.Location = New System.Drawing.Point(5, 7) Me.lbALBtTime.Name = "lbALBtTime" - Me.lbALBtTime.Size = New System.Drawing.Size(347, 35) + Me.lbALBtTime.Size = New System.Drawing.Size(269, 27) Me.lbALBtTime.TabIndex = 0 Me.lbALBtTime.Text = "Body - Tight-Up 사용 시간" ' @@ -2392,11 +2210,10 @@ Partial Class MainForm Me.tpALTOFull.Controls.Add(Me.pnALAllFunc) Me.tpALTOFull.Controls.Add(Me.pnALAllErr) Me.tpALTOFull.Controls.Add(Me.pnALAllTime) - Me.tpALTOFull.Location = New System.Drawing.Point(4, 35) - Me.tpALTOFull.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tpALTOFull.Location = New System.Drawing.Point(4, 30) Me.tpALTOFull.Name = "tpALTOFull" - Me.tpALTOFull.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.tpALTOFull.Size = New System.Drawing.Size(426, 530) + Me.tpALTOFull.Padding = New System.Windows.Forms.Padding(3) + Me.tpALTOFull.Size = New System.Drawing.Size(372, 421) Me.tpALTOFull.TabIndex = 0 Me.tpALTOFull.Text = "전체" ' @@ -2405,20 +2222,18 @@ Partial Class MainForm Me.pnALAllFunc.Controls.Add(Me.btnALAllReset) Me.pnALAllFunc.Controls.Add(Me.btnALAllRead) Me.pnALAllFunc.Controls.Add(Me.txbALAllBox) - Me.pnALAllFunc.Location = New System.Drawing.Point(7, 400) - Me.pnALAllFunc.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALAllFunc.Location = New System.Drawing.Point(6, 320) Me.pnALAllFunc.Name = "pnALAllFunc" - Me.pnALAllFunc.Size = New System.Drawing.Size(411, 116) + Me.pnALAllFunc.Size = New System.Drawing.Size(360, 93) Me.pnALAllFunc.TabIndex = 53 ' 'btnALAllReset ' Me.btnALAllReset.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnALAllReset.ForeColor = System.Drawing.Color.Red - Me.btnALAllReset.Location = New System.Drawing.Point(11, 6) - Me.btnALAllReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnALAllReset.Location = New System.Drawing.Point(10, 5) Me.btnALAllReset.Name = "btnALAllReset" - Me.btnALAllReset.Size = New System.Drawing.Size(194, 62) + Me.btnALAllReset.Size = New System.Drawing.Size(170, 50) Me.btnALAllReset.TabIndex = 48 Me.btnALAllReset.Text = "사용 시간 초기화" Me.btnALAllReset.UseVisualStyleBackColor = True @@ -2426,10 +2241,9 @@ Partial Class MainForm 'btnALAllRead ' Me.btnALAllRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnALAllRead.Location = New System.Drawing.Point(206, 6) - Me.btnALAllRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnALAllRead.Location = New System.Drawing.Point(180, 5) Me.btnALAllRead.Name = "btnALAllRead" - Me.btnALAllRead.Size = New System.Drawing.Size(194, 62) + Me.btnALAllRead.Size = New System.Drawing.Size(170, 50) Me.btnALAllRead.TabIndex = 46 Me.btnALAllRead.Text = "읽기" Me.btnALAllRead.UseVisualStyleBackColor = True @@ -2439,10 +2253,9 @@ Partial Class MainForm Me.txbALAllBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbALAllBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbALAllBox.ForeColor = System.Drawing.Color.White - Me.txbALAllBox.Location = New System.Drawing.Point(11, 75) - Me.txbALAllBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALAllBox.Location = New System.Drawing.Point(10, 60) Me.txbALAllBox.Name = "txbALAllBox" - Me.txbALAllBox.Size = New System.Drawing.Size(388, 35) + Me.txbALAllBox.Size = New System.Drawing.Size(340, 29) Me.txbALAllBox.TabIndex = 45 Me.txbALAllBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbALAllBox.Visible = False @@ -2451,21 +2264,19 @@ Partial Class MainForm ' Me.pnALAllErr.Controls.Add(Me.txbALAllErr) Me.pnALAllErr.Controls.Add(Me.lbALAllErr) - Me.pnALAllErr.Location = New System.Drawing.Point(6, 125) - Me.pnALAllErr.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALAllErr.Location = New System.Drawing.Point(5, 100) Me.pnALAllErr.Name = "pnALAllErr" - Me.pnALAllErr.Size = New System.Drawing.Size(411, 50) + Me.pnALAllErr.Size = New System.Drawing.Size(360, 40) Me.pnALAllErr.TabIndex = 51 ' 'txbALAllErr ' Me.txbALAllErr.BackColor = System.Drawing.Color.White Me.txbALAllErr.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALAllErr.Location = New System.Drawing.Point(166, 6) - Me.txbALAllErr.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALAllErr.Location = New System.Drawing.Point(145, 5) Me.txbALAllErr.Name = "txbALAllErr" Me.txbALAllErr.ReadOnly = True - Me.txbALAllErr.Size = New System.Drawing.Size(234, 38) + Me.txbALAllErr.Size = New System.Drawing.Size(205, 32) Me.txbALAllErr.TabIndex = 1 Me.txbALAllErr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' @@ -2473,9 +2284,9 @@ Partial Class MainForm ' Me.lbALAllErr.AutoSize = True Me.lbALAllErr.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALAllErr.Location = New System.Drawing.Point(14, 10) + Me.lbALAllErr.Location = New System.Drawing.Point(12, 8) Me.lbALAllErr.Name = "lbALAllErr" - Me.lbALAllErr.Size = New System.Drawing.Size(152, 32) + Me.lbALAllErr.Size = New System.Drawing.Size(121, 24) Me.lbALAllErr.TabIndex = 0 Me.lbALAllErr.Text = "Error Count" ' @@ -2490,19 +2301,18 @@ Partial Class MainForm Me.pnALAllTime.Controls.Add(Me.txbALAllHour) Me.pnALAllTime.Controls.Add(Me.lbALAllDay) Me.pnALAllTime.Controls.Add(Me.lbALAllTime) - Me.pnALAllTime.Location = New System.Drawing.Point(6, 6) - Me.pnALAllTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnALAllTime.Location = New System.Drawing.Point(5, 5) Me.pnALAllTime.Name = "pnALAllTime" - Me.pnALAllTime.Size = New System.Drawing.Size(411, 112) + Me.pnALAllTime.Size = New System.Drawing.Size(360, 90) Me.pnALAllTime.TabIndex = 49 ' 'lbALAllSec ' Me.lbALAllSec.AutoSize = True Me.lbALAllSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALAllSec.Location = New System.Drawing.Point(371, 60) + Me.lbALAllSec.Location = New System.Drawing.Point(325, 48) Me.lbALAllSec.Name = "lbALAllSec" - Me.lbALAllSec.Size = New System.Drawing.Size(37, 32) + Me.lbALAllSec.Size = New System.Drawing.Size(28, 24) Me.lbALAllSec.TabIndex = 8 Me.lbALAllSec.Text = "초" ' @@ -2510,11 +2320,10 @@ Partial Class MainForm ' Me.txbALAllDay.BackColor = System.Drawing.Color.White Me.txbALAllDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALAllDay.Location = New System.Drawing.Point(6, 56) - Me.txbALAllDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALAllDay.Location = New System.Drawing.Point(5, 45) Me.txbALAllDay.Name = "txbALAllDay" Me.txbALAllDay.ReadOnly = True - Me.txbALAllDay.Size = New System.Drawing.Size(91, 38) + Me.txbALAllDay.Size = New System.Drawing.Size(80, 32) Me.txbALAllDay.TabIndex = 1 Me.txbALAllDay.Text = "0000" Me.txbALAllDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2523,11 +2332,10 @@ Partial Class MainForm ' Me.txbALAllSec.BackColor = System.Drawing.Color.White Me.txbALAllSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALAllSec.Location = New System.Drawing.Point(320, 56) - Me.txbALAllSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALAllSec.Location = New System.Drawing.Point(280, 45) Me.txbALAllSec.Name = "txbALAllSec" Me.txbALAllSec.ReadOnly = True - Me.txbALAllSec.Size = New System.Drawing.Size(51, 38) + Me.txbALAllSec.Size = New System.Drawing.Size(45, 32) Me.txbALAllSec.TabIndex = 7 Me.txbALAllSec.Text = "00" Me.txbALAllSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2536,9 +2344,9 @@ Partial Class MainForm ' Me.lbALAllMin.AutoSize = True Me.lbALAllMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALAllMin.Location = New System.Drawing.Point(280, 60) + Me.lbALAllMin.Location = New System.Drawing.Point(245, 48) Me.lbALAllMin.Name = "lbALAllMin" - Me.lbALAllMin.Size = New System.Drawing.Size(37, 32) + Me.lbALAllMin.Size = New System.Drawing.Size(28, 24) Me.lbALAllMin.TabIndex = 6 Me.lbALAllMin.Text = "분" ' @@ -2546,11 +2354,10 @@ Partial Class MainForm ' Me.txbALAllMin.BackColor = System.Drawing.Color.White Me.txbALAllMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALAllMin.Location = New System.Drawing.Point(229, 56) - Me.txbALAllMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALAllMin.Location = New System.Drawing.Point(200, 45) Me.txbALAllMin.Name = "txbALAllMin" Me.txbALAllMin.ReadOnly = True - Me.txbALAllMin.Size = New System.Drawing.Size(51, 38) + Me.txbALAllMin.Size = New System.Drawing.Size(45, 32) Me.txbALAllMin.TabIndex = 5 Me.txbALAllMin.Text = "00" Me.txbALAllMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2559,9 +2366,9 @@ Partial Class MainForm ' Me.lbALAllHour.AutoSize = True Me.lbALAllHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALAllHour.Location = New System.Drawing.Point(189, 60) + Me.lbALAllHour.Location = New System.Drawing.Point(165, 48) Me.lbALAllHour.Name = "lbALAllHour" - Me.lbALAllHour.Size = New System.Drawing.Size(37, 32) + Me.lbALAllHour.Size = New System.Drawing.Size(28, 24) Me.lbALAllHour.TabIndex = 4 Me.lbALAllHour.Text = "시" ' @@ -2569,11 +2376,10 @@ Partial Class MainForm ' Me.txbALAllHour.BackColor = System.Drawing.Color.White Me.txbALAllHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbALAllHour.Location = New System.Drawing.Point(137, 56) - Me.txbALAllHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbALAllHour.Location = New System.Drawing.Point(120, 45) Me.txbALAllHour.Name = "txbALAllHour" Me.txbALAllHour.ReadOnly = True - Me.txbALAllHour.Size = New System.Drawing.Size(51, 38) + Me.txbALAllHour.Size = New System.Drawing.Size(45, 32) Me.txbALAllHour.TabIndex = 3 Me.txbALAllHour.Text = "00" Me.txbALAllHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2582,9 +2388,9 @@ Partial Class MainForm ' Me.lbALAllDay.AutoSize = True Me.lbALAllDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALAllDay.Location = New System.Drawing.Point(97, 60) + Me.lbALAllDay.Location = New System.Drawing.Point(85, 48) Me.lbALAllDay.Name = "lbALAllDay" - Me.lbALAllDay.Size = New System.Drawing.Size(37, 32) + Me.lbALAllDay.Size = New System.Drawing.Size(28, 24) Me.lbALAllDay.TabIndex = 2 Me.lbALAllDay.Text = "일" ' @@ -2592,9 +2398,9 @@ Partial Class MainForm ' Me.lbALAllTime.AutoSize = True Me.lbALAllTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbALAllTime.Location = New System.Drawing.Point(6, 9) + Me.lbALAllTime.Location = New System.Drawing.Point(5, 7) Me.lbALAllTime.Name = "lbALAllTime" - Me.lbALAllTime.Size = New System.Drawing.Size(187, 35) + Me.lbALAllTime.Size = New System.Drawing.Size(144, 27) Me.lbALAllTime.TabIndex = 0 Me.lbALAllTime.Text = "전체 사용 시간" ' @@ -2608,11 +2414,9 @@ Partial Class MainForm Me.gbDUALUse.Controls.Add(Me.pnDuFull) Me.gbDUALUse.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.gbDUALUse.ForeColor = System.Drawing.Color.Black - Me.gbDUALUse.Location = New System.Drawing.Point(7, 45) - Me.gbDUALUse.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbDUALUse.Location = New System.Drawing.Point(6, 36) Me.gbDUALUse.Name = "gbDUALUse" - Me.gbDUALUse.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbDUALUse.Size = New System.Drawing.Size(434, 569) + Me.gbDUALUse.Size = New System.Drawing.Size(380, 455) Me.gbDUALUse.TabIndex = 55 Me.gbDUALUse.TabStop = False Me.gbDUALUse.Text = "DUALSONIC 사용 내역" @@ -2623,19 +2427,17 @@ Partial Class MainForm Me.pnDuResult.Controls.Add(Me.btnDuReset) Me.pnDuResult.Controls.Add(Me.btnDuReady) Me.pnDuResult.Controls.Add(Me.txbDuUseBox) - Me.pnDuResult.Location = New System.Drawing.Point(11, 444) - Me.pnDuResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDuResult.Location = New System.Drawing.Point(10, 355) Me.pnDuResult.Name = "pnDuResult" - Me.pnDuResult.Size = New System.Drawing.Size(411, 116) + Me.pnDuResult.Size = New System.Drawing.Size(360, 93) Me.pnDuResult.TabIndex = 51 ' 'btnDuWrite ' Me.btnDuWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnDuWrite.Location = New System.Drawing.Point(271, 10) - Me.btnDuWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnDuWrite.Location = New System.Drawing.Point(237, 8) Me.btnDuWrite.Name = "btnDuWrite" - Me.btnDuWrite.Size = New System.Drawing.Size(129, 62) + Me.btnDuWrite.Size = New System.Drawing.Size(113, 50) Me.btnDuWrite.TabIndex = 49 Me.btnDuWrite.Text = "쓰기" Me.btnDuWrite.UseVisualStyleBackColor = True @@ -2644,10 +2446,9 @@ Partial Class MainForm ' Me.btnDuReset.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnDuReset.ForeColor = System.Drawing.Color.Red - Me.btnDuReset.Location = New System.Drawing.Point(14, 10) - Me.btnDuReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnDuReset.Location = New System.Drawing.Point(12, 8) Me.btnDuReset.Name = "btnDuReset" - Me.btnDuReset.Size = New System.Drawing.Size(119, 62) + Me.btnDuReset.Size = New System.Drawing.Size(104, 50) Me.btnDuReset.TabIndex = 48 Me.btnDuReset.Text = "초기화" Me.btnDuReset.UseVisualStyleBackColor = True @@ -2655,10 +2456,9 @@ Partial Class MainForm 'btnDuReady ' Me.btnDuReady.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnDuReady.Location = New System.Drawing.Point(137, 10) - Me.btnDuReady.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnDuReady.Location = New System.Drawing.Point(120, 8) Me.btnDuReady.Name = "btnDuReady" - Me.btnDuReady.Size = New System.Drawing.Size(129, 62) + Me.btnDuReady.Size = New System.Drawing.Size(113, 50) Me.btnDuReady.TabIndex = 46 Me.btnDuReady.Text = "읽기" Me.btnDuReady.UseVisualStyleBackColor = True @@ -2668,10 +2468,9 @@ Partial Class MainForm Me.txbDuUseBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbDuUseBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbDuUseBox.ForeColor = System.Drawing.Color.White - Me.txbDuUseBox.Location = New System.Drawing.Point(11, 75) - Me.txbDuUseBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuUseBox.Location = New System.Drawing.Point(10, 60) Me.txbDuUseBox.Name = "txbDuUseBox" - Me.txbDuUseBox.Size = New System.Drawing.Size(388, 35) + Me.txbDuUseBox.Size = New System.Drawing.Size(340, 29) Me.txbDuUseBox.TabIndex = 45 Me.txbDuUseBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbDuUseBox.Visible = False @@ -2680,19 +2479,17 @@ Partial Class MainForm ' Me.pnDuError.Controls.Add(Me.txbDuError) Me.pnDuError.Controls.Add(Me.lbDuError) - Me.pnDuError.Location = New System.Drawing.Point(11, 388) - Me.pnDuError.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDuError.Location = New System.Drawing.Point(10, 310) Me.pnDuError.Name = "pnDuError" - Me.pnDuError.Size = New System.Drawing.Size(411, 50) + Me.pnDuError.Size = New System.Drawing.Size(360, 40) Me.pnDuError.TabIndex = 50 ' 'txbDuError ' Me.txbDuError.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuError.Location = New System.Drawing.Point(166, 6) - Me.txbDuError.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuError.Location = New System.Drawing.Point(145, 5) Me.txbDuError.Name = "txbDuError" - Me.txbDuError.Size = New System.Drawing.Size(234, 38) + Me.txbDuError.Size = New System.Drawing.Size(205, 32) Me.txbDuError.TabIndex = 1 Me.txbDuError.Text = "0" Me.txbDuError.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2701,9 +2498,9 @@ Partial Class MainForm ' Me.lbDuError.AutoSize = True Me.lbDuError.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuError.Location = New System.Drawing.Point(6, 10) + Me.lbDuError.Location = New System.Drawing.Point(5, 8) Me.lbDuError.Name = "lbDuError" - Me.lbDuError.Size = New System.Drawing.Size(152, 32) + Me.lbDuError.Size = New System.Drawing.Size(121, 24) Me.lbDuError.TabIndex = 0 Me.lbDuError.Text = "Error Count" ' @@ -2711,19 +2508,17 @@ Partial Class MainForm ' Me.pnDuEye.Controls.Add(Me.txbDuEye) Me.pnDuEye.Controls.Add(Me.lbDuEye) - Me.pnDuEye.Location = New System.Drawing.Point(11, 331) - Me.pnDuEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDuEye.Location = New System.Drawing.Point(10, 265) Me.pnDuEye.Name = "pnDuEye" - Me.pnDuEye.Size = New System.Drawing.Size(411, 50) + Me.pnDuEye.Size = New System.Drawing.Size(360, 40) Me.pnDuEye.TabIndex = 49 ' 'txbDuEye ' Me.txbDuEye.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuEye.Location = New System.Drawing.Point(166, 6) - Me.txbDuEye.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuEye.Location = New System.Drawing.Point(145, 5) Me.txbDuEye.Name = "txbDuEye" - Me.txbDuEye.Size = New System.Drawing.Size(234, 38) + Me.txbDuEye.Size = New System.Drawing.Size(205, 32) Me.txbDuEye.TabIndex = 1 Me.txbDuEye.Text = "0" Me.txbDuEye.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2732,9 +2527,9 @@ Partial Class MainForm ' Me.lbDuEye.AutoSize = True Me.lbDuEye.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuEye.Location = New System.Drawing.Point(35, 10) + Me.lbDuEye.Location = New System.Drawing.Point(31, 8) Me.lbDuEye.Name = "lbDuEye" - Me.lbDuEye.Size = New System.Drawing.Size(121, 32) + Me.lbDuEye.Size = New System.Drawing.Size(95, 24) Me.lbDuEye.TabIndex = 0 Me.lbDuEye.Text = "EYE Shot" ' @@ -2742,19 +2537,17 @@ Partial Class MainForm ' Me.pnDuFace.Controls.Add(Me.txbDuFace) Me.pnDuFace.Controls.Add(Me.lbDuFace) - Me.pnDuFace.Location = New System.Drawing.Point(11, 275) - Me.pnDuFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDuFace.Location = New System.Drawing.Point(10, 220) Me.pnDuFace.Name = "pnDuFace" - Me.pnDuFace.Size = New System.Drawing.Size(411, 50) + Me.pnDuFace.Size = New System.Drawing.Size(360, 40) Me.pnDuFace.TabIndex = 48 ' 'txbDuFace ' Me.txbDuFace.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuFace.Location = New System.Drawing.Point(166, 6) - Me.txbDuFace.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuFace.Location = New System.Drawing.Point(145, 5) Me.txbDuFace.Name = "txbDuFace" - Me.txbDuFace.Size = New System.Drawing.Size(234, 38) + Me.txbDuFace.Size = New System.Drawing.Size(205, 32) Me.txbDuFace.TabIndex = 1 Me.txbDuFace.Text = "0" Me.txbDuFace.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2763,9 +2556,9 @@ Partial Class MainForm ' Me.lbDuFace.AutoSize = True Me.lbDuFace.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuFace.Location = New System.Drawing.Point(22, 10) + Me.lbDuFace.Location = New System.Drawing.Point(19, 8) Me.lbDuFace.Name = "lbDuFace" - Me.lbDuFace.Size = New System.Drawing.Size(136, 32) + Me.lbDuFace.Size = New System.Drawing.Size(107, 24) Me.lbDuFace.TabIndex = 0 Me.lbDuFace.Text = "FACE Shot" ' @@ -2780,29 +2573,27 @@ Partial Class MainForm Me.pnDuReady.Controls.Add(Me.txbDuReadyHour) Me.pnDuReady.Controls.Add(Me.lbDuReadyDay) Me.pnDuReady.Controls.Add(Me.lbDuReady) - Me.pnDuReady.Location = New System.Drawing.Point(11, 156) - Me.pnDuReady.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDuReady.Location = New System.Drawing.Point(10, 125) Me.pnDuReady.Name = "pnDuReady" - Me.pnDuReady.Size = New System.Drawing.Size(411, 112) + Me.pnDuReady.Size = New System.Drawing.Size(360, 90) Me.pnDuReady.TabIndex = 47 ' 'lbDuReadySec ' Me.lbDuReadySec.AutoSize = True Me.lbDuReadySec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuReadySec.Location = New System.Drawing.Point(371, 60) + Me.lbDuReadySec.Location = New System.Drawing.Point(325, 48) Me.lbDuReadySec.Name = "lbDuReadySec" - Me.lbDuReadySec.Size = New System.Drawing.Size(37, 32) + Me.lbDuReadySec.Size = New System.Drawing.Size(28, 24) Me.lbDuReadySec.TabIndex = 8 Me.lbDuReadySec.Text = "초" ' 'txbDuReadyDay ' Me.txbDuReadyDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuReadyDay.Location = New System.Drawing.Point(6, 56) - Me.txbDuReadyDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuReadyDay.Location = New System.Drawing.Point(5, 45) Me.txbDuReadyDay.Name = "txbDuReadyDay" - Me.txbDuReadyDay.Size = New System.Drawing.Size(91, 38) + Me.txbDuReadyDay.Size = New System.Drawing.Size(80, 32) Me.txbDuReadyDay.TabIndex = 1 Me.txbDuReadyDay.Text = "0000" Me.txbDuReadyDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2810,10 +2601,9 @@ Partial Class MainForm 'txbDuReadySec ' Me.txbDuReadySec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuReadySec.Location = New System.Drawing.Point(320, 56) - Me.txbDuReadySec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuReadySec.Location = New System.Drawing.Point(280, 45) Me.txbDuReadySec.Name = "txbDuReadySec" - Me.txbDuReadySec.Size = New System.Drawing.Size(51, 38) + Me.txbDuReadySec.Size = New System.Drawing.Size(45, 32) Me.txbDuReadySec.TabIndex = 7 Me.txbDuReadySec.Text = "00" Me.txbDuReadySec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2822,19 +2612,18 @@ Partial Class MainForm ' Me.lbDuReadyMin.AutoSize = True Me.lbDuReadyMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuReadyMin.Location = New System.Drawing.Point(280, 60) + Me.lbDuReadyMin.Location = New System.Drawing.Point(245, 48) Me.lbDuReadyMin.Name = "lbDuReadyMin" - Me.lbDuReadyMin.Size = New System.Drawing.Size(37, 32) + Me.lbDuReadyMin.Size = New System.Drawing.Size(28, 24) Me.lbDuReadyMin.TabIndex = 6 Me.lbDuReadyMin.Text = "분" ' 'txbDuReadyMin ' Me.txbDuReadyMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuReadyMin.Location = New System.Drawing.Point(229, 56) - Me.txbDuReadyMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuReadyMin.Location = New System.Drawing.Point(200, 45) Me.txbDuReadyMin.Name = "txbDuReadyMin" - Me.txbDuReadyMin.Size = New System.Drawing.Size(51, 38) + Me.txbDuReadyMin.Size = New System.Drawing.Size(45, 32) Me.txbDuReadyMin.TabIndex = 5 Me.txbDuReadyMin.Text = "00" Me.txbDuReadyMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2843,19 +2632,18 @@ Partial Class MainForm ' Me.lbDuReadyHour.AutoSize = True Me.lbDuReadyHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuReadyHour.Location = New System.Drawing.Point(189, 60) + Me.lbDuReadyHour.Location = New System.Drawing.Point(165, 48) Me.lbDuReadyHour.Name = "lbDuReadyHour" - Me.lbDuReadyHour.Size = New System.Drawing.Size(37, 32) + Me.lbDuReadyHour.Size = New System.Drawing.Size(28, 24) Me.lbDuReadyHour.TabIndex = 4 Me.lbDuReadyHour.Text = "시" ' 'txbDuReadyHour ' Me.txbDuReadyHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuReadyHour.Location = New System.Drawing.Point(137, 56) - Me.txbDuReadyHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuReadyHour.Location = New System.Drawing.Point(120, 45) Me.txbDuReadyHour.Name = "txbDuReadyHour" - Me.txbDuReadyHour.Size = New System.Drawing.Size(51, 38) + Me.txbDuReadyHour.Size = New System.Drawing.Size(45, 32) Me.txbDuReadyHour.TabIndex = 3 Me.txbDuReadyHour.Text = "00" Me.txbDuReadyHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2864,9 +2652,9 @@ Partial Class MainForm ' Me.lbDuReadyDay.AutoSize = True Me.lbDuReadyDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuReadyDay.Location = New System.Drawing.Point(97, 60) + Me.lbDuReadyDay.Location = New System.Drawing.Point(85, 48) Me.lbDuReadyDay.Name = "lbDuReadyDay" - Me.lbDuReadyDay.Size = New System.Drawing.Size(37, 32) + Me.lbDuReadyDay.Size = New System.Drawing.Size(28, 24) Me.lbDuReadyDay.TabIndex = 2 Me.lbDuReadyDay.Text = "일" ' @@ -2874,9 +2662,9 @@ Partial Class MainForm ' Me.lbDuReady.AutoSize = True Me.lbDuReady.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuReady.Location = New System.Drawing.Point(6, 9) + Me.lbDuReady.Location = New System.Drawing.Point(5, 7) Me.lbDuReady.Name = "lbDuReady" - Me.lbDuReady.Size = New System.Drawing.Size(213, 35) + Me.lbDuReady.Size = New System.Drawing.Size(165, 27) Me.lbDuReady.TabIndex = 0 Me.lbDuReady.Text = "Ready 사용 시간" ' @@ -2891,29 +2679,27 @@ Partial Class MainForm Me.pnDuFull.Controls.Add(Me.txbDuFullHour) Me.pnDuFull.Controls.Add(Me.lbDuFullDay) Me.pnDuFull.Controls.Add(Me.lbDuFull) - Me.pnDuFull.Location = New System.Drawing.Point(11, 38) - Me.pnDuFull.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDuFull.Location = New System.Drawing.Point(10, 30) Me.pnDuFull.Name = "pnDuFull" - Me.pnDuFull.Size = New System.Drawing.Size(411, 112) + Me.pnDuFull.Size = New System.Drawing.Size(360, 90) Me.pnDuFull.TabIndex = 46 ' 'lbDuFullSec ' Me.lbDuFullSec.AutoSize = True Me.lbDuFullSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuFullSec.Location = New System.Drawing.Point(371, 60) + Me.lbDuFullSec.Location = New System.Drawing.Point(325, 48) Me.lbDuFullSec.Name = "lbDuFullSec" - Me.lbDuFullSec.Size = New System.Drawing.Size(37, 32) + Me.lbDuFullSec.Size = New System.Drawing.Size(28, 24) Me.lbDuFullSec.TabIndex = 8 Me.lbDuFullSec.Text = "초" ' 'txbDuFullDay ' Me.txbDuFullDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuFullDay.Location = New System.Drawing.Point(6, 56) - Me.txbDuFullDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuFullDay.Location = New System.Drawing.Point(5, 45) Me.txbDuFullDay.Name = "txbDuFullDay" - Me.txbDuFullDay.Size = New System.Drawing.Size(91, 38) + Me.txbDuFullDay.Size = New System.Drawing.Size(80, 32) Me.txbDuFullDay.TabIndex = 1 Me.txbDuFullDay.Text = "0000" Me.txbDuFullDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2921,10 +2707,9 @@ Partial Class MainForm 'txbDuFullSec ' Me.txbDuFullSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuFullSec.Location = New System.Drawing.Point(320, 56) - Me.txbDuFullSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuFullSec.Location = New System.Drawing.Point(280, 45) Me.txbDuFullSec.Name = "txbDuFullSec" - Me.txbDuFullSec.Size = New System.Drawing.Size(51, 38) + Me.txbDuFullSec.Size = New System.Drawing.Size(45, 32) Me.txbDuFullSec.TabIndex = 7 Me.txbDuFullSec.Text = "00" Me.txbDuFullSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2933,19 +2718,18 @@ Partial Class MainForm ' Me.lbDuFullMin.AutoSize = True Me.lbDuFullMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuFullMin.Location = New System.Drawing.Point(280, 60) + Me.lbDuFullMin.Location = New System.Drawing.Point(245, 48) Me.lbDuFullMin.Name = "lbDuFullMin" - Me.lbDuFullMin.Size = New System.Drawing.Size(37, 32) + Me.lbDuFullMin.Size = New System.Drawing.Size(28, 24) Me.lbDuFullMin.TabIndex = 6 Me.lbDuFullMin.Text = "분" ' 'txbDuFullMin ' Me.txbDuFullMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuFullMin.Location = New System.Drawing.Point(229, 56) - Me.txbDuFullMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuFullMin.Location = New System.Drawing.Point(200, 45) Me.txbDuFullMin.Name = "txbDuFullMin" - Me.txbDuFullMin.Size = New System.Drawing.Size(51, 38) + Me.txbDuFullMin.Size = New System.Drawing.Size(45, 32) Me.txbDuFullMin.TabIndex = 5 Me.txbDuFullMin.Text = "00" Me.txbDuFullMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2954,19 +2738,18 @@ Partial Class MainForm ' Me.lbDuFullHour.AutoSize = True Me.lbDuFullHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuFullHour.Location = New System.Drawing.Point(189, 60) + Me.lbDuFullHour.Location = New System.Drawing.Point(165, 48) Me.lbDuFullHour.Name = "lbDuFullHour" - Me.lbDuFullHour.Size = New System.Drawing.Size(37, 32) + Me.lbDuFullHour.Size = New System.Drawing.Size(28, 24) Me.lbDuFullHour.TabIndex = 4 Me.lbDuFullHour.Text = "시" ' 'txbDuFullHour ' Me.txbDuFullHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDuFullHour.Location = New System.Drawing.Point(137, 56) - Me.txbDuFullHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDuFullHour.Location = New System.Drawing.Point(120, 45) Me.txbDuFullHour.Name = "txbDuFullHour" - Me.txbDuFullHour.Size = New System.Drawing.Size(51, 38) + Me.txbDuFullHour.Size = New System.Drawing.Size(45, 32) Me.txbDuFullHour.TabIndex = 3 Me.txbDuFullHour.Text = "00" Me.txbDuFullHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -2975,9 +2758,9 @@ Partial Class MainForm ' Me.lbDuFullDay.AutoSize = True Me.lbDuFullDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuFullDay.Location = New System.Drawing.Point(97, 60) + Me.lbDuFullDay.Location = New System.Drawing.Point(85, 48) Me.lbDuFullDay.Name = "lbDuFullDay" - Me.lbDuFullDay.Size = New System.Drawing.Size(37, 32) + Me.lbDuFullDay.Size = New System.Drawing.Size(28, 24) Me.lbDuFullDay.TabIndex = 2 Me.lbDuFullDay.Text = "일" ' @@ -2985,9 +2768,9 @@ Partial Class MainForm ' Me.lbDuFull.AutoSize = True Me.lbDuFull.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDuFull.Location = New System.Drawing.Point(6, 9) + Me.lbDuFull.Location = New System.Drawing.Point(5, 7) Me.lbDuFull.Name = "lbDuFull" - Me.lbDuFull.Size = New System.Drawing.Size(161, 35) + Me.lbDuFull.Size = New System.Drawing.Size(124, 27) Me.lbDuFull.TabIndex = 0 Me.lbDuFull.Text = "총 사용 시간" ' @@ -2997,11 +2780,10 @@ Partial Class MainForm Me.tcMAXUse.Controls.Add(Me.tpMXHIFU) Me.tcMAXUse.Controls.Add(Me.tpMXRF) Me.tcMAXUse.Font = New System.Drawing.Font("함초롬바탕", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.tcMAXUse.Location = New System.Drawing.Point(11, 54) - Me.tcMAXUse.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tcMAXUse.Location = New System.Drawing.Point(10, 43) Me.tcMAXUse.Name = "tcMAXUse" Me.tcMAXUse.SelectedIndex = 0 - Me.tcMAXUse.Size = New System.Drawing.Size(434, 569) + Me.tcMAXUse.Size = New System.Drawing.Size(380, 455) Me.tcMAXUse.TabIndex = 56 ' 'tpMAXFULL @@ -3011,11 +2793,10 @@ Partial Class MainForm Me.tpMAXFULL.Controls.Add(Me.pnMxAllShot) Me.tpMAXFULL.Controls.Add(Me.pnMxAllErr) Me.tpMAXFULL.Controls.Add(Me.pnMxAllTime) - Me.tpMAXFULL.Location = New System.Drawing.Point(4, 35) - Me.tpMAXFULL.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tpMAXFULL.Location = New System.Drawing.Point(4, 30) Me.tpMAXFULL.Name = "tpMAXFULL" - Me.tpMAXFULL.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.tpMAXFULL.Size = New System.Drawing.Size(426, 530) + Me.tpMAXFULL.Padding = New System.Windows.Forms.Padding(3) + Me.tpMAXFULL.Size = New System.Drawing.Size(372, 421) Me.tpMAXFULL.TabIndex = 0 Me.tpMAXFULL.Text = "전체" ' @@ -3024,20 +2805,18 @@ Partial Class MainForm Me.pnMxAllFunc.Controls.Add(Me.btnMxAllReset) Me.pnMxAllFunc.Controls.Add(Me.btnMxAllRead) Me.pnMxAllFunc.Controls.Add(Me.txbMxAllBox) - Me.pnMxAllFunc.Location = New System.Drawing.Point(7, 400) - Me.pnMxAllFunc.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxAllFunc.Location = New System.Drawing.Point(6, 320) Me.pnMxAllFunc.Name = "pnMxAllFunc" - Me.pnMxAllFunc.Size = New System.Drawing.Size(411, 116) + Me.pnMxAllFunc.Size = New System.Drawing.Size(360, 93) Me.pnMxAllFunc.TabIndex = 53 ' 'btnMxAllReset ' Me.btnMxAllReset.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnMxAllReset.ForeColor = System.Drawing.Color.Red - Me.btnMxAllReset.Location = New System.Drawing.Point(11, 6) - Me.btnMxAllReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMxAllReset.Location = New System.Drawing.Point(10, 5) Me.btnMxAllReset.Name = "btnMxAllReset" - Me.btnMxAllReset.Size = New System.Drawing.Size(194, 62) + Me.btnMxAllReset.Size = New System.Drawing.Size(170, 50) Me.btnMxAllReset.TabIndex = 48 Me.btnMxAllReset.Text = "사용 시간 초기화" Me.btnMxAllReset.UseVisualStyleBackColor = True @@ -3045,10 +2824,9 @@ Partial Class MainForm 'btnMxAllRead ' Me.btnMxAllRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnMxAllRead.Location = New System.Drawing.Point(206, 6) - Me.btnMxAllRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMxAllRead.Location = New System.Drawing.Point(180, 5) Me.btnMxAllRead.Name = "btnMxAllRead" - Me.btnMxAllRead.Size = New System.Drawing.Size(194, 62) + Me.btnMxAllRead.Size = New System.Drawing.Size(170, 50) Me.btnMxAllRead.TabIndex = 46 Me.btnMxAllRead.Text = "읽기" Me.btnMxAllRead.UseVisualStyleBackColor = True @@ -3058,10 +2836,9 @@ Partial Class MainForm Me.txbMxAllBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbMxAllBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbMxAllBox.ForeColor = System.Drawing.Color.White - Me.txbMxAllBox.Location = New System.Drawing.Point(11, 75) - Me.txbMxAllBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxAllBox.Location = New System.Drawing.Point(10, 60) Me.txbMxAllBox.Name = "txbMxAllBox" - Me.txbMxAllBox.Size = New System.Drawing.Size(388, 35) + Me.txbMxAllBox.Size = New System.Drawing.Size(340, 29) Me.txbMxAllBox.TabIndex = 45 Me.txbMxAllBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbMxAllBox.Visible = False @@ -3070,19 +2847,17 @@ Partial Class MainForm ' Me.pnMxAllShot.Controls.Add(Me.txbMxAllShot) Me.pnMxAllShot.Controls.Add(Me.lbMxAllShot) - Me.pnMxAllShot.Location = New System.Drawing.Point(7, 125) - Me.pnMxAllShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxAllShot.Location = New System.Drawing.Point(6, 100) Me.pnMxAllShot.Name = "pnMxAllShot" - Me.pnMxAllShot.Size = New System.Drawing.Size(411, 50) + Me.pnMxAllShot.Size = New System.Drawing.Size(360, 40) Me.pnMxAllShot.TabIndex = 52 ' 'txbMxAllShot ' Me.txbMxAllShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxAllShot.Location = New System.Drawing.Point(166, 6) - Me.txbMxAllShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxAllShot.Location = New System.Drawing.Point(145, 5) Me.txbMxAllShot.Name = "txbMxAllShot" - Me.txbMxAllShot.Size = New System.Drawing.Size(234, 38) + Me.txbMxAllShot.Size = New System.Drawing.Size(205, 32) Me.txbMxAllShot.TabIndex = 1 Me.txbMxAllShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' @@ -3090,9 +2865,9 @@ Partial Class MainForm ' Me.lbMxAllShot.AutoSize = True Me.lbMxAllShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxAllShot.Location = New System.Drawing.Point(22, 10) + Me.lbMxAllShot.Location = New System.Drawing.Point(19, 8) Me.lbMxAllShot.Name = "lbMxAllShot" - Me.lbMxAllShot.Size = New System.Drawing.Size(143, 32) + Me.lbMxAllShot.Size = New System.Drawing.Size(113, 24) Me.lbMxAllShot.TabIndex = 0 Me.lbMxAllShot.Text = "Shot Count" ' @@ -3100,19 +2875,17 @@ Partial Class MainForm ' Me.pnMxAllErr.Controls.Add(Me.txbMxAllErr) Me.pnMxAllErr.Controls.Add(Me.lbMxAllErr) - Me.pnMxAllErr.Location = New System.Drawing.Point(7, 181) - Me.pnMxAllErr.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxAllErr.Location = New System.Drawing.Point(6, 145) Me.pnMxAllErr.Name = "pnMxAllErr" - Me.pnMxAllErr.Size = New System.Drawing.Size(411, 50) + Me.pnMxAllErr.Size = New System.Drawing.Size(360, 40) Me.pnMxAllErr.TabIndex = 51 ' 'txbMxAllErr ' Me.txbMxAllErr.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxAllErr.Location = New System.Drawing.Point(166, 6) - Me.txbMxAllErr.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxAllErr.Location = New System.Drawing.Point(145, 5) Me.txbMxAllErr.Name = "txbMxAllErr" - Me.txbMxAllErr.Size = New System.Drawing.Size(234, 38) + Me.txbMxAllErr.Size = New System.Drawing.Size(205, 32) Me.txbMxAllErr.TabIndex = 1 Me.txbMxAllErr.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' @@ -3120,9 +2893,9 @@ Partial Class MainForm ' Me.lbMxAllErr.AutoSize = True Me.lbMxAllErr.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxAllErr.Location = New System.Drawing.Point(14, 10) + Me.lbMxAllErr.Location = New System.Drawing.Point(12, 8) Me.lbMxAllErr.Name = "lbMxAllErr" - Me.lbMxAllErr.Size = New System.Drawing.Size(152, 32) + Me.lbMxAllErr.Size = New System.Drawing.Size(121, 24) Me.lbMxAllErr.TabIndex = 0 Me.lbMxAllErr.Text = "Error Count" ' @@ -3137,29 +2910,27 @@ Partial Class MainForm Me.pnMxAllTime.Controls.Add(Me.txbMxAllHour) Me.pnMxAllTime.Controls.Add(Me.lbMxAllDay) Me.pnMxAllTime.Controls.Add(Me.lbMxAllTime) - Me.pnMxAllTime.Location = New System.Drawing.Point(7, 6) - Me.pnMxAllTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxAllTime.Location = New System.Drawing.Point(6, 5) Me.pnMxAllTime.Name = "pnMxAllTime" - Me.pnMxAllTime.Size = New System.Drawing.Size(411, 112) + Me.pnMxAllTime.Size = New System.Drawing.Size(360, 90) Me.pnMxAllTime.TabIndex = 49 ' 'lbMxAllSec ' Me.lbMxAllSec.AutoSize = True Me.lbMxAllSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxAllSec.Location = New System.Drawing.Point(371, 60) + Me.lbMxAllSec.Location = New System.Drawing.Point(325, 48) Me.lbMxAllSec.Name = "lbMxAllSec" - Me.lbMxAllSec.Size = New System.Drawing.Size(37, 32) + Me.lbMxAllSec.Size = New System.Drawing.Size(28, 24) Me.lbMxAllSec.TabIndex = 8 Me.lbMxAllSec.Text = "초" ' 'txbMxAllDay ' Me.txbMxAllDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxAllDay.Location = New System.Drawing.Point(6, 56) - Me.txbMxAllDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxAllDay.Location = New System.Drawing.Point(5, 45) Me.txbMxAllDay.Name = "txbMxAllDay" - Me.txbMxAllDay.Size = New System.Drawing.Size(91, 38) + Me.txbMxAllDay.Size = New System.Drawing.Size(80, 32) Me.txbMxAllDay.TabIndex = 1 Me.txbMxAllDay.Text = "0000" Me.txbMxAllDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3167,10 +2938,9 @@ Partial Class MainForm 'txbMxAllSec ' Me.txbMxAllSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxAllSec.Location = New System.Drawing.Point(320, 56) - Me.txbMxAllSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxAllSec.Location = New System.Drawing.Point(280, 45) Me.txbMxAllSec.Name = "txbMxAllSec" - Me.txbMxAllSec.Size = New System.Drawing.Size(51, 38) + Me.txbMxAllSec.Size = New System.Drawing.Size(45, 32) Me.txbMxAllSec.TabIndex = 7 Me.txbMxAllSec.Text = "00" Me.txbMxAllSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3179,19 +2949,18 @@ Partial Class MainForm ' Me.lbMxAllMin.AutoSize = True Me.lbMxAllMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxAllMin.Location = New System.Drawing.Point(280, 60) + Me.lbMxAllMin.Location = New System.Drawing.Point(245, 48) Me.lbMxAllMin.Name = "lbMxAllMin" - Me.lbMxAllMin.Size = New System.Drawing.Size(37, 32) + Me.lbMxAllMin.Size = New System.Drawing.Size(28, 24) Me.lbMxAllMin.TabIndex = 6 Me.lbMxAllMin.Text = "분" ' 'txbMxAllMin ' Me.txbMxAllMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxAllMin.Location = New System.Drawing.Point(229, 56) - Me.txbMxAllMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxAllMin.Location = New System.Drawing.Point(200, 45) Me.txbMxAllMin.Name = "txbMxAllMin" - Me.txbMxAllMin.Size = New System.Drawing.Size(51, 38) + Me.txbMxAllMin.Size = New System.Drawing.Size(45, 32) Me.txbMxAllMin.TabIndex = 5 Me.txbMxAllMin.Text = "00" Me.txbMxAllMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3200,19 +2969,18 @@ Partial Class MainForm ' Me.lbMxAllHour.AutoSize = True Me.lbMxAllHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxAllHour.Location = New System.Drawing.Point(189, 60) + Me.lbMxAllHour.Location = New System.Drawing.Point(165, 48) Me.lbMxAllHour.Name = "lbMxAllHour" - Me.lbMxAllHour.Size = New System.Drawing.Size(37, 32) + Me.lbMxAllHour.Size = New System.Drawing.Size(28, 24) Me.lbMxAllHour.TabIndex = 4 Me.lbMxAllHour.Text = "시" ' 'txbMxAllHour ' Me.txbMxAllHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxAllHour.Location = New System.Drawing.Point(137, 56) - Me.txbMxAllHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxAllHour.Location = New System.Drawing.Point(120, 45) Me.txbMxAllHour.Name = "txbMxAllHour" - Me.txbMxAllHour.Size = New System.Drawing.Size(51, 38) + Me.txbMxAllHour.Size = New System.Drawing.Size(45, 32) Me.txbMxAllHour.TabIndex = 3 Me.txbMxAllHour.Text = "00" Me.txbMxAllHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3221,9 +2989,9 @@ Partial Class MainForm ' Me.lbMxAllDay.AutoSize = True Me.lbMxAllDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxAllDay.Location = New System.Drawing.Point(97, 60) + Me.lbMxAllDay.Location = New System.Drawing.Point(85, 48) Me.lbMxAllDay.Name = "lbMxAllDay" - Me.lbMxAllDay.Size = New System.Drawing.Size(37, 32) + Me.lbMxAllDay.Size = New System.Drawing.Size(28, 24) Me.lbMxAllDay.TabIndex = 2 Me.lbMxAllDay.Text = "일" ' @@ -3231,9 +2999,9 @@ Partial Class MainForm ' Me.lbMxAllTime.AutoSize = True Me.lbMxAllTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxAllTime.Location = New System.Drawing.Point(6, 9) + Me.lbMxAllTime.Location = New System.Drawing.Point(5, 7) Me.lbMxAllTime.Name = "lbMxAllTime" - Me.lbMxAllTime.Size = New System.Drawing.Size(187, 35) + Me.lbMxAllTime.Size = New System.Drawing.Size(144, 27) Me.lbMxAllTime.TabIndex = 0 Me.lbMxAllTime.Text = "전체 사용 시간" ' @@ -3244,11 +3012,10 @@ Partial Class MainForm Me.tpMXHIFU.Controls.Add(Me.pnMxFcShot) Me.tpMXHIFU.Controls.Add(Me.pnMxEyTime) Me.tpMXHIFU.Controls.Add(Me.pnMxFcTime) - Me.tpMXHIFU.Location = New System.Drawing.Point(4, 35) - Me.tpMXHIFU.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tpMXHIFU.Location = New System.Drawing.Point(4, 30) Me.tpMXHIFU.Name = "tpMXHIFU" - Me.tpMXHIFU.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.tpMXHIFU.Size = New System.Drawing.Size(426, 530) + Me.tpMXHIFU.Padding = New System.Windows.Forms.Padding(3) + Me.tpMXHIFU.Size = New System.Drawing.Size(372, 421) Me.tpMXHIFU.TabIndex = 1 Me.tpMXHIFU.Text = "HIFU" ' @@ -3257,20 +3024,18 @@ Partial Class MainForm Me.pnMxHfResult.Controls.Add(Me.btnMxHfReset) Me.pnMxHfResult.Controls.Add(Me.btnMxHfRead) Me.pnMxHfResult.Controls.Add(Me.txbMxHfBox) - Me.pnMxHfResult.Location = New System.Drawing.Point(7, 400) - Me.pnMxHfResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxHfResult.Location = New System.Drawing.Point(6, 320) Me.pnMxHfResult.Name = "pnMxHfResult" - Me.pnMxHfResult.Size = New System.Drawing.Size(411, 116) + Me.pnMxHfResult.Size = New System.Drawing.Size(360, 93) Me.pnMxHfResult.TabIndex = 54 ' 'btnMxHfReset ' Me.btnMxHfReset.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnMxHfReset.ForeColor = System.Drawing.Color.Red - Me.btnMxHfReset.Location = New System.Drawing.Point(11, 6) - Me.btnMxHfReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMxHfReset.Location = New System.Drawing.Point(10, 5) Me.btnMxHfReset.Name = "btnMxHfReset" - Me.btnMxHfReset.Size = New System.Drawing.Size(194, 62) + Me.btnMxHfReset.Size = New System.Drawing.Size(170, 50) Me.btnMxHfReset.TabIndex = 48 Me.btnMxHfReset.Text = "사용 시간 초기화" Me.btnMxHfReset.UseVisualStyleBackColor = True @@ -3278,10 +3043,9 @@ Partial Class MainForm 'btnMxHfRead ' Me.btnMxHfRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnMxHfRead.Location = New System.Drawing.Point(206, 6) - Me.btnMxHfRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMxHfRead.Location = New System.Drawing.Point(180, 5) Me.btnMxHfRead.Name = "btnMxHfRead" - Me.btnMxHfRead.Size = New System.Drawing.Size(194, 62) + Me.btnMxHfRead.Size = New System.Drawing.Size(170, 50) Me.btnMxHfRead.TabIndex = 46 Me.btnMxHfRead.Text = "읽기" Me.btnMxHfRead.UseVisualStyleBackColor = True @@ -3291,10 +3055,9 @@ Partial Class MainForm Me.txbMxHfBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbMxHfBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbMxHfBox.ForeColor = System.Drawing.Color.White - Me.txbMxHfBox.Location = New System.Drawing.Point(11, 75) - Me.txbMxHfBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxHfBox.Location = New System.Drawing.Point(10, 60) Me.txbMxHfBox.Name = "txbMxHfBox" - Me.txbMxHfBox.Size = New System.Drawing.Size(388, 35) + Me.txbMxHfBox.Size = New System.Drawing.Size(340, 29) Me.txbMxHfBox.TabIndex = 45 Me.txbMxHfBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbMxHfBox.Visible = False @@ -3303,19 +3066,17 @@ Partial Class MainForm ' Me.pnMxFcShot.Controls.Add(Me.txbMxFcShot) Me.pnMxFcShot.Controls.Add(Me.lbMxFcShot) - Me.pnMxFcShot.Location = New System.Drawing.Point(7, 238) - Me.pnMxFcShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxFcShot.Location = New System.Drawing.Point(6, 190) Me.pnMxFcShot.Name = "pnMxFcShot" - Me.pnMxFcShot.Size = New System.Drawing.Size(411, 50) + Me.pnMxFcShot.Size = New System.Drawing.Size(360, 40) Me.pnMxFcShot.TabIndex = 50 ' 'txbMxFcShot ' Me.txbMxFcShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxFcShot.Location = New System.Drawing.Point(166, 6) - Me.txbMxFcShot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxFcShot.Location = New System.Drawing.Point(145, 5) Me.txbMxFcShot.Name = "txbMxFcShot" - Me.txbMxFcShot.Size = New System.Drawing.Size(234, 38) + Me.txbMxFcShot.Size = New System.Drawing.Size(205, 32) Me.txbMxFcShot.TabIndex = 1 Me.txbMxFcShot.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' @@ -3323,9 +3084,9 @@ Partial Class MainForm ' Me.lbMxFcShot.AutoSize = True Me.lbMxFcShot.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxFcShot.Location = New System.Drawing.Point(14, 10) + Me.lbMxFcShot.Location = New System.Drawing.Point(12, 8) Me.lbMxFcShot.Name = "lbMxFcShot" - Me.lbMxFcShot.Size = New System.Drawing.Size(136, 32) + Me.lbMxFcShot.Size = New System.Drawing.Size(107, 24) Me.lbMxFcShot.TabIndex = 0 Me.lbMxFcShot.Text = "ShotCount" ' @@ -3340,29 +3101,27 @@ Partial Class MainForm Me.pnMxEyTime.Controls.Add(Me.txbMxEyHour) Me.pnMxEyTime.Controls.Add(Me.lbMxEyDay) Me.pnMxEyTime.Controls.Add(Me.lbMxEyTime) - Me.pnMxEyTime.Location = New System.Drawing.Point(7, 119) - Me.pnMxEyTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxEyTime.Location = New System.Drawing.Point(6, 95) Me.pnMxEyTime.Name = "pnMxEyTime" - Me.pnMxEyTime.Size = New System.Drawing.Size(411, 112) + Me.pnMxEyTime.Size = New System.Drawing.Size(360, 90) Me.pnMxEyTime.TabIndex = 49 ' 'lbMxEySec ' Me.lbMxEySec.AutoSize = True Me.lbMxEySec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxEySec.Location = New System.Drawing.Point(371, 60) + Me.lbMxEySec.Location = New System.Drawing.Point(325, 48) Me.lbMxEySec.Name = "lbMxEySec" - Me.lbMxEySec.Size = New System.Drawing.Size(37, 32) + Me.lbMxEySec.Size = New System.Drawing.Size(28, 24) Me.lbMxEySec.TabIndex = 8 Me.lbMxEySec.Text = "초" ' 'txbMxEyDay ' Me.txbMxEyDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxEyDay.Location = New System.Drawing.Point(6, 56) - Me.txbMxEyDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxEyDay.Location = New System.Drawing.Point(5, 45) Me.txbMxEyDay.Name = "txbMxEyDay" - Me.txbMxEyDay.Size = New System.Drawing.Size(91, 38) + Me.txbMxEyDay.Size = New System.Drawing.Size(80, 32) Me.txbMxEyDay.TabIndex = 1 Me.txbMxEyDay.Text = "0000" Me.txbMxEyDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3370,10 +3129,9 @@ Partial Class MainForm 'txbMxEySec ' Me.txbMxEySec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxEySec.Location = New System.Drawing.Point(320, 56) - Me.txbMxEySec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxEySec.Location = New System.Drawing.Point(280, 45) Me.txbMxEySec.Name = "txbMxEySec" - Me.txbMxEySec.Size = New System.Drawing.Size(51, 38) + Me.txbMxEySec.Size = New System.Drawing.Size(45, 32) Me.txbMxEySec.TabIndex = 7 Me.txbMxEySec.Text = "00" Me.txbMxEySec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3382,19 +3140,18 @@ Partial Class MainForm ' Me.lbMxEyMin.AutoSize = True Me.lbMxEyMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxEyMin.Location = New System.Drawing.Point(280, 60) + Me.lbMxEyMin.Location = New System.Drawing.Point(245, 48) Me.lbMxEyMin.Name = "lbMxEyMin" - Me.lbMxEyMin.Size = New System.Drawing.Size(37, 32) + Me.lbMxEyMin.Size = New System.Drawing.Size(28, 24) Me.lbMxEyMin.TabIndex = 6 Me.lbMxEyMin.Text = "분" ' 'txbMxEyMin ' Me.txbMxEyMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxEyMin.Location = New System.Drawing.Point(229, 56) - Me.txbMxEyMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxEyMin.Location = New System.Drawing.Point(200, 45) Me.txbMxEyMin.Name = "txbMxEyMin" - Me.txbMxEyMin.Size = New System.Drawing.Size(51, 38) + Me.txbMxEyMin.Size = New System.Drawing.Size(45, 32) Me.txbMxEyMin.TabIndex = 5 Me.txbMxEyMin.Text = "00" Me.txbMxEyMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3403,19 +3160,18 @@ Partial Class MainForm ' Me.lbMxEyHour.AutoSize = True Me.lbMxEyHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxEyHour.Location = New System.Drawing.Point(189, 60) + Me.lbMxEyHour.Location = New System.Drawing.Point(165, 48) Me.lbMxEyHour.Name = "lbMxEyHour" - Me.lbMxEyHour.Size = New System.Drawing.Size(37, 32) + Me.lbMxEyHour.Size = New System.Drawing.Size(28, 24) Me.lbMxEyHour.TabIndex = 4 Me.lbMxEyHour.Text = "시" ' 'txbMxEyHour ' Me.txbMxEyHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxEyHour.Location = New System.Drawing.Point(137, 56) - Me.txbMxEyHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxEyHour.Location = New System.Drawing.Point(120, 45) Me.txbMxEyHour.Name = "txbMxEyHour" - Me.txbMxEyHour.Size = New System.Drawing.Size(51, 38) + Me.txbMxEyHour.Size = New System.Drawing.Size(45, 32) Me.txbMxEyHour.TabIndex = 3 Me.txbMxEyHour.Text = "00" Me.txbMxEyHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3424,9 +3180,9 @@ Partial Class MainForm ' Me.lbMxEyDay.AutoSize = True Me.lbMxEyDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxEyDay.Location = New System.Drawing.Point(97, 60) + Me.lbMxEyDay.Location = New System.Drawing.Point(85, 48) Me.lbMxEyDay.Name = "lbMxEyDay" - Me.lbMxEyDay.Size = New System.Drawing.Size(37, 32) + Me.lbMxEyDay.Size = New System.Drawing.Size(28, 24) Me.lbMxEyDay.TabIndex = 2 Me.lbMxEyDay.Text = "일" ' @@ -3434,9 +3190,9 @@ Partial Class MainForm ' Me.lbMxEyTime.AutoSize = True Me.lbMxEyTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxEyTime.Location = New System.Drawing.Point(6, 9) + Me.lbMxEyTime.Location = New System.Drawing.Point(5, 7) Me.lbMxEyTime.Name = "lbMxEyTime" - Me.lbMxEyTime.Size = New System.Drawing.Size(222, 35) + Me.lbMxEyTime.Size = New System.Drawing.Size(171, 27) Me.lbMxEyTime.TabIndex = 0 Me.lbMxEyTime.Text = "EYE 총 사용 시간" ' @@ -3451,29 +3207,27 @@ Partial Class MainForm Me.pnMxFcTime.Controls.Add(Me.txbMxFcHour) Me.pnMxFcTime.Controls.Add(Me.lbMxFcDay) Me.pnMxFcTime.Controls.Add(Me.lbMxFcTime) - Me.pnMxFcTime.Location = New System.Drawing.Point(7, 6) - Me.pnMxFcTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxFcTime.Location = New System.Drawing.Point(6, 5) Me.pnMxFcTime.Name = "pnMxFcTime" - Me.pnMxFcTime.Size = New System.Drawing.Size(411, 112) + Me.pnMxFcTime.Size = New System.Drawing.Size(360, 90) Me.pnMxFcTime.TabIndex = 48 ' 'lbMxFcSec ' Me.lbMxFcSec.AutoSize = True Me.lbMxFcSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxFcSec.Location = New System.Drawing.Point(371, 60) + Me.lbMxFcSec.Location = New System.Drawing.Point(325, 48) Me.lbMxFcSec.Name = "lbMxFcSec" - Me.lbMxFcSec.Size = New System.Drawing.Size(37, 32) + Me.lbMxFcSec.Size = New System.Drawing.Size(28, 24) Me.lbMxFcSec.TabIndex = 8 Me.lbMxFcSec.Text = "초" ' 'txbMxFcDay ' Me.txbMxFcDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxFcDay.Location = New System.Drawing.Point(6, 56) - Me.txbMxFcDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxFcDay.Location = New System.Drawing.Point(5, 45) Me.txbMxFcDay.Name = "txbMxFcDay" - Me.txbMxFcDay.Size = New System.Drawing.Size(91, 38) + Me.txbMxFcDay.Size = New System.Drawing.Size(80, 32) Me.txbMxFcDay.TabIndex = 1 Me.txbMxFcDay.Text = "0000" Me.txbMxFcDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3481,10 +3235,9 @@ Partial Class MainForm 'txbMxFcSec ' Me.txbMxFcSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxFcSec.Location = New System.Drawing.Point(320, 56) - Me.txbMxFcSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxFcSec.Location = New System.Drawing.Point(280, 45) Me.txbMxFcSec.Name = "txbMxFcSec" - Me.txbMxFcSec.Size = New System.Drawing.Size(51, 38) + Me.txbMxFcSec.Size = New System.Drawing.Size(45, 32) Me.txbMxFcSec.TabIndex = 7 Me.txbMxFcSec.Text = "00" Me.txbMxFcSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3493,19 +3246,18 @@ Partial Class MainForm ' Me.lbMxFcMin.AutoSize = True Me.lbMxFcMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxFcMin.Location = New System.Drawing.Point(280, 60) + Me.lbMxFcMin.Location = New System.Drawing.Point(245, 48) Me.lbMxFcMin.Name = "lbMxFcMin" - Me.lbMxFcMin.Size = New System.Drawing.Size(37, 32) + Me.lbMxFcMin.Size = New System.Drawing.Size(28, 24) Me.lbMxFcMin.TabIndex = 6 Me.lbMxFcMin.Text = "분" ' 'txbMxFcMin ' Me.txbMxFcMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxFcMin.Location = New System.Drawing.Point(229, 56) - Me.txbMxFcMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxFcMin.Location = New System.Drawing.Point(200, 45) Me.txbMxFcMin.Name = "txbMxFcMin" - Me.txbMxFcMin.Size = New System.Drawing.Size(51, 38) + Me.txbMxFcMin.Size = New System.Drawing.Size(45, 32) Me.txbMxFcMin.TabIndex = 5 Me.txbMxFcMin.Text = "00" Me.txbMxFcMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3514,19 +3266,18 @@ Partial Class MainForm ' Me.lbMxFcHour.AutoSize = True Me.lbMxFcHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxFcHour.Location = New System.Drawing.Point(189, 60) + Me.lbMxFcHour.Location = New System.Drawing.Point(165, 48) Me.lbMxFcHour.Name = "lbMxFcHour" - Me.lbMxFcHour.Size = New System.Drawing.Size(37, 32) + Me.lbMxFcHour.Size = New System.Drawing.Size(28, 24) Me.lbMxFcHour.TabIndex = 4 Me.lbMxFcHour.Text = "시" ' 'txbMxFcHour ' Me.txbMxFcHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxFcHour.Location = New System.Drawing.Point(137, 56) - Me.txbMxFcHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxFcHour.Location = New System.Drawing.Point(120, 45) Me.txbMxFcHour.Name = "txbMxFcHour" - Me.txbMxFcHour.Size = New System.Drawing.Size(51, 38) + Me.txbMxFcHour.Size = New System.Drawing.Size(45, 32) Me.txbMxFcHour.TabIndex = 3 Me.txbMxFcHour.Text = "00" Me.txbMxFcHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3535,9 +3286,9 @@ Partial Class MainForm ' Me.lbMxFcDay.AutoSize = True Me.lbMxFcDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxFcDay.Location = New System.Drawing.Point(97, 60) + Me.lbMxFcDay.Location = New System.Drawing.Point(85, 48) Me.lbMxFcDay.Name = "lbMxFcDay" - Me.lbMxFcDay.Size = New System.Drawing.Size(37, 32) + Me.lbMxFcDay.Size = New System.Drawing.Size(28, 24) Me.lbMxFcDay.TabIndex = 2 Me.lbMxFcDay.Text = "일" ' @@ -3545,9 +3296,9 @@ Partial Class MainForm ' Me.lbMxFcTime.AutoSize = True Me.lbMxFcTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxFcTime.Location = New System.Drawing.Point(6, 9) + Me.lbMxFcTime.Location = New System.Drawing.Point(5, 7) Me.lbMxFcTime.Name = "lbMxFcTime" - Me.lbMxFcTime.Size = New System.Drawing.Size(240, 35) + Me.lbMxFcTime.Size = New System.Drawing.Size(184, 27) Me.lbMxFcTime.TabIndex = 0 Me.lbMxFcTime.Text = "FACE 총 사용 시간" ' @@ -3558,11 +3309,10 @@ Partial Class MainForm Me.tpMXRF.Controls.Add(Me.pnMxCuTime) Me.tpMXRF.Controls.Add(Me.pnMxDuTime) Me.tpMXRF.Controls.Add(Me.pnMxTuTime) - Me.tpMXRF.Location = New System.Drawing.Point(4, 35) - Me.tpMXRF.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.tpMXRF.Location = New System.Drawing.Point(4, 30) Me.tpMXRF.Name = "tpMXRF" - Me.tpMXRF.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.tpMXRF.Size = New System.Drawing.Size(426, 530) + Me.tpMXRF.Padding = New System.Windows.Forms.Padding(3) + Me.tpMXRF.Size = New System.Drawing.Size(372, 421) Me.tpMXRF.TabIndex = 2 Me.tpMXRF.Text = "Etc" ' @@ -3571,20 +3321,18 @@ Partial Class MainForm Me.pnMxEtResult.Controls.Add(Me.btnMxEtReset) Me.pnMxEtResult.Controls.Add(Me.btnMxEtRead) Me.pnMxEtResult.Controls.Add(Me.txbMxEtBox) - Me.pnMxEtResult.Location = New System.Drawing.Point(7, 400) - Me.pnMxEtResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxEtResult.Location = New System.Drawing.Point(6, 320) Me.pnMxEtResult.Name = "pnMxEtResult" - Me.pnMxEtResult.Size = New System.Drawing.Size(411, 116) + Me.pnMxEtResult.Size = New System.Drawing.Size(360, 93) Me.pnMxEtResult.TabIndex = 54 ' 'btnMxEtReset ' Me.btnMxEtReset.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.btnMxEtReset.ForeColor = System.Drawing.Color.Red - Me.btnMxEtReset.Location = New System.Drawing.Point(11, 6) - Me.btnMxEtReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMxEtReset.Location = New System.Drawing.Point(10, 5) Me.btnMxEtReset.Name = "btnMxEtReset" - Me.btnMxEtReset.Size = New System.Drawing.Size(194, 62) + Me.btnMxEtReset.Size = New System.Drawing.Size(170, 50) Me.btnMxEtReset.TabIndex = 48 Me.btnMxEtReset.Text = "사용 시간 초기화" Me.btnMxEtReset.UseVisualStyleBackColor = True @@ -3592,10 +3340,9 @@ Partial Class MainForm 'btnMxEtRead ' Me.btnMxEtRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnMxEtRead.Location = New System.Drawing.Point(206, 6) - Me.btnMxEtRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnMxEtRead.Location = New System.Drawing.Point(180, 5) Me.btnMxEtRead.Name = "btnMxEtRead" - Me.btnMxEtRead.Size = New System.Drawing.Size(194, 62) + Me.btnMxEtRead.Size = New System.Drawing.Size(170, 50) Me.btnMxEtRead.TabIndex = 46 Me.btnMxEtRead.Text = "읽기" Me.btnMxEtRead.UseVisualStyleBackColor = True @@ -3605,10 +3352,9 @@ Partial Class MainForm Me.txbMxEtBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbMxEtBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbMxEtBox.ForeColor = System.Drawing.Color.White - Me.txbMxEtBox.Location = New System.Drawing.Point(11, 75) - Me.txbMxEtBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxEtBox.Location = New System.Drawing.Point(10, 60) Me.txbMxEtBox.Name = "txbMxEtBox" - Me.txbMxEtBox.Size = New System.Drawing.Size(388, 35) + Me.txbMxEtBox.Size = New System.Drawing.Size(340, 29) Me.txbMxEtBox.TabIndex = 45 Me.txbMxEtBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbMxEtBox.Visible = False @@ -3624,29 +3370,27 @@ Partial Class MainForm Me.pnMxCuTime.Controls.Add(Me.txbMxCuHour) Me.pnMxCuTime.Controls.Add(Me.lbMxCuDay) Me.pnMxCuTime.Controls.Add(Me.lbMxCuTime) - Me.pnMxCuTime.Location = New System.Drawing.Point(7, 244) - Me.pnMxCuTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxCuTime.Location = New System.Drawing.Point(6, 195) Me.pnMxCuTime.Name = "pnMxCuTime" - Me.pnMxCuTime.Size = New System.Drawing.Size(411, 112) + Me.pnMxCuTime.Size = New System.Drawing.Size(360, 90) Me.pnMxCuTime.TabIndex = 51 ' 'lbMxCuSec ' Me.lbMxCuSec.AutoSize = True Me.lbMxCuSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxCuSec.Location = New System.Drawing.Point(371, 60) + Me.lbMxCuSec.Location = New System.Drawing.Point(325, 48) Me.lbMxCuSec.Name = "lbMxCuSec" - Me.lbMxCuSec.Size = New System.Drawing.Size(37, 32) + Me.lbMxCuSec.Size = New System.Drawing.Size(28, 24) Me.lbMxCuSec.TabIndex = 8 Me.lbMxCuSec.Text = "초" ' 'txbMxCuDay ' Me.txbMxCuDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxCuDay.Location = New System.Drawing.Point(6, 56) - Me.txbMxCuDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxCuDay.Location = New System.Drawing.Point(5, 45) Me.txbMxCuDay.Name = "txbMxCuDay" - Me.txbMxCuDay.Size = New System.Drawing.Size(91, 38) + Me.txbMxCuDay.Size = New System.Drawing.Size(80, 32) Me.txbMxCuDay.TabIndex = 1 Me.txbMxCuDay.Text = "0000" Me.txbMxCuDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3654,10 +3398,9 @@ Partial Class MainForm 'txbMxCuSec ' Me.txbMxCuSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxCuSec.Location = New System.Drawing.Point(320, 56) - Me.txbMxCuSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxCuSec.Location = New System.Drawing.Point(280, 45) Me.txbMxCuSec.Name = "txbMxCuSec" - Me.txbMxCuSec.Size = New System.Drawing.Size(51, 38) + Me.txbMxCuSec.Size = New System.Drawing.Size(45, 32) Me.txbMxCuSec.TabIndex = 7 Me.txbMxCuSec.Text = "00" Me.txbMxCuSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3666,19 +3409,18 @@ Partial Class MainForm ' Me.lbMxCuMin.AutoSize = True Me.lbMxCuMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxCuMin.Location = New System.Drawing.Point(280, 60) + Me.lbMxCuMin.Location = New System.Drawing.Point(245, 48) Me.lbMxCuMin.Name = "lbMxCuMin" - Me.lbMxCuMin.Size = New System.Drawing.Size(37, 32) + Me.lbMxCuMin.Size = New System.Drawing.Size(28, 24) Me.lbMxCuMin.TabIndex = 6 Me.lbMxCuMin.Text = "분" ' 'txbMxCuMin ' Me.txbMxCuMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxCuMin.Location = New System.Drawing.Point(229, 56) - Me.txbMxCuMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxCuMin.Location = New System.Drawing.Point(200, 45) Me.txbMxCuMin.Name = "txbMxCuMin" - Me.txbMxCuMin.Size = New System.Drawing.Size(51, 38) + Me.txbMxCuMin.Size = New System.Drawing.Size(45, 32) Me.txbMxCuMin.TabIndex = 5 Me.txbMxCuMin.Text = "00" Me.txbMxCuMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3687,19 +3429,18 @@ Partial Class MainForm ' Me.lbMxCuHour.AutoSize = True Me.lbMxCuHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxCuHour.Location = New System.Drawing.Point(189, 60) + Me.lbMxCuHour.Location = New System.Drawing.Point(165, 48) Me.lbMxCuHour.Name = "lbMxCuHour" - Me.lbMxCuHour.Size = New System.Drawing.Size(37, 32) + Me.lbMxCuHour.Size = New System.Drawing.Size(28, 24) Me.lbMxCuHour.TabIndex = 4 Me.lbMxCuHour.Text = "시" ' 'txbMxCuHour ' Me.txbMxCuHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxCuHour.Location = New System.Drawing.Point(137, 56) - Me.txbMxCuHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxCuHour.Location = New System.Drawing.Point(120, 45) Me.txbMxCuHour.Name = "txbMxCuHour" - Me.txbMxCuHour.Size = New System.Drawing.Size(51, 38) + Me.txbMxCuHour.Size = New System.Drawing.Size(45, 32) Me.txbMxCuHour.TabIndex = 3 Me.txbMxCuHour.Text = "00" Me.txbMxCuHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3708,9 +3449,9 @@ Partial Class MainForm ' Me.lbMxCuDay.AutoSize = True Me.lbMxCuDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxCuDay.Location = New System.Drawing.Point(97, 60) + Me.lbMxCuDay.Location = New System.Drawing.Point(85, 48) Me.lbMxCuDay.Name = "lbMxCuDay" - Me.lbMxCuDay.Size = New System.Drawing.Size(37, 32) + Me.lbMxCuDay.Size = New System.Drawing.Size(28, 24) Me.lbMxCuDay.TabIndex = 2 Me.lbMxCuDay.Text = "일" ' @@ -3718,9 +3459,9 @@ Partial Class MainForm ' Me.lbMxCuTime.AutoSize = True Me.lbMxCuTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxCuTime.Location = New System.Drawing.Point(6, 9) + Me.lbMxCuTime.Location = New System.Drawing.Point(5, 7) Me.lbMxCuTime.Name = "lbMxCuTime" - Me.lbMxCuTime.Size = New System.Drawing.Size(234, 35) + Me.lbMxCuTime.Size = New System.Drawing.Size(180, 27) Me.lbMxCuTime.TabIndex = 0 Me.lbMxCuTime.Text = "Cos-Up 사용 시간" ' @@ -3735,29 +3476,27 @@ Partial Class MainForm Me.pnMxDuTime.Controls.Add(Me.txbMxDuHour) Me.pnMxDuTime.Controls.Add(Me.lbMxDuDay) Me.pnMxDuTime.Controls.Add(Me.lbMxDuTime) - Me.pnMxDuTime.Location = New System.Drawing.Point(7, 125) - Me.pnMxDuTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxDuTime.Location = New System.Drawing.Point(6, 100) Me.pnMxDuTime.Name = "pnMxDuTime" - Me.pnMxDuTime.Size = New System.Drawing.Size(411, 112) + Me.pnMxDuTime.Size = New System.Drawing.Size(360, 90) Me.pnMxDuTime.TabIndex = 50 ' 'lbMxDuSec ' Me.lbMxDuSec.AutoSize = True Me.lbMxDuSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxDuSec.Location = New System.Drawing.Point(371, 60) + Me.lbMxDuSec.Location = New System.Drawing.Point(325, 48) Me.lbMxDuSec.Name = "lbMxDuSec" - Me.lbMxDuSec.Size = New System.Drawing.Size(37, 32) + Me.lbMxDuSec.Size = New System.Drawing.Size(28, 24) Me.lbMxDuSec.TabIndex = 8 Me.lbMxDuSec.Text = "초" ' 'txbMxDuDay ' Me.txbMxDuDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxDuDay.Location = New System.Drawing.Point(6, 56) - Me.txbMxDuDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxDuDay.Location = New System.Drawing.Point(5, 45) Me.txbMxDuDay.Name = "txbMxDuDay" - Me.txbMxDuDay.Size = New System.Drawing.Size(91, 38) + Me.txbMxDuDay.Size = New System.Drawing.Size(80, 32) Me.txbMxDuDay.TabIndex = 1 Me.txbMxDuDay.Text = "0000" Me.txbMxDuDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3765,10 +3504,9 @@ Partial Class MainForm 'txbMxDuSec ' Me.txbMxDuSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxDuSec.Location = New System.Drawing.Point(320, 56) - Me.txbMxDuSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxDuSec.Location = New System.Drawing.Point(280, 45) Me.txbMxDuSec.Name = "txbMxDuSec" - Me.txbMxDuSec.Size = New System.Drawing.Size(51, 38) + Me.txbMxDuSec.Size = New System.Drawing.Size(45, 32) Me.txbMxDuSec.TabIndex = 7 Me.txbMxDuSec.Text = "00" Me.txbMxDuSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3777,19 +3515,18 @@ Partial Class MainForm ' Me.lbMxDuMin.AutoSize = True Me.lbMxDuMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxDuMin.Location = New System.Drawing.Point(280, 60) + Me.lbMxDuMin.Location = New System.Drawing.Point(245, 48) Me.lbMxDuMin.Name = "lbMxDuMin" - Me.lbMxDuMin.Size = New System.Drawing.Size(37, 32) + Me.lbMxDuMin.Size = New System.Drawing.Size(28, 24) Me.lbMxDuMin.TabIndex = 6 Me.lbMxDuMin.Text = "분" ' 'txbMxDuMin ' Me.txbMxDuMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxDuMin.Location = New System.Drawing.Point(229, 56) - Me.txbMxDuMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxDuMin.Location = New System.Drawing.Point(200, 45) Me.txbMxDuMin.Name = "txbMxDuMin" - Me.txbMxDuMin.Size = New System.Drawing.Size(51, 38) + Me.txbMxDuMin.Size = New System.Drawing.Size(45, 32) Me.txbMxDuMin.TabIndex = 5 Me.txbMxDuMin.Text = "00" Me.txbMxDuMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3798,19 +3535,18 @@ Partial Class MainForm ' Me.lbMxDuHour.AutoSize = True Me.lbMxDuHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxDuHour.Location = New System.Drawing.Point(189, 60) + Me.lbMxDuHour.Location = New System.Drawing.Point(165, 48) Me.lbMxDuHour.Name = "lbMxDuHour" - Me.lbMxDuHour.Size = New System.Drawing.Size(37, 32) + Me.lbMxDuHour.Size = New System.Drawing.Size(28, 24) Me.lbMxDuHour.TabIndex = 4 Me.lbMxDuHour.Text = "시" ' 'txbMxDuHour ' Me.txbMxDuHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxDuHour.Location = New System.Drawing.Point(137, 56) - Me.txbMxDuHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxDuHour.Location = New System.Drawing.Point(120, 45) Me.txbMxDuHour.Name = "txbMxDuHour" - Me.txbMxDuHour.Size = New System.Drawing.Size(51, 38) + Me.txbMxDuHour.Size = New System.Drawing.Size(45, 32) Me.txbMxDuHour.TabIndex = 3 Me.txbMxDuHour.Text = "00" Me.txbMxDuHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3819,9 +3555,9 @@ Partial Class MainForm ' Me.lbMxDuDay.AutoSize = True Me.lbMxDuDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxDuDay.Location = New System.Drawing.Point(97, 60) + Me.lbMxDuDay.Location = New System.Drawing.Point(85, 48) Me.lbMxDuDay.Name = "lbMxDuDay" - Me.lbMxDuDay.Size = New System.Drawing.Size(37, 32) + Me.lbMxDuDay.Size = New System.Drawing.Size(28, 24) Me.lbMxDuDay.TabIndex = 2 Me.lbMxDuDay.Text = "일" ' @@ -3829,9 +3565,9 @@ Partial Class MainForm ' Me.lbMxDuTime.AutoSize = True Me.lbMxDuTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxDuTime.Location = New System.Drawing.Point(6, 9) + Me.lbMxDuTime.Location = New System.Drawing.Point(5, 7) Me.lbMxDuTime.Name = "lbMxDuTime" - Me.lbMxDuTime.Size = New System.Drawing.Size(251, 35) + Me.lbMxDuTime.Size = New System.Drawing.Size(194, 27) Me.lbMxDuTime.TabIndex = 0 Me.lbMxDuTime.Text = "Daily-Up 사용 시간" ' @@ -3846,29 +3582,27 @@ Partial Class MainForm Me.pnMxTuTime.Controls.Add(Me.txbMxTuHour) Me.pnMxTuTime.Controls.Add(Me.lbMxTuDay) Me.pnMxTuTime.Controls.Add(Me.lbMxTuTime) - Me.pnMxTuTime.Location = New System.Drawing.Point(7, 6) - Me.pnMxTuTime.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnMxTuTime.Location = New System.Drawing.Point(6, 5) Me.pnMxTuTime.Name = "pnMxTuTime" - Me.pnMxTuTime.Size = New System.Drawing.Size(411, 112) + Me.pnMxTuTime.Size = New System.Drawing.Size(360, 90) Me.pnMxTuTime.TabIndex = 49 ' 'lbMxTuSec ' Me.lbMxTuSec.AutoSize = True Me.lbMxTuSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxTuSec.Location = New System.Drawing.Point(371, 60) + Me.lbMxTuSec.Location = New System.Drawing.Point(325, 48) Me.lbMxTuSec.Name = "lbMxTuSec" - Me.lbMxTuSec.Size = New System.Drawing.Size(37, 32) + Me.lbMxTuSec.Size = New System.Drawing.Size(28, 24) Me.lbMxTuSec.TabIndex = 8 Me.lbMxTuSec.Text = "초" ' 'txbMxTuDay ' Me.txbMxTuDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxTuDay.Location = New System.Drawing.Point(6, 56) - Me.txbMxTuDay.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxTuDay.Location = New System.Drawing.Point(5, 45) Me.txbMxTuDay.Name = "txbMxTuDay" - Me.txbMxTuDay.Size = New System.Drawing.Size(91, 38) + Me.txbMxTuDay.Size = New System.Drawing.Size(80, 32) Me.txbMxTuDay.TabIndex = 1 Me.txbMxTuDay.Text = "0000" Me.txbMxTuDay.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3876,10 +3610,9 @@ Partial Class MainForm 'txbMxTuSec ' Me.txbMxTuSec.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxTuSec.Location = New System.Drawing.Point(320, 56) - Me.txbMxTuSec.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxTuSec.Location = New System.Drawing.Point(280, 45) Me.txbMxTuSec.Name = "txbMxTuSec" - Me.txbMxTuSec.Size = New System.Drawing.Size(51, 38) + Me.txbMxTuSec.Size = New System.Drawing.Size(45, 32) Me.txbMxTuSec.TabIndex = 7 Me.txbMxTuSec.Text = "00" Me.txbMxTuSec.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3888,19 +3621,18 @@ Partial Class MainForm ' Me.lbMxTuMin.AutoSize = True Me.lbMxTuMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxTuMin.Location = New System.Drawing.Point(280, 60) + Me.lbMxTuMin.Location = New System.Drawing.Point(245, 48) Me.lbMxTuMin.Name = "lbMxTuMin" - Me.lbMxTuMin.Size = New System.Drawing.Size(37, 32) + Me.lbMxTuMin.Size = New System.Drawing.Size(28, 24) Me.lbMxTuMin.TabIndex = 6 Me.lbMxTuMin.Text = "분" ' 'txbMxTuMin ' Me.txbMxTuMin.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxTuMin.Location = New System.Drawing.Point(229, 56) - Me.txbMxTuMin.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxTuMin.Location = New System.Drawing.Point(200, 45) Me.txbMxTuMin.Name = "txbMxTuMin" - Me.txbMxTuMin.Size = New System.Drawing.Size(51, 38) + Me.txbMxTuMin.Size = New System.Drawing.Size(45, 32) Me.txbMxTuMin.TabIndex = 5 Me.txbMxTuMin.Text = "00" Me.txbMxTuMin.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3909,19 +3641,18 @@ Partial Class MainForm ' Me.lbMxTuHour.AutoSize = True Me.lbMxTuHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxTuHour.Location = New System.Drawing.Point(189, 60) + Me.lbMxTuHour.Location = New System.Drawing.Point(165, 48) Me.lbMxTuHour.Name = "lbMxTuHour" - Me.lbMxTuHour.Size = New System.Drawing.Size(37, 32) + Me.lbMxTuHour.Size = New System.Drawing.Size(28, 24) Me.lbMxTuHour.TabIndex = 4 Me.lbMxTuHour.Text = "시" ' 'txbMxTuHour ' Me.txbMxTuHour.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbMxTuHour.Location = New System.Drawing.Point(137, 56) - Me.txbMxTuHour.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMxTuHour.Location = New System.Drawing.Point(120, 45) Me.txbMxTuHour.Name = "txbMxTuHour" - Me.txbMxTuHour.Size = New System.Drawing.Size(51, 38) + Me.txbMxTuHour.Size = New System.Drawing.Size(45, 32) Me.txbMxTuHour.TabIndex = 3 Me.txbMxTuHour.Text = "00" Me.txbMxTuHour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -3930,9 +3661,9 @@ Partial Class MainForm ' Me.lbMxTuDay.AutoSize = True Me.lbMxTuDay.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxTuDay.Location = New System.Drawing.Point(97, 60) + Me.lbMxTuDay.Location = New System.Drawing.Point(85, 48) Me.lbMxTuDay.Name = "lbMxTuDay" - Me.lbMxTuDay.Size = New System.Drawing.Size(37, 32) + Me.lbMxTuDay.Size = New System.Drawing.Size(28, 24) Me.lbMxTuDay.TabIndex = 2 Me.lbMxTuDay.Text = "일" ' @@ -3940,9 +3671,9 @@ Partial Class MainForm ' Me.lbMxTuTime.AutoSize = True Me.lbMxTuTime.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbMxTuTime.Location = New System.Drawing.Point(6, 9) + Me.lbMxTuTime.Location = New System.Drawing.Point(5, 7) Me.lbMxTuTime.Name = "lbMxTuTime" - Me.lbMxTuTime.Size = New System.Drawing.Size(253, 35) + Me.lbMxTuTime.Size = New System.Drawing.Size(196, 27) Me.lbMxTuTime.TabIndex = 0 Me.lbMxTuTime.Text = "Tight-Up 사용 시간" ' @@ -3951,11 +3682,9 @@ Partial Class MainForm Me.gbDevice.Controls.Add(Me.gbDvInfo) Me.gbDevice.Controls.Add(Me.gbDvAuth) Me.gbDevice.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbDevice.Location = New System.Drawing.Point(926, 6) - Me.gbDevice.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbDevice.Location = New System.Drawing.Point(810, 5) Me.gbDevice.Name = "gbDevice" - Me.gbDevice.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbDevice.Size = New System.Drawing.Size(457, 631) + Me.gbDevice.Size = New System.Drawing.Size(400, 505) Me.gbDevice.TabIndex = 1 Me.gbDevice.TabStop = False Me.gbDevice.Text = "본체 설정" @@ -3966,16 +3695,13 @@ Partial Class MainForm Me.gbDvInfo.Controls.Add(Me.pnDvAbroad) Me.gbDvInfo.Controls.Add(Me.pnDvResult) Me.gbDvInfo.Controls.Add(Me.pnDvSerial) - Me.gbDvInfo.Controls.Add(Me.pnDvMoTy) Me.gbDvInfo.Controls.Add(Me.pnDvDate) Me.gbDvInfo.Controls.Add(Me.pnDvCode) Me.gbDvInfo.Controls.Add(Me.pnDvNumber) Me.gbDvInfo.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbDvInfo.Location = New System.Drawing.Point(11, 156) - Me.gbDvInfo.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbDvInfo.Location = New System.Drawing.Point(10, 125) Me.gbDvInfo.Name = "gbDvInfo" - Me.gbDvInfo.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbDvInfo.Size = New System.Drawing.Size(434, 456) + Me.gbDvInfo.Size = New System.Drawing.Size(380, 365) Me.gbDvInfo.TabIndex = 54 Me.gbDvInfo.TabStop = False Me.gbDvInfo.Text = "제품 정보 설정" @@ -3984,28 +3710,26 @@ Partial Class MainForm ' Me.pnDvAgency.Controls.Add(Me.txbDvAgency) Me.pnDvAgency.Controls.Add(Me.lbDvAgency) - Me.pnDvAgency.Location = New System.Drawing.Point(11, 338) - Me.pnDvAgency.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDvAgency.Location = New System.Drawing.Point(10, 230) Me.pnDvAgency.Name = "pnDvAgency" - Me.pnDvAgency.Size = New System.Drawing.Size(411, 50) + Me.pnDvAgency.Size = New System.Drawing.Size(360, 40) Me.pnDvAgency.TabIndex = 7 ' 'txbDvAgency ' Me.txbDvAgency.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDvAgency.Location = New System.Drawing.Point(166, 6) - Me.txbDvAgency.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDvAgency.Location = New System.Drawing.Point(145, 5) Me.txbDvAgency.Name = "txbDvAgency" - Me.txbDvAgency.Size = New System.Drawing.Size(234, 38) + Me.txbDvAgency.Size = New System.Drawing.Size(205, 32) Me.txbDvAgency.TabIndex = 1 ' 'lbDvAgency ' Me.lbDvAgency.AutoSize = True Me.lbDvAgency.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDvAgency.Location = New System.Drawing.Point(6, 9) + Me.lbDvAgency.Location = New System.Drawing.Point(5, 7) Me.lbDvAgency.Name = "lbDvAgency" - Me.lbDvAgency.Size = New System.Drawing.Size(129, 32) + Me.lbDvAgency.Size = New System.Drawing.Size(100, 24) Me.lbDvAgency.TabIndex = 0 Me.lbDvAgency.Text = "대리점코드" ' @@ -4013,28 +3737,26 @@ Partial Class MainForm ' Me.pnDvAbroad.Controls.Add(Me.txbDvAbroad) Me.pnDvAbroad.Controls.Add(Me.lbDvAbroad) - Me.pnDvAbroad.Location = New System.Drawing.Point(11, 288) - Me.pnDvAbroad.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDvAbroad.Location = New System.Drawing.Point(10, 190) Me.pnDvAbroad.Name = "pnDvAbroad" - Me.pnDvAbroad.Size = New System.Drawing.Size(411, 50) + Me.pnDvAbroad.Size = New System.Drawing.Size(360, 40) Me.pnDvAbroad.TabIndex = 6 ' 'txbDvAbroad ' Me.txbDvAbroad.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDvAbroad.Location = New System.Drawing.Point(166, 6) - Me.txbDvAbroad.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDvAbroad.Location = New System.Drawing.Point(145, 5) Me.txbDvAbroad.Name = "txbDvAbroad" - Me.txbDvAbroad.Size = New System.Drawing.Size(234, 38) + Me.txbDvAbroad.Size = New System.Drawing.Size(205, 32) Me.txbDvAbroad.TabIndex = 1 ' 'lbDvAbroad ' Me.lbDvAbroad.AutoSize = True Me.lbDvAbroad.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDvAbroad.Location = New System.Drawing.Point(26, 9) + Me.lbDvAbroad.Location = New System.Drawing.Point(23, 7) Me.lbDvAbroad.Name = "lbDvAbroad" - Me.lbDvAbroad.Size = New System.Drawing.Size(106, 32) + Me.lbDvAbroad.Size = New System.Drawing.Size(82, 24) Me.lbDvAbroad.TabIndex = 0 Me.lbDvAbroad.Text = "국가코드" ' @@ -4043,19 +3765,17 @@ Partial Class MainForm Me.pnDvResult.Controls.Add(Me.btnDvWrite) Me.pnDvResult.Controls.Add(Me.btnDvRead) Me.pnDvResult.Controls.Add(Me.txbDvInfoBox) - Me.pnDvResult.Location = New System.Drawing.Point(11, 388) - Me.pnDvResult.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDvResult.Location = New System.Drawing.Point(10, 270) Me.pnDvResult.Name = "pnDvResult" - Me.pnDvResult.Size = New System.Drawing.Size(411, 62) + Me.pnDvResult.Size = New System.Drawing.Size(360, 50) Me.pnDvResult.TabIndex = 5 ' 'btnDvWrite ' Me.btnDvWrite.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnDvWrite.Location = New System.Drawing.Point(286, 6) - Me.btnDvWrite.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnDvWrite.Location = New System.Drawing.Point(250, 5) Me.btnDvWrite.Name = "btnDvWrite" - Me.btnDvWrite.Size = New System.Drawing.Size(120, 50) + Me.btnDvWrite.Size = New System.Drawing.Size(105, 40) Me.btnDvWrite.TabIndex = 47 Me.btnDvWrite.Text = "쓰기" Me.btnDvWrite.UseVisualStyleBackColor = True @@ -4063,10 +3783,9 @@ Partial Class MainForm 'btnDvRead ' Me.btnDvRead.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnDvRead.Location = New System.Drawing.Point(166, 6) - Me.btnDvRead.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnDvRead.Location = New System.Drawing.Point(145, 5) Me.btnDvRead.Name = "btnDvRead" - Me.btnDvRead.Size = New System.Drawing.Size(120, 50) + Me.btnDvRead.Size = New System.Drawing.Size(105, 40) Me.btnDvRead.TabIndex = 46 Me.btnDvRead.Text = "읽기" Me.btnDvRead.UseVisualStyleBackColor = True @@ -4076,10 +3795,9 @@ Partial Class MainForm Me.txbDvInfoBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbDvInfoBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbDvInfoBox.ForeColor = System.Drawing.Color.White - Me.txbDvInfoBox.Location = New System.Drawing.Point(11, 15) - Me.txbDvInfoBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDvInfoBox.Location = New System.Drawing.Point(10, 12) Me.txbDvInfoBox.Name = "txbDvInfoBox" - Me.txbDvInfoBox.Size = New System.Drawing.Size(148, 35) + Me.txbDvInfoBox.Size = New System.Drawing.Size(130, 29) Me.txbDvInfoBox.TabIndex = 45 Me.txbDvInfoBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbDvInfoBox.Visible = False @@ -4088,99 +3806,29 @@ Partial Class MainForm ' Me.pnDvSerial.Controls.Add(Me.nudDvSerial) Me.pnDvSerial.Controls.Add(Me.lbDvSerial) - Me.pnDvSerial.Location = New System.Drawing.Point(11, 238) - Me.pnDvSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDvSerial.Location = New System.Drawing.Point(10, 150) Me.pnDvSerial.Name = "pnDvSerial" - Me.pnDvSerial.Size = New System.Drawing.Size(411, 50) + Me.pnDvSerial.Size = New System.Drawing.Size(360, 40) Me.pnDvSerial.TabIndex = 4 ' 'nudDvSerial ' - Me.nudDvSerial.Location = New System.Drawing.Point(166, 6) - Me.nudDvSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.nudDvSerial.Location = New System.Drawing.Point(145, 5) Me.nudDvSerial.Maximum = New Decimal(New Integer() {500000, 0, 0, 0}) Me.nudDvSerial.Name = "nudDvSerial" - Me.nudDvSerial.Size = New System.Drawing.Size(234, 38) + Me.nudDvSerial.Size = New System.Drawing.Size(205, 32) Me.nudDvSerial.TabIndex = 4 ' 'lbDvSerial ' Me.lbDvSerial.AutoSize = True Me.lbDvSerial.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDvSerial.Location = New System.Drawing.Point(6, 9) + Me.lbDvSerial.Location = New System.Drawing.Point(5, 7) Me.lbDvSerial.Name = "lbDvSerial" - Me.lbDvSerial.Size = New System.Drawing.Size(129, 32) + Me.lbDvSerial.Size = New System.Drawing.Size(100, 24) Me.lbDvSerial.TabIndex = 0 Me.lbDvSerial.Text = "시리얼번호" ' - 'pnDvMoTy - ' - Me.pnDvMoTy.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle - Me.pnDvMoTy.Controls.Add(Me.pnDvModel) - Me.pnDvMoTy.Location = New System.Drawing.Point(11, 188) - Me.pnDvMoTy.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.pnDvMoTy.Name = "pnDvMoTy" - Me.pnDvMoTy.Size = New System.Drawing.Size(411, 50) - Me.pnDvMoTy.TabIndex = 3 - ' - 'pnDvModel - ' - Me.pnDvModel.Controls.Add(Me.rdbDvALPHA) - Me.pnDvModel.Controls.Add(Me.rdbDvLUX) - Me.pnDvModel.Controls.Add(Me.rdbDvPRO) - Me.pnDvModel.Controls.Add(Me.lbDvModel) - Me.pnDvModel.Location = New System.Drawing.Point(0, 0) - Me.pnDvModel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.pnDvModel.Name = "pnDvModel" - Me.pnDvModel.Size = New System.Drawing.Size(411, 50) - Me.pnDvModel.TabIndex = 1 - ' - 'rdbDvALPHA - ' - Me.rdbDvALPHA.AutoSize = True - Me.rdbDvALPHA.Location = New System.Drawing.Point(297, 9) - Me.rdbDvALPHA.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbDvALPHA.Name = "rdbDvALPHA" - Me.rdbDvALPHA.Size = New System.Drawing.Size(116, 36) - Me.rdbDvALPHA.TabIndex = 3 - Me.rdbDvALPHA.TabStop = True - Me.rdbDvALPHA.Text = "ALPHA" - Me.rdbDvALPHA.UseVisualStyleBackColor = True - ' - 'rdbDvLUX - ' - Me.rdbDvLUX.AutoSize = True - Me.rdbDvLUX.Location = New System.Drawing.Point(208, 9) - Me.rdbDvLUX.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbDvLUX.Name = "rdbDvLUX" - Me.rdbDvLUX.Size = New System.Drawing.Size(85, 36) - Me.rdbDvLUX.TabIndex = 2 - Me.rdbDvLUX.TabStop = True - Me.rdbDvLUX.Text = "LUX" - Me.rdbDvLUX.UseVisualStyleBackColor = True - ' - 'rdbDvPRO - ' - Me.rdbDvPRO.AutoSize = True - Me.rdbDvPRO.Location = New System.Drawing.Point(126, 9) - Me.rdbDvPRO.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.rdbDvPRO.Name = "rdbDvPRO" - Me.rdbDvPRO.Size = New System.Drawing.Size(83, 36) - Me.rdbDvPRO.TabIndex = 1 - Me.rdbDvPRO.TabStop = True - Me.rdbDvPRO.Text = "PRO" - Me.rdbDvPRO.UseVisualStyleBackColor = True - ' - 'lbDvModel - ' - Me.lbDvModel.AutoSize = True - Me.lbDvModel.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDvModel.Location = New System.Drawing.Point(26, 9) - Me.lbDvModel.Name = "lbDvModel" - Me.lbDvModel.Size = New System.Drawing.Size(106, 32) - Me.lbDvModel.TabIndex = 0 - Me.lbDvModel.Text = "모델종류" - ' 'pnDvDate ' Me.pnDvDate.Controls.Add(Me.nudDvMonth) @@ -4188,43 +3836,40 @@ Partial Class MainForm Me.pnDvDate.Controls.Add(Me.lbDvMonth) Me.pnDvDate.Controls.Add(Me.lbDvYear) Me.pnDvDate.Controls.Add(Me.lbDvDate) - Me.pnDvDate.Location = New System.Drawing.Point(11, 138) - Me.pnDvDate.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDvDate.Location = New System.Drawing.Point(10, 110) Me.pnDvDate.Name = "pnDvDate" - Me.pnDvDate.Size = New System.Drawing.Size(411, 50) + Me.pnDvDate.Size = New System.Drawing.Size(360, 40) Me.pnDvDate.TabIndex = 2 ' 'nudDvMonth ' - Me.nudDvMonth.Location = New System.Drawing.Point(326, 6) - Me.nudDvMonth.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.nudDvMonth.Location = New System.Drawing.Point(285, 5) Me.nudDvMonth.Name = "nudDvMonth" - Me.nudDvMonth.Size = New System.Drawing.Size(74, 38) + Me.nudDvMonth.Size = New System.Drawing.Size(65, 32) Me.nudDvMonth.TabIndex = 4 ' 'nudDvYear ' - Me.nudDvYear.Location = New System.Drawing.Point(200, 6) - Me.nudDvYear.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.nudDvYear.Location = New System.Drawing.Point(175, 5) Me.nudDvYear.Name = "nudDvYear" - Me.nudDvYear.Size = New System.Drawing.Size(74, 38) + Me.nudDvYear.Size = New System.Drawing.Size(65, 32) Me.nudDvYear.TabIndex = 3 ' 'lbDvMonth ' Me.lbDvMonth.AutoSize = True - Me.lbDvMonth.Location = New System.Drawing.Point(286, 10) + Me.lbDvMonth.Location = New System.Drawing.Point(250, 8) Me.lbDvMonth.Name = "lbDvMonth" - Me.lbDvMonth.Size = New System.Drawing.Size(37, 32) + Me.lbDvMonth.Size = New System.Drawing.Size(28, 24) Me.lbDvMonth.TabIndex = 2 Me.lbDvMonth.Text = "월" ' 'lbDvYear ' Me.lbDvYear.AutoSize = True - Me.lbDvYear.Location = New System.Drawing.Point(160, 10) + Me.lbDvYear.Location = New System.Drawing.Point(140, 8) Me.lbDvYear.Name = "lbDvYear" - Me.lbDvYear.Size = New System.Drawing.Size(37, 32) + Me.lbDvYear.Size = New System.Drawing.Size(28, 24) Me.lbDvYear.TabIndex = 1 Me.lbDvYear.Text = "년" ' @@ -4232,9 +3877,9 @@ Partial Class MainForm ' Me.lbDvDate.AutoSize = True Me.lbDvDate.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDvDate.Location = New System.Drawing.Point(26, 9) + Me.lbDvDate.Location = New System.Drawing.Point(23, 7) Me.lbDvDate.Name = "lbDvDate" - Me.lbDvDate.Size = New System.Drawing.Size(106, 32) + Me.lbDvDate.Size = New System.Drawing.Size(82, 24) Me.lbDvDate.TabIndex = 0 Me.lbDvDate.Text = "제조일자" ' @@ -4242,28 +3887,26 @@ Partial Class MainForm ' Me.pnDvCode.Controls.Add(Me.txbDvCode) Me.pnDvCode.Controls.Add(Me.lbDvCode) - Me.pnDvCode.Location = New System.Drawing.Point(11, 88) - Me.pnDvCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDvCode.Location = New System.Drawing.Point(10, 70) Me.pnDvCode.Name = "pnDvCode" - Me.pnDvCode.Size = New System.Drawing.Size(411, 50) + Me.pnDvCode.Size = New System.Drawing.Size(360, 40) Me.pnDvCode.TabIndex = 1 ' 'txbDvCode ' Me.txbDvCode.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDvCode.Location = New System.Drawing.Point(166, 6) - Me.txbDvCode.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDvCode.Location = New System.Drawing.Point(145, 5) Me.txbDvCode.Name = "txbDvCode" - Me.txbDvCode.Size = New System.Drawing.Size(234, 38) + Me.txbDvCode.Size = New System.Drawing.Size(205, 32) Me.txbDvCode.TabIndex = 1 ' 'lbDvCode ' Me.lbDvCode.AutoSize = True Me.lbDvCode.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDvCode.Location = New System.Drawing.Point(6, 9) + Me.lbDvCode.Location = New System.Drawing.Point(5, 7) Me.lbDvCode.Name = "lbDvCode" - Me.lbDvCode.Size = New System.Drawing.Size(129, 32) + Me.lbDvCode.Size = New System.Drawing.Size(100, 24) Me.lbDvCode.TabIndex = 0 Me.lbDvCode.Text = "제조사코드" ' @@ -4271,28 +3914,26 @@ Partial Class MainForm ' Me.pnDvNumber.Controls.Add(Me.txbDvNumber) Me.pnDvNumber.Controls.Add(Me.lbDvNumber) - Me.pnDvNumber.Location = New System.Drawing.Point(11, 38) - Me.pnDvNumber.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDvNumber.Location = New System.Drawing.Point(10, 30) Me.pnDvNumber.Name = "pnDvNumber" - Me.pnDvNumber.Size = New System.Drawing.Size(411, 50) + Me.pnDvNumber.Size = New System.Drawing.Size(360, 40) Me.pnDvNumber.TabIndex = 0 ' 'txbDvNumber ' Me.txbDvNumber.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbDvNumber.Location = New System.Drawing.Point(166, 6) - Me.txbDvNumber.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDvNumber.Location = New System.Drawing.Point(145, 5) Me.txbDvNumber.Name = "txbDvNumber" - Me.txbDvNumber.Size = New System.Drawing.Size(234, 38) + Me.txbDvNumber.Size = New System.Drawing.Size(205, 32) Me.txbDvNumber.TabIndex = 1 ' 'lbDvNumber ' Me.lbDvNumber.AutoSize = True Me.lbDvNumber.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbDvNumber.Location = New System.Drawing.Point(6, 9) + Me.lbDvNumber.Location = New System.Drawing.Point(5, 7) Me.lbDvNumber.Name = "lbDvNumber" - Me.lbDvNumber.Size = New System.Drawing.Size(129, 32) + Me.lbDvNumber.Size = New System.Drawing.Size(100, 24) Me.lbDvNumber.TabIndex = 0 Me.lbDvNumber.Text = "바코드넘버" ' @@ -4301,11 +3942,9 @@ Partial Class MainForm Me.gbDvAuth.Controls.Add(Me.btnDvAuth) Me.gbDvAuth.Controls.Add(Me.txbDvAuthBox) Me.gbDvAuth.Font = New System.Drawing.Font("함초롬바탕", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbDvAuth.Location = New System.Drawing.Point(11, 44) - Me.gbDvAuth.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbDvAuth.Location = New System.Drawing.Point(10, 35) Me.gbDvAuth.Name = "gbDvAuth" - Me.gbDvAuth.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbDvAuth.Size = New System.Drawing.Size(434, 88) + Me.gbDvAuth.Size = New System.Drawing.Size(380, 70) Me.gbDvAuth.TabIndex = 53 Me.gbDvAuth.TabStop = False Me.gbDvAuth.Text = "인증코드설정" @@ -4313,10 +3952,9 @@ Partial Class MainForm 'btnDvAuth ' Me.btnDvAuth.Font = New System.Drawing.Font("굴림", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnDvAuth.Location = New System.Drawing.Point(183, 34) - Me.btnDvAuth.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnDvAuth.Location = New System.Drawing.Point(160, 27) Me.btnDvAuth.Name = "btnDvAuth" - Me.btnDvAuth.Size = New System.Drawing.Size(240, 44) + Me.btnDvAuth.Size = New System.Drawing.Size(210, 35) Me.btnDvAuth.TabIndex = 45 Me.btnDvAuth.Text = "카트리지" Me.btnDvAuth.UseVisualStyleBackColor = True @@ -4326,10 +3964,9 @@ Partial Class MainForm Me.txbDvAuthBox.BackColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer)) Me.txbDvAuthBox.Font = New System.Drawing.Font("굴림", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) Me.txbDvAuthBox.ForeColor = System.Drawing.Color.White - Me.txbDvAuthBox.Location = New System.Drawing.Point(23, 38) - Me.txbDvAuthBox.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbDvAuthBox.Location = New System.Drawing.Point(20, 30) Me.txbDvAuthBox.Name = "txbDvAuthBox" - Me.txbDvAuthBox.Size = New System.Drawing.Size(148, 35) + Me.txbDvAuthBox.Size = New System.Drawing.Size(130, 29) Me.txbDvAuthBox.TabIndex = 44 Me.txbDvAuthBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center Me.txbDvAuthBox.Visible = False @@ -4337,10 +3974,9 @@ Partial Class MainForm 'btnEnd ' Me.btnEnd.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnEnd.Location = New System.Drawing.Point(387, 642) - Me.btnEnd.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnEnd.Location = New System.Drawing.Point(339, 514) Me.btnEnd.Name = "btnEnd" - Me.btnEnd.Size = New System.Drawing.Size(390, 181) + Me.btnEnd.Size = New System.Drawing.Size(341, 145) Me.btnEnd.TabIndex = 2 Me.btnEnd.Text = "종 료" Me.btnEnd.UseVisualStyleBackColor = True @@ -4349,10 +3985,9 @@ Partial Class MainForm ' Me.pnDBLoad.Controls.Add(Me.pnLoadBot) Me.pnDBLoad.Controls.Add(Me.pnLoadTop) - Me.pnDBLoad.Location = New System.Drawing.Point(1394, 0) - Me.pnDBLoad.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnDBLoad.Location = New System.Drawing.Point(1220, 0) Me.pnDBLoad.Name = "pnDBLoad" - Me.pnDBLoad.Size = New System.Drawing.Size(781, 946) + Me.pnDBLoad.Size = New System.Drawing.Size(683, 757) Me.pnDBLoad.TabIndex = 4 ' 'pnLoadBot @@ -4360,19 +3995,17 @@ Partial Class MainForm Me.pnLoadBot.Controls.Add(Me.btnEnd) Me.pnLoadBot.Controls.Add(Me.btnReset) Me.pnLoadBot.Controls.Add(Me.gbDBLoad) - Me.pnLoadBot.Location = New System.Drawing.Point(0, 112) - Me.pnLoadBot.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.pnLoadBot.Location = New System.Drawing.Point(0, 90) Me.pnLoadBot.Name = "pnLoadBot" - Me.pnLoadBot.Size = New System.Drawing.Size(781, 834) + Me.pnLoadBot.Size = New System.Drawing.Size(683, 667) Me.pnLoadBot.TabIndex = 1 ' 'btnReset ' Me.btnReset.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnReset.Location = New System.Drawing.Point(3, 644) - Me.btnReset.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnReset.Location = New System.Drawing.Point(3, 515) Me.btnReset.Name = "btnReset" - Me.btnReset.Size = New System.Drawing.Size(377, 181) + Me.btnReset.Size = New System.Drawing.Size(330, 145) Me.btnReset.TabIndex = 1 Me.btnReset.Text = "초 기 화" Me.btnReset.UseVisualStyleBackColor = True @@ -4382,11 +4015,9 @@ Partial Class MainForm Me.gbDBLoad.Controls.Add(Me.gbPDSearch) Me.gbDBLoad.Controls.Add(Me.gbTDSearch) Me.gbDBLoad.Font = New System.Drawing.Font("함초롬바탕", 15.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.gbDBLoad.Location = New System.Drawing.Point(3, 6) - Me.gbDBLoad.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbDBLoad.Location = New System.Drawing.Point(3, 5) Me.gbDBLoad.Name = "gbDBLoad" - Me.gbDBLoad.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbDBLoad.Size = New System.Drawing.Size(765, 631) + Me.gbDBLoad.Size = New System.Drawing.Size(669, 505) Me.gbDBLoad.TabIndex = 0 Me.gbDBLoad.TabStop = False Me.gbDBLoad.Text = "검색 결과" @@ -4411,21 +4042,18 @@ Partial Class MainForm Me.gbPDSearch.Controls.Add(Me.lbPDType) Me.gbPDSearch.Controls.Add(Me.lbPDSC) Me.gbPDSearch.Controls.Add(Me.lbPDMotor) - Me.gbPDSearch.Location = New System.Drawing.Point(7, 272) - Me.gbPDSearch.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbPDSearch.Location = New System.Drawing.Point(6, 218) Me.gbPDSearch.Name = "gbPDSearch" - Me.gbPDSearch.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbPDSearch.Size = New System.Drawing.Size(751, 351) + Me.gbPDSearch.Size = New System.Drawing.Size(657, 281) Me.gbPDSearch.TabIndex = 25 Me.gbPDSearch.TabStop = False Me.gbPDSearch.Text = "Product Data" ' 'txbPDSN ' - Me.txbPDSN.Location = New System.Drawing.Point(189, 52) - Me.txbPDSN.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDSN.Location = New System.Drawing.Point(165, 42) Me.txbPDSN.Name = "txbPDSN" - Me.txbPDSN.Size = New System.Drawing.Size(531, 42) + Me.txbPDSN.Size = New System.Drawing.Size(465, 35) Me.txbPDSN.TabIndex = 14 Me.txbPDSN.Text = "-" Me.txbPDSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4433,18 +4061,17 @@ Partial Class MainForm 'lbPDSN ' Me.lbPDSN.AutoSize = True - Me.lbPDSN.Location = New System.Drawing.Point(47, 56) + Me.lbPDSN.Location = New System.Drawing.Point(41, 45) Me.lbPDSN.Name = "lbPDSN" - Me.lbPDSN.Size = New System.Drawing.Size(158, 35) + Me.lbPDSN.Size = New System.Drawing.Size(123, 27) Me.lbPDSN.TabIndex = 13 Me.lbPDSN.Text = "PD Serial : " ' 'txbPDAC ' - Me.txbPDAC.Location = New System.Drawing.Point(514, 278) - Me.txbPDAC.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDAC.Location = New System.Drawing.Point(450, 222) Me.txbPDAC.Name = "txbPDAC" - Me.txbPDAC.Size = New System.Drawing.Size(205, 42) + Me.txbPDAC.Size = New System.Drawing.Size(180, 35) Me.txbPDAC.TabIndex = 20 Me.txbPDAC.Text = "-" Me.txbPDAC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4452,38 +4079,35 @@ Partial Class MainForm 'lbPDAC ' Me.lbPDAC.AutoSize = True - Me.lbPDAC.Location = New System.Drawing.Point(403, 281) + Me.lbPDAC.Location = New System.Drawing.Point(353, 225) Me.lbPDAC.Name = "lbPDAC" - Me.lbPDAC.Size = New System.Drawing.Size(118, 35) + Me.lbPDAC.Size = New System.Drawing.Size(91, 27) Me.lbPDAC.TabIndex = 11 Me.lbPDAC.Text = "대리점 : " ' 'txbPDCP ' - Me.txbPDCP.Location = New System.Drawing.Point(514, 221) - Me.txbPDCP.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDCP.Location = New System.Drawing.Point(450, 177) Me.txbPDCP.Name = "txbPDCP" - Me.txbPDCP.Size = New System.Drawing.Size(205, 42) + Me.txbPDCP.Size = New System.Drawing.Size(180, 35) Me.txbPDCP.TabIndex = 21 Me.txbPDCP.Text = "-" Me.txbPDCP.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'txbPDCC ' - Me.txbPDCC.Location = New System.Drawing.Point(189, 278) - Me.txbPDCC.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDCC.Location = New System.Drawing.Point(165, 222) Me.txbPDCC.Name = "txbPDCC" - Me.txbPDCC.Size = New System.Drawing.Size(205, 42) + Me.txbPDCC.Size = New System.Drawing.Size(180, 35) Me.txbPDCC.TabIndex = 19 Me.txbPDCC.Text = "-" Me.txbPDCC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'txbPDMotor ' - Me.txbPDMotor.Location = New System.Drawing.Point(514, 165) - Me.txbPDMotor.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDMotor.Location = New System.Drawing.Point(450, 132) Me.txbPDMotor.Name = "txbPDMotor" - Me.txbPDMotor.Size = New System.Drawing.Size(205, 42) + Me.txbPDMotor.Size = New System.Drawing.Size(180, 35) Me.txbPDMotor.TabIndex = 23 Me.txbPDMotor.Text = "-" Me.txbPDMotor.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4491,38 +4115,35 @@ Partial Class MainForm 'lbPDCC ' Me.lbPDCC.AutoSize = True - Me.lbPDCC.Location = New System.Drawing.Point(62, 281) + Me.lbPDCC.Location = New System.Drawing.Point(54, 225) Me.lbPDCC.Name = "lbPDCC" - Me.lbPDCC.Size = New System.Drawing.Size(144, 35) + Me.lbPDCC.Size = New System.Drawing.Size(111, 27) Me.lbPDCC.TabIndex = 10 Me.lbPDCC.Text = "국가코드 : " ' 'txbPDModel ' - Me.txbPDModel.Location = New System.Drawing.Point(189, 109) - Me.txbPDModel.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDModel.Location = New System.Drawing.Point(165, 87) Me.txbPDModel.Name = "txbPDModel" - Me.txbPDModel.Size = New System.Drawing.Size(205, 42) + Me.txbPDModel.Size = New System.Drawing.Size(180, 35) Me.txbPDModel.TabIndex = 15 Me.txbPDModel.Text = "-" Me.txbPDModel.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'txbPDSC ' - Me.txbPDSC.Location = New System.Drawing.Point(189, 165) - Me.txbPDSC.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDSC.Location = New System.Drawing.Point(165, 132) Me.txbPDSC.Name = "txbPDSC" - Me.txbPDSC.Size = New System.Drawing.Size(205, 42) + Me.txbPDSC.Size = New System.Drawing.Size(180, 35) Me.txbPDSC.TabIndex = 22 Me.txbPDSC.Text = "-" Me.txbPDSC.TextAlign = System.Windows.Forms.HorizontalAlignment.Center ' 'txbPDSerial ' - Me.txbPDSerial.Location = New System.Drawing.Point(189, 221) - Me.txbPDSerial.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDSerial.Location = New System.Drawing.Point(165, 177) Me.txbPDSerial.Name = "txbPDSerial" - Me.txbPDSerial.Size = New System.Drawing.Size(205, 42) + Me.txbPDSerial.Size = New System.Drawing.Size(180, 35) Me.txbPDSerial.TabIndex = 18 Me.txbPDSerial.Text = "-" Me.txbPDSerial.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4530,27 +4151,26 @@ Partial Class MainForm 'lbPDCP ' Me.lbPDCP.AutoSize = True - Me.lbPDCP.Location = New System.Drawing.Point(403, 225) + Me.lbPDCP.Location = New System.Drawing.Point(353, 180) Me.lbPDCP.Name = "lbPDCP" - Me.lbPDCP.Size = New System.Drawing.Size(118, 35) + Me.lbPDCP.Size = New System.Drawing.Size(91, 27) Me.lbPDCP.TabIndex = 6 Me.lbPDCP.Text = "제조사 : " ' 'lbPDModel ' Me.lbPDModel.AutoSize = True - Me.lbPDModel.Location = New System.Drawing.Point(83, 112) + Me.lbPDModel.Location = New System.Drawing.Point(73, 90) Me.lbPDModel.Name = "lbPDModel" - Me.lbPDModel.Size = New System.Drawing.Size(117, 35) + Me.lbPDModel.Size = New System.Drawing.Size(91, 27) Me.lbPDModel.TabIndex = 7 Me.lbPDModel.Text = "Model : " ' 'txbPDType ' - Me.txbPDType.Location = New System.Drawing.Point(514, 109) - Me.txbPDType.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbPDType.Location = New System.Drawing.Point(450, 87) Me.txbPDType.Name = "txbPDType" - Me.txbPDType.Size = New System.Drawing.Size(205, 42) + Me.txbPDType.Size = New System.Drawing.Size(180, 35) Me.txbPDType.TabIndex = 17 Me.txbPDType.Text = "-" Me.txbPDType.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4558,36 +4178,36 @@ Partial Class MainForm 'lbPDSerial ' Me.lbPDSerial.AutoSize = True - Me.lbPDSerial.Location = New System.Drawing.Point(86, 225) + Me.lbPDSerial.Location = New System.Drawing.Point(75, 180) Me.lbPDSerial.Name = "lbPDSerial" - Me.lbPDSerial.Size = New System.Drawing.Size(115, 35) + Me.lbPDSerial.Size = New System.Drawing.Size(89, 27) Me.lbPDSerial.TabIndex = 9 Me.lbPDSerial.Text = "Serial : " ' 'lbPDType ' Me.lbPDType.AutoSize = True - Me.lbPDType.Location = New System.Drawing.Point(417, 112) + Me.lbPDType.Location = New System.Drawing.Point(365, 90) Me.lbPDType.Name = "lbPDType" - Me.lbPDType.Size = New System.Drawing.Size(102, 35) + Me.lbPDType.Size = New System.Drawing.Size(79, 27) Me.lbPDType.TabIndex = 8 Me.lbPDType.Text = "Type : " ' 'lbPDSC ' Me.lbPDSC.AutoSize = True - Me.lbPDSC.Location = New System.Drawing.Point(26, 169) + Me.lbPDSC.Location = New System.Drawing.Point(23, 135) Me.lbPDSC.Name = "lbPDSC" - Me.lbPDSC.Size = New System.Drawing.Size(187, 35) + Me.lbPDSC.Size = New System.Drawing.Size(141, 27) Me.lbPDSC.TabIndex = 5 Me.lbPDSC.Text = "Shot Count : " ' 'lbPDMotor ' Me.lbPDMotor.AutoSize = True - Me.lbPDMotor.Location = New System.Drawing.Point(405, 169) + Me.lbPDMotor.Location = New System.Drawing.Point(354, 135) Me.lbPDMotor.Name = "lbPDMotor" - Me.lbPDMotor.Size = New System.Drawing.Size(118, 35) + Me.lbPDMotor.Size = New System.Drawing.Size(90, 27) Me.lbPDMotor.TabIndex = 4 Me.lbPDMotor.Text = "Motor : " ' @@ -4601,21 +4221,18 @@ Partial Class MainForm Me.gbTDSearch.Controls.Add(Me.lbMesFreq) Me.gbTDSearch.Controls.Add(Me.txbMesPw) Me.gbTDSearch.Controls.Add(Me.lbMesPw) - Me.gbTDSearch.Location = New System.Drawing.Point(7, 44) - Me.gbTDSearch.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.gbTDSearch.Location = New System.Drawing.Point(6, 35) Me.gbTDSearch.Name = "gbTDSearch" - Me.gbTDSearch.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.gbTDSearch.Size = New System.Drawing.Size(751, 225) + Me.gbTDSearch.Size = New System.Drawing.Size(657, 180) Me.gbTDSearch.TabIndex = 24 Me.gbTDSearch.TabStop = False Me.gbTDSearch.Text = "TD Data" ' 'txbTDSN ' - Me.txbTDSN.Location = New System.Drawing.Point(189, 52) - Me.txbTDSN.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbTDSN.Location = New System.Drawing.Point(165, 42) Me.txbTDSN.Name = "txbTDSN" - Me.txbTDSN.Size = New System.Drawing.Size(531, 42) + Me.txbTDSN.Size = New System.Drawing.Size(465, 35) Me.txbTDSN.TabIndex = 12 Me.txbTDSN.Text = "-" Me.txbTDSN.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4623,18 +4240,17 @@ Partial Class MainForm 'lbTDSN ' Me.lbTDSN.AutoSize = True - Me.lbTDSN.Location = New System.Drawing.Point(46, 56) + Me.lbTDSN.Location = New System.Drawing.Point(40, 45) Me.lbTDSN.Name = "lbTDSN" - Me.lbTDSN.Size = New System.Drawing.Size(160, 35) + Me.lbTDSN.Size = New System.Drawing.Size(124, 27) Me.lbTDSN.TabIndex = 0 Me.lbTDSN.Text = "TD Serial : " ' 'txbMesDate ' - Me.txbMesDate.Location = New System.Drawing.Point(189, 109) - Me.txbMesDate.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMesDate.Location = New System.Drawing.Point(165, 87) Me.txbMesDate.Name = "txbMesDate" - Me.txbMesDate.Size = New System.Drawing.Size(531, 42) + Me.txbMesDate.Size = New System.Drawing.Size(465, 35) Me.txbMesDate.TabIndex = 13 Me.txbMesDate.Text = "-" Me.txbMesDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4643,18 +4259,17 @@ Partial Class MainForm ' Me.lbMesDate.AutoSize = True Me.lbMesDate.Font = New System.Drawing.Font("함초롬바탕", 14.0!, System.Drawing.FontStyle.Bold) - Me.lbMesDate.Location = New System.Drawing.Point(17, 114) + Me.lbMesDate.Location = New System.Drawing.Point(15, 91) Me.lbMesDate.Name = "lbMesDate" - Me.lbMesDate.Size = New System.Drawing.Size(188, 32) + Me.lbMesDate.Size = New System.Drawing.Size(148, 24) Me.lbMesDate.TabIndex = 1 Me.lbMesDate.Text = "실제 제조 일자 : " ' 'txbMesFreq ' - Me.txbMesFreq.Location = New System.Drawing.Point(189, 165) - Me.txbMesFreq.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMesFreq.Location = New System.Drawing.Point(165, 132) Me.txbMesFreq.Name = "txbMesFreq" - Me.txbMesFreq.Size = New System.Drawing.Size(205, 42) + Me.txbMesFreq.Size = New System.Drawing.Size(180, 35) Me.txbMesFreq.TabIndex = 14 Me.txbMesFreq.Text = "-" Me.txbMesFreq.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4662,18 +4277,17 @@ Partial Class MainForm 'lbMesFreq ' Me.lbMesFreq.AutoSize = True - Me.lbMesFreq.Location = New System.Drawing.Point(30, 169) + Me.lbMesFreq.Location = New System.Drawing.Point(26, 135) Me.lbMesFreq.Name = "lbMesFreq" - Me.lbMesFreq.Size = New System.Drawing.Size(178, 35) + Me.lbMesFreq.Size = New System.Drawing.Size(138, 27) Me.lbMesFreq.TabIndex = 2 Me.lbMesFreq.Text = "Frequency : " ' 'txbMesPw ' - Me.txbMesPw.Location = New System.Drawing.Point(514, 165) - Me.txbMesPw.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.txbMesPw.Location = New System.Drawing.Point(450, 132) Me.txbMesPw.Name = "txbMesPw" - Me.txbMesPw.Size = New System.Drawing.Size(205, 42) + Me.txbMesPw.Size = New System.Drawing.Size(180, 35) Me.txbMesPw.TabIndex = 16 Me.txbMesPw.Text = "-" Me.txbMesPw.TextAlign = System.Windows.Forms.HorizontalAlignment.Center @@ -4681,9 +4295,9 @@ Partial Class MainForm 'lbMesPw ' Me.lbMesPw.AutoSize = True - Me.lbMesPw.Location = New System.Drawing.Point(402, 169) + Me.lbMesPw.Location = New System.Drawing.Point(352, 135) Me.lbMesPw.Name = "lbMesPw" - Me.lbMesPw.Size = New System.Drawing.Size(118, 35) + Me.lbMesPw.Size = New System.Drawing.Size(92, 27) Me.lbMesPw.TabIndex = 3 Me.lbMesPw.Text = "Power : " ' @@ -4694,18 +4308,16 @@ Partial Class MainForm Me.pnLoadTop.Controls.Add(Me.txbLoadNum) Me.pnLoadTop.Controls.Add(Me.lbLoadNum) Me.pnLoadTop.Location = New System.Drawing.Point(0, 0) - Me.pnLoadTop.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) Me.pnLoadTop.Name = "pnLoadTop" - Me.pnLoadTop.Size = New System.Drawing.Size(777, 112) + Me.pnLoadTop.Size = New System.Drawing.Size(680, 90) Me.pnLoadTop.TabIndex = 0 ' 'btnLoadNum ' Me.btnLoadNum.Font = New System.Drawing.Font("함초롬바탕", 18.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.btnLoadNum.Location = New System.Drawing.Point(617, 24) - Me.btnLoadNum.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) + Me.btnLoadNum.Location = New System.Drawing.Point(540, 19) Me.btnLoadNum.Name = "btnLoadNum" - Me.btnLoadNum.Size = New System.Drawing.Size(149, 70) + Me.btnLoadNum.Size = New System.Drawing.Size(130, 56) Me.btnLoadNum.TabIndex = 1 Me.btnLoadNum.Text = "검 색" Me.btnLoadNum.UseVisualStyleBackColor = True @@ -4713,40 +4325,37 @@ Partial Class MainForm 'txbLoadNum ' Me.txbLoadNum.Font = New System.Drawing.Font("함초롬바탕", 27.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.txbLoadNum.Location = New System.Drawing.Point(198, 24) - Me.txbLoadNum.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4) - Me.txbLoadNum.MaxLength = 12 + Me.txbLoadNum.Location = New System.Drawing.Point(173, 19) + Me.txbLoadNum.MaxLength = 16 Me.txbLoadNum.Name = "txbLoadNum" - Me.txbLoadNum.Size = New System.Drawing.Size(415, 68) + Me.txbLoadNum.Size = New System.Drawing.Size(364, 56) Me.txbLoadNum.TabIndex = 1 ' 'lbLoadNum ' Me.lbLoadNum.AutoSize = True Me.lbLoadNum.Font = New System.Drawing.Font("함초롬바탕", 24.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(129, Byte)) - Me.lbLoadNum.Location = New System.Drawing.Point(17, 34) + Me.lbLoadNum.Location = New System.Drawing.Point(15, 27) Me.lbLoadNum.Name = "lbLoadNum" - Me.lbLoadNum.Size = New System.Drawing.Size(190, 52) + Me.lbLoadNum.Size = New System.Drawing.Size(152, 41) Me.lbLoadNum.TabIndex = 0 Me.lbLoadNum.Text = "번호 검색" ' '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(2176, 951) + Me.ClientSize = New System.Drawing.Size(1904, 761) Me.Controls.Add(Me.pnDBLoad) Me.Controls.Add(Me.pnTop) Me.Controls.Add(Me.pnBottom) 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.gbProdSelect.ResumeLayout(False) - Me.gbProdSelect.PerformLayout() Me.gbComport.ResumeLayout(False) Me.gbComport.PerformLayout() Me.pnTop.ResumeLayout(False) + Me.gbModelSelect.ResumeLayout(False) Me.gbOpOut.ResumeLayout(False) Me.gbOpOut.PerformLayout() Me.gbEtcOp.ResumeLayout(False) @@ -4785,16 +4394,19 @@ Partial Class MainForm Me.pnAbroad.ResumeLayout(False) Me.pnAbroad.PerformLayout() Me.gbInfo.ResumeLayout(False) + Me.pnlIfVersion.ResumeLayout(False) + Me.pnlIfVersion.PerformLayout() + Me.pnIfType.ResumeLayout(False) + Me.pnIfType.PerformLayout() + Me.pnlIfClass.ResumeLayout(False) + Me.pnlIfClass.PerformLayout() + Me.pnIfColor.ResumeLayout(False) + Me.pnIfColor.PerformLayout() Me.pnIfResult.ResumeLayout(False) Me.pnIfResult.PerformLayout() Me.pnIfSerial.ResumeLayout(False) Me.pnIfSerial.PerformLayout() CType(Me.nudIfSerial, System.ComponentModel.ISupportInitialize).EndInit() - Me.pnIfMoTy.ResumeLayout(False) - Me.pnIfType.ResumeLayout(False) - Me.pnIfType.PerformLayout() - Me.pnIfModel.ResumeLayout(False) - Me.pnIfModel.PerformLayout() Me.pnIfDate.ResumeLayout(False) Me.pnIfDate.PerformLayout() CType(Me.nudIfMonth, System.ComponentModel.ISupportInitialize).EndInit() @@ -4882,9 +4494,6 @@ Partial Class MainForm Me.pnDvSerial.ResumeLayout(False) Me.pnDvSerial.PerformLayout() CType(Me.nudDvSerial, System.ComponentModel.ISupportInitialize).EndInit() - Me.pnDvMoTy.ResumeLayout(False) - Me.pnDvModel.ResumeLayout(False) - Me.pnDvModel.PerformLayout() Me.pnDvDate.ResumeLayout(False) Me.pnDvDate.PerformLayout() CType(Me.nudDvMonth, System.ComponentModel.ISupportInitialize).EndInit() @@ -4907,11 +4516,6 @@ Partial Class MainForm Me.ResumeLayout(False) End Sub - - Friend WithEvents gbProdSelect As GroupBox - Friend WithEvents rdbAlto As RadioButton - Friend WithEvents rdbMax As RadioButton - Friend WithEvents rdbDual As RadioButton Friend WithEvents gbComport As GroupBox Friend WithEvents btnComport As Button Friend WithEvents cboComport As ComboBox @@ -4927,12 +4531,6 @@ Partial Class MainForm Friend WithEvents gbInfo As GroupBox Friend WithEvents pnIfNumber As Panel Friend WithEvents lbIfBarcode As Label - Friend WithEvents pnIfMoTy As Panel - Friend WithEvents pnIfModel As Panel - Friend WithEvents rdbIfALPHA As RadioButton - Friend WithEvents rdbIfLUX_V2 As RadioButton - Friend WithEvents rdbIfPRO_V1 As RadioButton - Friend WithEvents lbIfModel As Label Friend WithEvents pnIfDate As Panel Friend WithEvents nudIfMonth As NumericUpDown Friend WithEvents nudIfYear As NumericUpDown @@ -4946,11 +4544,6 @@ Partial Class MainForm Friend WithEvents pnIfSerial As Panel Friend WithEvents nudIfSerial As NumericUpDown Friend WithEvents lbIfSerial As Label - Friend WithEvents pnIfType As Panel - Friend WithEvents rdbIfBody As RadioButton - Friend WithEvents rdbIfEye As RadioButton - Friend WithEvents rdbIfFace As RadioButton - Friend WithEvents lbIfType As Label Friend WithEvents pnIfResult As Panel Friend WithEvents btnIfWrite As Button Friend WithEvents btnIfRead As Button @@ -5017,12 +4610,6 @@ Partial Class MainForm Friend WithEvents pnDvSerial As Panel Friend WithEvents nudDvSerial As NumericUpDown Friend WithEvents lbDvSerial As Label - Friend WithEvents pnDvMoTy As Panel - Friend WithEvents pnDvModel As Panel - Friend WithEvents rdbDvALPHA As RadioButton - Friend WithEvents rdbDvLUX As RadioButton - Friend WithEvents rdbDvPRO As RadioButton - Friend WithEvents lbDvModel As Label Friend WithEvents pnDvDate As Panel Friend WithEvents nudDvMonth As NumericUpDown Friend WithEvents nudDvYear As NumericUpDown @@ -5281,6 +4868,19 @@ Partial Class MainForm Friend WithEvents lbMesPw As Label Friend WithEvents btnwrite As Button Friend WithEvents btnReset As Button - Friend WithEvents rdbEffect As RadioButton Friend WithEvents btnDuWrite As Button + Friend WithEvents gbModelSelect As GroupBox + Friend WithEvents comboBoxModel As ComboBox + Friend WithEvents pnIfType As Panel + Friend WithEvents lbType As Label + Friend WithEvents pnlIfClass As Panel + Friend WithEvents Label2 As Label + Friend WithEvents pnIfColor As Panel + Friend WithEvents Label1 As Label + Friend WithEvents pnlIfVersion As Panel + Friend WithEvents Label4 As Label + Friend WithEvents comboBoxClass As ComboBox + Friend WithEvents comboBoxColor As ComboBox + Friend WithEvents comboBoxVersion As ComboBox + Friend WithEvents comboBoxType As ComboBox End Class diff --git a/Product_Manager/MainForm.vb b/Product_Manager/MainForm.vb index 37aa711..5df05d0 100644 --- a/Product_Manager/MainForm.vb +++ b/Product_Manager/MainForm.vb @@ -1,21 +1,24 @@ Imports System.IO.Ports Imports System.Math +Imports System.Reflection Imports System.Runtime.InteropServices.ComTypes -Imports Microsoft Imports System.Runtime.Remoting +Imports System.Windows.Forms.VisualStyles.VisualStyleElement Imports System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock +Imports Microsoft Imports Mysqlx Imports Mysqlx.XDevAPI Public Class MainForm - Public Const FormVersion As String = "2.0.1" + Public Const FormVersion As String = "3.0.0" Private Const FormName As String = "DUALSONIC Product Manager Ver " & FormVersion Private Const TDNameSize As Int16 = 10 Private Const StrLen As Int16 = 10 Private Const WriteSerialLength As Int16 = 6 Private Const SerialLength As Int16 = 9 - Private Const SerialParsingLength As Int16 = 12 + Private Const OldSerialParsingLength As Int16 = 12 + Private Const NewSerialParsingLength As Int16 = 16 Private Const TwosComplement32Mask As Long = 4294967296 Private Const OneDay As Int32 = 86400 @@ -34,91 +37,228 @@ Public Class MainForm MAXError End Enum - Private Enum ModelList - PRO = 1 - LUX - MAXIMUM - ALPHA - ALTO - EFFECT - MAX_Model - End Enum - - Private Enum TypeList - V1_Set - V2_Face - Eye - Body - MAXType - End Enum - - Private Enum TypeCodeList - Face = 1 - Eye - Body - MAXType - End Enum - Private tmpCmdMessage As String = String.Empty Private cmdMessage As String = String.Empty Private DBCmd As String = String.Empty + '현재 선택한 제품 정보 + Public Structure ModelInfo + Public Code As String + Public Name As String + Public DeviceTypeCode As String + Public TDUseYn As String + Public HifuUseYn As String + Public RfUseYn As String + Public EpUseYn As String + End Structure + Public SelectedModelInfo As ModelInfo + Private Sub StartForm() Me.Text = FormName Me.Size = New Size(1920, 800) UseSerialSetting(SerialPort1) - rdbDual.Checked = True ckbDBUse.Checked = True End Sub Private Sub MainForm_Load(sender As Object, e As EventArgs) Handles MyBase.Load StartForm() StartTop() + ComboBoxSetting() End Sub - Private Sub rdbDual_CheckedChanged(sender As Object, e As EventArgs) Handles rdbDual.CheckedChanged, rdbMax.CheckedChanged, rdbAlto.CheckedChanged, rdbEffect.CheckedChanged - ResetClear() - ResultReset() + Private Sub ComboBoxSetting() + ModelCboSetting() + ClassCboSetting() + VersionCboSetting() + End Sub - Dim CheckOkNg As RadioButton = CType(sender, RadioButton) + Private Sub ModelCboSetting() + comboBoxModel.Items.Clear() + comboBoxModel.DisplayMember = "Key" + comboBoxModel.ValueMember = "Value" - If CheckOkNg.Checked = True Then + DBCmd = "SELECT ModelName, ModelCode FROM " & ApplyModelInfoDB & " GROUP BY ModelCode" + If DBQueryReader(DBCmd) Then + Dim RowCount As Int16 = (sqlDataQuery.Length / 2) - 1 + Dim dataSetCount As Int32 = 0 + Dim ModelName As String + Dim ModelCode As String - If rdbDual.Checked = True Then - SelectModel = ModeList.DUALSONIC + For row = 0 To RowCount + For col = 0 To 1 + If col = 0 Then + ModelName = sqlDataQuery(dataSetCount) + ElseIf col = 1 Then + ModelCode = sqlDataQuery(dataSetCount) + End If + dataSetCount += 1 + Next + comboBoxModel.Items.Add(New DictionaryEntry(ModelName, ModelCode)) + Next + End If + comboBoxModel.Text = "MAXIMUM" + End Sub + + Private Sub ClassCboSetting() + comboBoxClass.Items.Clear() + comboBoxClass.DisplayMember = "Key" + comboBoxClass.ValueMember = "Value" + + comboBoxClass.Items.Add(New DictionaryEntry("국내-세트", 1)) + comboBoxClass.Items.Add(New DictionaryEntry("국내-A/S", 2)) + comboBoxClass.Items.Add(New DictionaryEntry("국내-샵용", 3)) + comboBoxClass.Items.Add(New DictionaryEntry("해외-세트", 5)) + comboBoxClass.Items.Add(New DictionaryEntry("해외-A/S", 6)) + comboBoxClass.Items.Add(New DictionaryEntry("체험단", 7)) + + comboBoxClass.SelectedIndex = 0 + End Sub + + Private Sub VersionCboSetting() + comboBoxVersion.Items.Clear() + comboBoxVersion.DisplayMember = "Key" + comboBoxVersion.ValueMember = "Value" + + comboBoxVersion.Items.Add(New DictionaryEntry("V1", 0)) + comboBoxVersion.Items.Add(New DictionaryEntry("V2", 1)) + comboBoxVersion.Items.Add(New DictionaryEntry("V3", 2)) + comboBoxVersion.Items.Add(New DictionaryEntry("V4", 3)) + comboBoxVersion.Items.Add(New DictionaryEntry("V5", 4)) + comboBoxVersion.Items.Add(New DictionaryEntry("V6", 5)) + comboBoxVersion.Items.Add(New DictionaryEntry("V7", 6)) + comboBoxVersion.Items.Add(New DictionaryEntry("V8", 7)) + comboBoxVersion.Items.Add(New DictionaryEntry("V9", 8)) + + comboBoxVersion.SelectedIndex = 0 + End Sub + + Private Sub TypeCboSetting() + comboBoxType.Items.Clear() + comboBoxType.DisplayMember = "Key" + comboBoxType.ValueMember = "Value" + + DBCmd = "SELECT CartTypeName, CartTypeCode FROM " & ApplyModelInfoDB & " WHERE ModelCode = '" & comboBoxModel.SelectedItem.Value.ToString & "' GROUP BY CartTypeCode ORDER BY CartTypeCode ASC" + If DBQueryReader(DBCmd) Then + Dim RowCount As Int16 = (sqlDataQuery.Length / 2) - 1 + Dim dataSetCount As Int32 = 0 + Dim TypeName As String + Dim TypeCode As String + + For row = 0 To RowCount + For col = 0 To 1 + If col = 0 Then + TypeName = sqlDataQuery(dataSetCount) + ElseIf col = 1 Then + TypeCode = sqlDataQuery(dataSetCount) + End If + dataSetCount += 1 + Next + comboBoxType.Items.Add(New DictionaryEntry(TypeName, TypeCode)) + Next + End If + comboBoxType.SelectedIndex = 0 + End Sub + + Private Sub ColorCboSetting() + comboBoxColor.Items.Clear() + comboBoxColor.DisplayMember = "Key" + comboBoxColor.ValueMember = "Value" + + DBCmd = "SELECT ColorName, ColorCode FROM " & ApplyModelInfoDB & " WHERE ModelCode = '" & comboBoxModel.SelectedItem.Value.ToString & "' AND CartTypeCode = '" & comboBoxType.SelectedItem.Value.ToString & "' ORDER BY ColorCode ASC" + If DBQueryReader(DBCmd) Then + Dim RowCount As Int16 = (sqlDataQuery.Length / 2) - 1 + Dim dataSetCount As Int32 = 0 + Dim ColorName As String + Dim ColorCode As String + + For row = 0 To RowCount + For col = 0 To 1 + If col = 0 Then + ColorName = sqlDataQuery(dataSetCount) + ElseIf col = 1 Then + ColorCode = sqlDataQuery(dataSetCount) + End If + dataSetCount += 1 + Next + comboBoxColor.Items.Add(New DictionaryEntry(ColorName, ColorCode)) + Next + End If + comboBoxColor.SelectedIndex = 0 + End Sub + + Private Function FindIndexMachingValue(ByVal comboBox As Windows.Forms.ComboBox, value As String) As Int16 + For index = 0 To comboBox.Items.Count - 1 + If comboBox.Items(index).Value.ToString = value Then + Return index + End If + Next + Return -1 + End Function + + Private Sub comboBoxModel_SelectedIndexChanged(sender As Object, e As EventArgs) Handles comboBoxModel.SelectedIndexChanged + If comboBoxModel.SelectedIndex <> -1 Then + With SelectedModelInfo + .Code = comboBoxModel.SelectedItem.Value.ToString + .Name = comboBoxModel.SelectedItem.Key.ToString + .TDUseYn = False + .HifuUseYn = False + .RfUseYn = False + .EpUseYn = False + End With + + DBCmd = "SELECT DeviceTypeCode, TDUseYn, HifuUseYn, RfUseYn, EpUseYn FROM " & ApplyModelInfoDB & " WHERE ModelCode = '" & SelectedModelInfo.Code & "' LIMIT 1" + If DBQueryReader(DBCmd) Then + With SelectedModelInfo + .DeviceTypeCode = sqlDataQuery(0) + .TDUseYn = sqlDataQuery(1) + .HifuUseYn = sqlDataQuery(2) + .RfUseYn = sqlDataQuery(3) + .EpUseYn = sqlDataQuery(4) + End With + End If + + ResetClear() + ResultReset() + + If SelectedModelInfo.DeviceTypeCode = "D" Then + SelectModeType = ModeList.DUALSONIC DUALForm_Setting() DUALSONIC_UseOn() Device_UseOn() - btnALFuncReset1.Enabled = True - ElseIf rdbMax.Checked = True Then - SelectModel = ModeList.MAXIMUM - MAXForm_Setting() - MAXIMUM_UseOn() + ElseIf SelectedModelInfo.DeviceTypeCode = "A" Then + If SelectedModelInfo.HifuUseYn = "Y" And SelectedModelInfo.RfUseYn = "Y" And SelectedModelInfo.EpUseYn = "Y" Then + SelectModeType = ModeList.MAXIMUM + MAXForm_Setting() + MAXIMUM_UseOn() + btnALFuncReset1.Enabled = True - btnALFuncReset1.Enabled = True + ElseIf SelectedModelInfo.HifuUseYn = "Y" And SelectedModelInfo.RfUseYn = "N" And SelectedModelInfo.EpUseYn = "N" Then + SelectModeType = ModeList.EFFECT + EFFECTForm_Setting() + EFFECT_UseOn() + btnALFuncReset1.Enabled = True - ElseIf rdbAlto.Checked = True Then - SelectModel = ModeList.ALTO - ALTOForm_Setting() - ALTO_UseOn() + ElseIf SelectedModelInfo.HifuUseYn = "N" And SelectedModelInfo.RfUseYn = "Y" And SelectedModelInfo.EpUseYn = "Y" Then + SelectModeType = ModeList.ALTO + ALTOForm_Setting() + ALTO_UseOn() + btnALFuncReset1.Enabled = False - btnALFuncReset1.Enabled = False - - ElseIf rdbEffect.Checked = True Then - SelectModel = ModeList.EFFECT - EFFECTForm_Setting() - EFFECT_UseOn() - - btnALFuncReset1.Enabled = True - Else - MsgBox("잘못된 경로입니다.", vbCritical) + End If End If - End If + TypeCboSetting() + End If + End Sub + + Private Sub comboBoxType_SelectedIndexChanged(sender As Object, e As EventArgs) Handles comboBoxType.SelectedIndexChanged + If comboBoxType.SelectedIndex <> -1 Then + ColorCboSetting() + End If End Sub Private Sub rdbDev_Click(sender As Object, e As EventArgs) Handles rdbDev.Click, rdbUseTime.Click @@ -128,7 +268,7 @@ Public Class MainForm If rdbDev.Checked = True Then Device_UseOn() ElseIf rdbUseTime.Checked = True Then - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_UseOn() Case ModeList.MAXIMUM @@ -187,6 +327,9 @@ Public Class MainForm End Sub Private Sub btnComport_Click(sender As Object, e As EventArgs) Handles btnComport.Click + ResetClear() + ResultReset() + If btnComport.Text = "검색" Then pnBottom.Enabled = False If LoadCompartList() Then @@ -229,7 +372,7 @@ Public Class MainForm End Function Private Sub btnAuth_Click(sender As Object, e As EventArgs) Handles btnAuth.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_AuthFunc() Case ModeList.MAXIMUM, ModeList.ALTO, ModeList.EFFECT @@ -367,15 +510,11 @@ End_Finish: End Function Private Sub btnIfWrite_Click(sender As Object, e As EventArgs) Handles btnIfWrite.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_WriteFunc() - Case ModeList.MAXIMUM + Case ModeList.MAXIMUM, ModeList.ALTO, ModeList.EFFECT MAXIMUM_WriteFunc() - Case ModeList.ALTO - ALTO_WriteFunc() - Case ModeList.EFFECT - EFFECT_WriteFunc() Case Else MsgBox("잘못된 경로입니다.", vbCritical, FormName) End Select @@ -394,13 +533,23 @@ End_Finish: txbIfCode.Text = "jomt" End If - If rdbIfPRO_V1.Checked = False And rdbIfLUX_V2.Checked = False And rdbIfALPHA.Checked = False Then - MsgBox("모델을 선택하여 주십시오.", vbExclamation, FormName) + If comboBoxType.SelectedIndex < 0 Then + MsgBox("타입을 선택하여 주십시오.", vbExclamation, FormName) Return True End If - If rdbIfFace.Checked = False And rdbIfEye.Checked = False And rdbIfBody.Checked = False Then - MsgBox("타입을 선택하여 주십시오.", vbExclamation, FormName) + If comboBoxColor.SelectedIndex < 0 Then + MsgBox("색상을 선택하여 주십시오.", vbExclamation, FormName) + Return True + End If + + If comboBoxClass.SelectedIndex < 0 Then + MsgBox("유통구분을 선택하여 주십시오.", vbExclamation, FormName) + Return True + End If + + If comboBoxVersion.SelectedIndex < 0 Then + MsgBox("버전을 선택하여 주십시오.", vbExclamation, FormName) Return True End If @@ -408,39 +557,6 @@ End_Finish: End Function - Private Function ModelSetting() As Int16 - If rdbIfPRO_V1.Checked = True Then - If SelectModel = ModeList.DUALSONIC Then - Return ModelList.PRO - Else - Return TypeList.V1_Set - End If - ElseIf rdbIfLUX_V2.Checked = True Then - If SelectModel = ModeList.DUALSONIC Then - Return ModelList.LUX - Else - Return TypeList.V2_Face - End If - - ElseIf rdbIfALPHA.Checked = True Then - Return ModelList.ALPHA - Else - Return ModelList.MAX_Model - End If - End Function - - Private Function TypeSetting() As Int16 - If rdbIfFace.Checked = True Then - Return TypeList.V2_Face - ElseIf rdbIfEye.Checked = True Then - Return TypeList.Eye - ElseIf rdbIfBody.Checked = True Then - Return TypeList.Body - Else - Return TypeList.MAXType - End If - End Function - Private Sub DUALSONIC_WriteFunc() Dim StageCnt As Int16 = ErrorList.NonError Try @@ -449,14 +565,8 @@ End_Finish: GoTo FAIL_Finish End If - Dim ModelCode As ModelList = ModelSetting() - Dim TypeCode As TypeList = TypeSetting() - - If ModelCode = ModelList.MAX_Model Or TypeCode = TypeList.MAXType Then - MsgBox("존재하지 않는 모델 및 타입 코드입니다. 체크된 내용을 확인하여 주십시오.", vbCritical, FormName) - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If + Dim ModelCode As String = SelectedModelInfo.Code + Dim TypeCode As String = comboBoxType.SelectedItem.Value.ToString ''************************************ ''******* 제조사코드 발신 ******* @@ -618,41 +728,54 @@ End_Finish: End If - Dim ModelCode As Integer = ModelSetting() - - If ModelCode = ModelList.MAX_Model Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - ModelCode = ModelList.MAXIMUM & ModelCode - Dim SerialValue As String = SerialNumSetting(nudIfSerial.Value.ToString) Dim MonthParsing As String = MonthSetting(nudIfMonth.Value.ToString) - - Dim cartridgeSerial = SerialValue SerialValue = nudIfYear.Value & MonthParsing & SerialValue + Dim TypeCode As String = comboBoxType.SelectedItem.Value.ToString + Dim ColorCode As String = comboBoxColor.SelectedItem.Value.ToString + Dim ClassCode As String = comboBoxClass.SelectedItem.Value.ToString + Dim VersionCode As String = comboBoxVersion.SelectedItem.Value.ToString - Dim ResultData As Int16 = MAXInfoWrite(txbIfCode.Text, SerialValue, ModelCode, AboardCode, AgencyCode) + If SelectedModelInfo.Code.Length = 2 Then + Dim QcOpt As String = ClassCode & TypeCode & VersionCode - If ResultData = ErrorList.SendError Or ResultData = ErrorList.ReceiveError Then - StageCnt = ResultData - GoTo FAIL_Finish + Dim ResultData As Int16 = OptimumInfoWrite(txbIfCode.Text, SerialValue, SelectedModelInfo.Code, ColorCode, QcOpt, AboardCode, AgencyCode) + + If ResultData = ErrorList.SendError Or ResultData = ErrorList.ReceiveError Then + StageCnt = ResultData + GoTo FAIL_Finish + End If + + txbIfNumber.Text = SelectedModelInfo.Code & ColorCode & SerialValue & QcOpt + Else + Dim ModelCode = SelectedModelInfo.Code & TypeCode + + Dim ResultData As Int16 = MAXInfoWrite(txbIfCode.Text, SerialValue, ModelCode, AboardCode, AgencyCode) + + If ResultData = ErrorList.SendError Or ResultData = ErrorList.ReceiveError Then + StageCnt = ResultData + GoTo FAIL_Finish + End If + + txbIfNumber.Text = ModelCode & Mid(SerialValue, 1, 4) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) End If - txbIfNumber.Text = ModelCode & Mid(SerialValue, 1, 4) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) - If ckbDBUse.Checked = True Then - Dim DBCmd = "UPDATE " & UseCartridgeTbl & " SET " & - "Product_SN = '" & txbIfNumber.Text & "', " & - "Ct_Manufacture_Name = '" & txbIfCode.Text & "', " & - "Ct_Manufacture_Year = '" & nudIfYear.Value & "', " & - "Ct_Manufacture_Month = '" & nudIfMonth.Value & "', " & - "Ct_SN = '" & cartridgeSerial & "', " & - "Ct_Model = 'MAXIMUM', " & - "Ct_Type = 'SET' " & - "WHERE PV_SN = '" & TDNameStr & "'" + Dim QueryTable As String = UseCartridgeTbl + If SelectedModelInfo.TDUseYn <> "Y" Then + QueryTable = NonCartridgeTbl + End If + + Dim DBCmd = "UPDATE " & QueryTable & " SET " & + "Product_SN = '" & txbIfNumber.Text & "', " & + "Ct_Manufacture_Name = '" & txbIfCode.Text & "', " & + "Ct_Manufacture_Year = '" & nudIfYear.Value & "', " & + "Ct_Manufacture_Month = '" & nudIfMonth.Value & "', " & + "Ct_SN = '" & cartridgeSerial & "', " & + "Ct_Model = '" & SelectedModelInfo.Name & "', " & + "Ct_Type = '" & comboBoxType.SelectedItem.Key.ToString & "' " & + "WHERE PV_SN = '" & TDNameStr & "'" DBCommand(DBCmd) End If @@ -673,191 +796,36 @@ End_Finish: txbInfoBox.Refresh() End Sub - Private Sub ALTO_WriteFunc() - Dim StageCnt As Int16 = ErrorList.NonError - Dim TDNameStr As String = String.Empty - Const AboardCode As Int32 = 82 - Const AgencyCode As Int16 = 0 - - Try - If InfoWriteStart() Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - If ckbDBUse.Checked = True Then - - TDNameStr = TDNameLoad() - - If TDNameStr = Str(ErrorList.SendError) Or TDNameStr = Str(ErrorList.ReceiveError) Then - MsgBox("TD 시리얼 번호를 확인할 수 없습니다. 저장하고자 하는 Serial 번호를 먼저 입력하여 주십시오.", vbExclamation, FormName) - StageCnt = TDNameStr - GoTo FAIL_Finish - End If - - Dim DBExist As Boolean = NonTDNameDBLoad(TDNameStr) - - If DBExist = False Then - MsgBox("TD 시리얼 번호가 데이터베이스에 등록되어 있지 않습니다.", vbCritical, FormName) - StageCnt = ErrorList.ReceiveError - GoTo FAIL_Finish - End If - - End If - - Dim ModelCode As Integer = ModelSetting() - - If ModelCode = ModelList.MAX_Model Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - ModelCode = ModelList.ALTO & ModelCode - - Dim SerialValue As String = SerialNumSetting(nudIfSerial.Value.ToString) - Dim MonthParsing As String = MonthSetting(nudIfMonth.Value.ToString) - - SerialValue = nudIfYear.Value & MonthParsing & SerialValue - - Dim ResultData As Int16 = MAXInfoWrite(txbIfCode.Text, SerialValue, ModelCode, AboardCode, AgencyCode) - - If ResultData = ErrorList.SendError Or ResultData = ErrorList.ReceiveError Then - StageCnt = ResultData - GoTo FAIL_Finish - End If - - txbIfNumber.Text = ModelCode & Mid(SerialValue, 1, 4) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) - - If ckbDBUse.Checked = True Then - Dim cartridgeSerial = Mid(SerialValue, 5, 3) & Mid(SerialValue, 8, 3) - - - Dim DBCmd = "UPDATE " & NonCartridgeTbl & " SET " & - "Product_SN = '" & txbIfNumber.Text & "', " & - "Ct_Manufacture_Name = '" & txbIfCode.Text & "', " & - "Ct_Manufacture_Year = '" & nudIfYear.Value & "', " & - "Ct_Manufacture_Month = '" & nudIfMonth.Value & "', " & - "Ct_SN = '" & cartridgeSerial & "', " & - "Ct_Model = 'ALTO', " & - "Ct_Type = 'SET' " & - "WHERE PV_SN = '" & TDNameStr & "'" - - DBCommand(DBCmd) - End If - - txbInfoBox.Text = "SUCCESS" - txbInfoBox.BackColor = Color.Green - GoTo End_Finish - - Catch ex As Exception - MsgBox("입력 진행 도중 에러 발생!" & vbCrLf & ex.Message, vbCritical, FormName) - GoTo FAIL_Finish - End Try - -FAIL_Finish: - txbInfoBox.Text = "ERROR" + Str(StageCnt) - txbInfoBox.BackColor = Color.Red -End_Finish: - txbInfoBox.Refresh() - End Sub - - Private Sub EFFECT_WriteFunc() - Dim StageCnt As Int16 = ErrorList.NonError - Dim TDNameStr As String = String.Empty - Const AboardCode As Int32 = 82 - Const AgencyCode As Int16 = 0 - - Try - If InfoWriteStart() Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - If ckbDBUse.Checked = True Then - - TDNameStr = TDNameLoad() - - If TDNameStr = Str(ErrorList.SendError) Or TDNameStr = Str(ErrorList.ReceiveError) Then - MsgBox("TD 시리얼 번호를 확인할 수 없습니다. 저장하고자 하는 Serial 번호를 먼저 입력하여 주십시오.", vbExclamation, FormName) - StageCnt = TDNameStr - GoTo FAIL_Finish - End If - - Dim DBExist As Boolean = TDNameDBLoad(TDNameStr) - - If DBExist = False Then - MsgBox("TD 시리얼 번호가 데이터베이스에 등록되어 있지 않습니다.", vbCritical, FormName) - StageCnt = ErrorList.ReceiveError - GoTo FAIL_Finish - End If - - End If - - Dim ModelCode As Integer = ModelSetting() - - If ModelCode = ModelList.MAX_Model Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - ModelCode = ModelList.EFFECT & ModelCode - - Dim SerialValue As String = SerialNumSetting(nudIfSerial.Value.ToString) - Dim MonthParsing As String = MonthSetting(nudIfMonth.Value.ToString) - - SerialValue = nudIfYear.Value & MonthParsing & SerialValue - - Dim ResultData As Int16 = MAXInfoWrite(txbIfCode.Text, SerialValue, ModelCode, AboardCode, AgencyCode) - - If ResultData = ErrorList.SendError Or ResultData = ErrorList.ReceiveError Then - StageCnt = ResultData - GoTo FAIL_Finish - End If - - txbIfNumber.Text = ModelCode & Mid(SerialValue, 1, 4) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) - - If ckbDBUse.Checked = True Then - Dim cartridgeSerial = Mid(SerialValue, 5, 3) & Mid(SerialValue, 8, 3) - - Dim DBCmd = "UPDATE " & UseCartridgeTbl & " SET " & - "Product_SN = '" & txbIfNumber.Text & "', " & - "Ct_Manufacture_Name = '" & txbIfCode.Text & "', " & - "Ct_Manufacture_Year = '" & nudIfYear.Value & "', " & - "Ct_Manufacture_Month = '" & nudIfMonth.Value & "', " & - "Ct_SN = '" & cartridgeSerial & "', " & - "Ct_Model = 'EFFECT', " & - "Ct_Type = 'SET' " & - "WHERE PV_SN = '" & TDNameStr & "'" - - DBCommand(DBCmd) - End If - - txbInfoBox.Text = "SUCCESS" - txbInfoBox.BackColor = Color.Green - GoTo End_Finish - - Catch ex As Exception - MsgBox("입력 진행 도중 에러 발생!" & vbCrLf & ex.Message, vbCritical, FormName) - GoTo FAIL_Finish - End Try - -FAIL_Finish: - txbInfoBox.Text = "ERROR" + Str(StageCnt) - txbInfoBox.BackColor = Color.Red -End_Finish: - txbInfoBox.Refresh() - End Sub - - Private Function MAXInfoWrite(Factory As String, ProdNum As String, ModelType As Integer, AboardNum As Integer, AgencyNum As Integer) As Int16 - + Private Function OptimumInfoWrite(Factory As String, ProdNum As String, ModelType As String, ModelOpt As String, QcOpt As String, AboardNum As Integer, AgencyNum As Integer) As Int16 + Dim retVal As String tmpCmdMessage = "wrsconf1" + + cmdMessage = "[" & tmpCmdMessage & " " & Factory & "," & ProdNum & "," & ModelType & "," & ModelOpt & "," & QcOpt & "," & AboardNum & "," & AgencyNum & "]" + vbCrLf + + If SendData(cmdMessage) Then + Return ErrorList.SendError + End If + + retVal = PollingReceiveData(2000) + + If retVal <> Factory & "," & ProdNum & "," & ModelType & "," & ModelOpt & "," & QcOpt & "," & AboardNum & "," & AgencyNum Then + Return ErrorList.ReceiveError + End If + + Return ErrorList.NonError + End Function + + Private Function MAXInfoWrite(Factory As String, ProdNum As String, ModelType As String, AboardNum As Integer, AgencyNum As Integer) As Int16 + Dim retVal As String + tmpCmdMessage = "wrsconf1" + cmdMessage = "[" & tmpCmdMessage & " " & Factory & "," & ProdNum & "," & ModelType & "," & AboardNum & "," & AgencyNum & "]" + vbCrLf If SendData(cmdMessage) Then Return ErrorList.SendError End If - Dim retVal As String = PollingReceiveData(2000) + retVal = PollingReceiveData(2000) If retVal <> Factory.ToLower & "," & ProdNum & "," & ModelType & "," & AboardNum & "," & AgencyNum Then Return ErrorList.ReceiveError @@ -889,15 +857,11 @@ End_Finish: End Function Private Sub btnIfRead_Click(sender As Object, e As EventArgs) Handles btnIfRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_ReadFunc() - Case ModeList.MAXIMUM + Case ModeList.MAXIMUM, ModeList.ALTO, ModeList.EFFECT MAXIMUM_ReadFunc() - Case ModeList.ALTO - ALTO_ReadFunc() - Case ModeList.EFFECT - EFFECT_ReadFunc() Case Else MsgBox("잘못된 경로입니다.", vbCritical, FormName) End Select @@ -952,8 +916,9 @@ End_Finish: Dim ModelCode As Int16 = Val(Mid(DataResult, 1, 1)) - If ModelChecking(ModelCode) Then - MsgBox("없는 모델 번호입니다.", vbCritical, FormName) + If ModelCode <> SelectedModelInfo.Code Then + StageCnt = ErrorList.DataError + MsgBox(SelectedModelInfo.Name & " 제품군이 아닙니다.", vbCritical, FormName) GoTo FAIL_Finish End If @@ -977,8 +942,11 @@ End_Finish: End If Dim cartCode = Mid(DataResult, 1, 1) + Dim index As Integer = FindIndexMachingValue(comboBoxType, cartCode) - If TypeChecking(Val(cartCode)) Then + If index <> -1 Then + comboBoxType.SelectedIndex = index + Else MsgBox("없는 타입 번호입니다.", vbCritical, FormName) GoTo FAIL_Finish End If @@ -1009,20 +977,36 @@ End_Finish: serial += TwosComplement32Mask End If - DataResult = serial.ToString + Dim SerialValue As String = serial.ToString - Dim productSerial = ModelCode & cartCode & DataResult - - If productSerial.Length <> SerialParsingLength Then + If (ModelCode & cartCode & SerialValue).Length <> OldSerialParsingLength Then StageCnt = ErrorList.DataError GoTo FAIL_Finish End If - txbIfNumber.Text = productSerial + txbIfNumber.Text = ModelCode & cartCode & Mid(SerialValue, 1, 2) & Mid(SerialValue, 3, 2) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) - nudIfYear.Text = Mid(productSerial, 3, 2) - nudIfMonth.Text = Mid(productSerial, 5, 2) - nudIfSerial.Text = Mid(productSerial, 10, 3) & Mid(productSerial, 7, 3) + nudIfYear.Text = Mid(SerialValue, 1, 2) + nudIfMonth.Text = Mid(SerialValue, 3, 2) + nudIfSerial.Text = Mid(SerialValue, 5, 6) + + Dim ClassCode = Mid(SerialValue, 5, 1) + index = FindIndexMachingValue(comboBoxClass, ClassCode) + If index <> -1 Then + comboBoxClass.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + Dim ColorCode = Mid(SerialValue, 6, 1) + index = FindIndexMachingValue(comboBoxColor, ColorCode) + If index <> -1 Then + comboBoxColor.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If txbInfoBox.Text = "SUCCESS" txbInfoBox.BackColor = Color.Green @@ -1053,170 +1037,129 @@ End_Finish: GoTo FAIL_Finish End If - Dim MakeCode As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim SerialValue As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim ProdValue As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) + Dim ResultDataArray() As String = ResultData.Split(",") + Dim MakeCode As String = ResultDataArray(0) + Dim SerialValue As String = ResultDataArray(1) - Dim ModelCode As String = Mid(ProdValue, 1, 1) - Dim TypeCode As String = Mid(ProdValue, 2, 1) + If ResultDataArray.Length = 7 Then 'JOMT,2511000110,71,A,750,0,0 + Dim ModelCode As String = ResultDataArray(2) + Dim ColorCode As String = ResultDataArray(3) + Dim QcOptValue As String = ResultDataArray(4) + Dim TypeCode As String = Mid(QcOptValue, 2, 1) + Dim ClassCode As String = Mid(QcOptValue, 1, 1) + Dim VersionCode As String = Mid(QcOptValue, 3, 1) + Dim index As Integer - txbIfCode.Text = MakeCode + txbIfCode.Text = MakeCode + + If (ModelCode & ColorCode & SerialValue & QcOptValue).Length <> NewSerialParsingLength Then + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + txbIfNumber.Text = ModelCode & ColorCode & SerialValue & QcOptValue + nudIfYear.Text = Mid(SerialValue, 1, 2) + nudIfMonth.Text = Mid(SerialValue, 3, 2) + nudIfSerial.Text = Mid(SerialValue, 5, 6) + + If ModelCode <> SelectedModelInfo.Code Then + StageCnt = ErrorList.DataError + MsgBox(SelectedModelInfo.Name & " 제품군이 아닙니다.", vbCritical, FormName) + GoTo FAIL_Finish + End If + + index = FindIndexMachingValue(comboBoxType, TypeCode) + If index <> -1 Then + comboBoxType.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + index = FindIndexMachingValue(comboBoxColor, ColorCode) + If index <> -1 Then + comboBoxColor.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + index = FindIndexMachingValue(comboBoxClass, ClassCode) + If index <> -1 Then + comboBoxClass.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + index = FindIndexMachingValue(comboBoxVersion, VersionCode) + If index <> -1 Then + comboBoxVersion.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + txbInfoBox.Text = "SUCCESS" + txbInfoBox.BackColor = Color.Green + GoTo End_Finish + + Else 'jomt,2511710001,70,82,0 + Dim ProdValue As String = ResultDataArray(2) + Dim ModelCode As String = Mid(ProdValue, 1, 1) + Dim TypeCode As String = Mid(ProdValue, 2, 1) + Dim ColorCode = Mid(SerialValue, 6, 1) + Dim ClassCode = Mid(SerialValue, 5, 1) + Dim index As Integer + + txbIfCode.Text = MakeCode + + If (ProdValue & SerialValue).Length <> OldSerialParsingLength Then + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + txbIfNumber.Text = ProdValue & Mid(SerialValue, 1, 2) & Mid(SerialValue, 3, 2) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) + nudIfYear.Text = Mid(SerialValue, 1, 2) + nudIfMonth.Text = Mid(SerialValue, 3, 2) + nudIfSerial.Text = Mid(SerialValue, 5, 6) + + If ModelCode <> SelectedModelInfo.Code Then + StageCnt = ErrorList.DataError + MsgBox(SelectedModelInfo.Name & " 제품군이 아닙니다.", vbCritical, FormName) + GoTo FAIL_Finish + End If + + index = FindIndexMachingValue(comboBoxType, TypeCode) + If index <> -1 Then + comboBoxType.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + index = FindIndexMachingValue(comboBoxColor, ColorCode) + If index <> -1 Then + comboBoxColor.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + index = FindIndexMachingValue(comboBoxClass, ClassCode) + If index <> -1 Then + comboBoxClass.SelectedIndex = index + Else + StageCnt = ErrorList.DataError + GoTo FAIL_Finish + End If + + txbInfoBox.Text = "SUCCESS" + txbInfoBox.BackColor = Color.Green + GoTo End_Finish - If (ProdValue & SerialValue).Length <> SerialParsingLength Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish End If - If ModelCode = Str(ModelList.MAXIMUM) Then - StageCnt = ErrorList.DataError - MsgBox("MAXIMUM 제품군이 아닙니다.", vbCritical, FormName) - GoTo FAIL_Finish - End If - - txbIfNumber.Text = ProdValue & Mid(SerialValue, 1, 2) & Mid(SerialValue, 3, 2) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) - - nudIfYear.Text = Mid(SerialValue, 1, 2) - nudIfMonth.Text = Mid(SerialValue, 3, 2) - - If TypeChecking_MAX(TypeCode) Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - nudIfSerial.Text = Mid(SerialValue, 5, 6) - - txbInfoBox.Text = "SUCCESS" - txbInfoBox.BackColor = Color.Green - GoTo End_Finish - - Catch ex As Exception - MsgBox("출력 진행 도중 에러 발생!" & vbCrLf & ex.Message, vbCritical, FormName) - GoTo FAIL_Finish - End Try - -FAIL_Finish: - txbInfoBox.Text = "ERROR" + Str(StageCnt) - txbInfoBox.BackColor = Color.Red -End_Finish: - txbInfoBox.Refresh() - End Sub - - Private Sub ALTO_ReadFunc() - Dim StageCnt As Int16 = ErrorList.NonError - - Try - InfoReadReady() - - Dim ResultData As String = ReadInfo() - - If ResultData = Str(ErrorList.SendError) Or ResultData = Str(ErrorList.ReceiveError) Then - StageCnt = ResultData - GoTo FAIL_Finish - End If - - Dim MakeCode As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim SerialValue As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim ProdValue As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - - Dim ModelCode As String = Mid(ProdValue, 1, 1) - Dim TypeCode As String = Mid(ProdValue, 2, 1) - - txbIfCode.Text = MakeCode - - If (ProdValue & SerialValue).Length <> SerialParsingLength Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - If ModelCode = Str(ModelList.ALTO) Then - StageCnt = ErrorList.DataError - MsgBox("ALTO 제품군이 아닙니다.", vbCritical, FormName) - GoTo FAIL_Finish - End If - - txbIfNumber.Text = ProdValue & Mid(SerialValue, 1, 2) & Mid(SerialValue, 3, 2) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) - - nudIfYear.Text = Mid(SerialValue, 1, 2) - nudIfMonth.Text = Mid(SerialValue, 3, 2) - - If TypeChecking_MAX(TypeCode) Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - nudIfSerial.Text = Mid(SerialValue, 5, 6) - - txbInfoBox.Text = "SUCCESS" - txbInfoBox.BackColor = Color.Green - GoTo End_Finish - - Catch ex As Exception - MsgBox("출력 진행 도중 에러 발생!" & vbCrLf & ex.Message, vbCritical, FormName) - GoTo FAIL_Finish - End Try - -FAIL_Finish: - txbInfoBox.Text = "ERROR" + Str(StageCnt) - txbInfoBox.BackColor = Color.Red -End_Finish: - txbInfoBox.Refresh() - End Sub - - Private Sub EFFECT_ReadFunc() - Dim StageCnt As Int16 = ErrorList.NonError - - Try - InfoReadReady() - - Dim ResultData As String = ReadInfo() - - If ResultData = Str(ErrorList.SendError) Or ResultData = Str(ErrorList.ReceiveError) Then - StageCnt = ResultData - GoTo FAIL_Finish - End If - - Dim MakeCode As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim SerialValue As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim ProdValue As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - - Dim ModelCode As String = Mid(ProdValue, 1, 1) - Dim TypeCode As String = Mid(ProdValue, 2, 1) - - txbIfCode.Text = MakeCode - - If (ProdValue & SerialValue).Length <> SerialParsingLength Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - If ModelCode = Str(ModelList.EFFECT) Then - StageCnt = ErrorList.DataError - MsgBox("EFFECT 제품군이 아닙니다.", vbCritical, FormName) - GoTo FAIL_Finish - End If - - txbIfNumber.Text = ProdValue & Mid(SerialValue, 1, 2) & Mid(SerialValue, 3, 2) & Mid(SerialValue, 8, 3) & Mid(SerialValue, 5, 3) - - nudIfYear.Text = Mid(SerialValue, 1, 2) - nudIfMonth.Text = Mid(SerialValue, 3, 2) - - If TypeChecking_MAX(TypeCode) Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - nudIfSerial.Text = Mid(SerialValue, 5, 6) - - txbInfoBox.Text = "SUCCESS" - txbInfoBox.BackColor = Color.Green - GoTo End_Finish - Catch ex As Exception MsgBox("출력 진행 도중 에러 발생!" & vbCrLf & ex.Message, vbCritical, FormName) GoTo FAIL_Finish @@ -1263,94 +1206,28 @@ End_Finish: nudIfYear.Refresh() nudIfMonth.Text = Format(Now, "MM") nudIfMonth.Refresh() - rdbIfPRO_V1.Checked = True - rdbIfPRO_V1.Refresh() - rdbIfLUX_V2.Checked = False - rdbIfLUX_V2.Refresh() - rdbIfALPHA.Checked = False - rdbIfALPHA.Refresh() - rdbIfFace.Checked = True - rdbIfFace.Refresh() - rdbIfEye.Checked = False - rdbIfEye.Refresh() - rdbIfBody.Checked = False - rdbIfBody.Refresh() nudIfSerial.Text = String.Empty nudIfSerial.Refresh() + comboBoxType.SelectedIndex = 0 + comboBoxColor.SelectedIndex = 0 + comboBoxClass.SelectedIndex = 0 + comboBoxVersion.SelectedIndex = 0 + txbInfoBox.Visible = False txbInfoBox.Text = String.Empty txbInfoBox.BackColor = Color.FromArgb(0, 192, 0) End Sub - Private Function ModelChecking(ModelNum As Int16) As Boolean - Select Case ModelNum - Case ModelList.PRO - rdbIfPRO_V1.Checked = True - rdbIfLUX_V2.Checked = False - rdbIfALPHA.Checked = False - Case ModelList.LUX - rdbIfPRO_V1.Checked = False - rdbIfLUX_V2.Checked = True - rdbIfALPHA.Checked = False - Case ModelList.ALPHA - rdbIfPRO_V1.Checked = False - rdbIfLUX_V2.Checked = False - rdbIfALPHA.Checked = True - Case Else - Return True - End Select - - Return False - End Function - - Private Function TypeChecking_MAX(TypeNum As Int16) As Boolean - Select Case TypeNum - Case TypeList.V1_Set - rdbIfPRO_V1.Checked = True - rdbIfLUX_V2.Checked = False - rdbIfALPHA.Checked = False - Case TypeList.V2_Face - rdbIfPRO_V1.Checked = False - rdbIfLUX_V2.Checked = True - rdbIfALPHA.Checked = False - Case Else - Return True - End Select - Return False - End Function - - Private Function TypeChecking(TypeNum As Int16) As Boolean - Select Case TypeNum - Case TypeCodeList.Face - rdbIfFace.Checked = True - rdbIfEye.Checked = False - rdbIfBody.Checked = False - Case TypeCodeList.Eye - rdbIfFace.Checked = False - rdbIfEye.Checked = True - rdbIfBody.Checked = False - Case TypeCodeList.Body - rdbIfFace.Checked = False - rdbIfEye.Checked = False - rdbIfBody.Checked = True - Case Else - Return True - End Select - Return False - End Function - Private Function TDNameDBLoad(TDName As String) As Boolean - DBCmd = "SELECT EXISTS (SELECT 1 FROM " & UseCartridgeTbl & " WHERE PV_SN = '" & TDName & "')" + If SelectedModelInfo.TDUseYn = "Y" Then + DBCmd = "SELECT EXISTS (SELECT 1 FROM " & UseCartridgeTbl & " WHERE PV_SN = '" & TDName & "')" + Else + DBCmd = "SELECT EXISTS (SELECT 1 FROM " & NonCartridgeTbl & " WHERE PV_SN = '" & TDName & "')" + End If Return DBQueryScalar(DBCmd) End Function - Private Function NonTDNameDBLoad(TDName As String) As Boolean - DBCmd = "SELECT EXISTS (SELECT 1 FROM " & NonCartridgeTbl & " WHERE PV_SN = '" & TDName & "')" - Return DBQueryScalar(DBCmd) - End Function - - Private Function TDNameLoad() As String Dim retVal As String @@ -1373,7 +1250,7 @@ End_Finish: End Function Private Sub btnArRead_Click(sender As Object, e As EventArgs) Handles btnArRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_AreaReadFunc() Case ModeList.MAXIMUM, ModeList.ALTO, ModeList.EFFECT @@ -1465,14 +1342,15 @@ End_Finish: GoTo FAIL_Finish End If - 'If Mid(ResultData, 1, InStr(ResultData, ",") - 1) = "" Then - ' StageCnt = ErrorList.DataError - ' GoTo FAIL_Finish - 'End If + Dim ResultDataArray() As String = ResultData.Split(",") - txbAgency.Text = Mid(ResultData, InStrRev(ResultData, ",", ResultData.Length) + 1, ResultData.Length) - ResultData = Mid(ResultData, 1, InStrRev(ResultData, ",", ResultData.Length) - 1) - txbAbroad.Text = Mid(ResultData, InStrRev(ResultData, ",", ResultData.Length) + 1, ResultData.Length) + If ResultDataArray.Length = 7 Then 'JOMT,2511000110,71,A,750,0,0 + txbAbroad.Text = ResultDataArray(5) + txbAgency.Text = ResultDataArray(6) + Else 'jomt,2511710001,70,82,0 + txbAbroad.Text = ResultDataArray(3) + txbAgency.Text = ResultDataArray(4) + End If txbAreaBox.Text = "SUCCESS" txbAreaBox.BackColor = Color.Green @@ -1502,13 +1380,11 @@ End_Finish: End Function Private Sub btnArWrite_Click(sender As Object, e As EventArgs) Handles btnArWrite.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_AreaWriteFunc() - Case ModeList.MAXIMUM, ModeList.EFFECT + Case ModeList.MAXIMUM, ModeList.EFFECT, ModeList.ALTO MAXIMUM_AreaWriteFunc() - Case ModeList.ALTO - ALTO_AreaWriteFunc() Case Else MsgBox("잘못된 경로입니다.", vbCritical, FormName) End Select @@ -1598,19 +1474,18 @@ End_Finish: Dim ResultData As String = ReadInfo() - If ResultData = Str(ErrorList.SendError) Or ResultData = Str(ErrorList.ReceiveError) Then StageCnt = ResultData GoTo FAIL_Finish End If - Dim Data1 As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim Data2 As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim Data3 As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) + Dim ResultDataArray() As String = ResultData.Split(",") - ResultData = MAXInfoWrite(Data1, Data2, Data3, txbAbroad.Text, txbAgency.Text) + If ResultDataArray.Length = 7 Then 'JOMT,2511000110,71,A,750,0,0 + ResultData = OptimumInfoWrite(ResultDataArray(0), ResultDataArray(1), ResultDataArray(2), ResultDataArray(3), ResultDataArray(4), txbAbroad.Text, txbAgency.Text) + Else 'jomt,2511710001,70,82,0 + ResultData = MAXInfoWrite(ResultDataArray(0), ResultDataArray(1), ResultDataArray(2), txbAbroad.Text, txbAgency.Text) + End If If ResultData = ErrorList.SendError Or ResultData = ErrorList.ReceiveError Then StageCnt = ResultData @@ -1634,78 +1509,12 @@ End_Finish: GoTo FAIL_Finish End If - DBCmd = "UPDATE " & UseCartridgeTbl & " SET " & - "Ct_Abroad = '" & txbAbroad.Text.Trim() & "', " & - "Ct_Agency = '" & txbAgency.Text.Trim() & "' " & - "WHERE PV_SN = '" & TDNameStr & "'" - - DBCommand(DBCmd) - End If - - txbAreaBox.Text = "SUCCESS" - txbAreaBox.BackColor = Color.Green - GoTo End_Finish - - Catch ex As Exception - MsgBox("입력 진행 도중 에러 발생!" & vbCrLf & ex.Message, vbCritical, FormName) - GoTo FAIL_Finish - End Try - -FAIL_Finish: - txbAreaBox.Text = "ERROR" + Str(StageCnt) - txbAreaBox.BackColor = Color.Red -End_Finish: - txbAreaBox.Refresh() - End Sub - - Private Sub ALTO_AreaWriteFunc() - Dim StageCnt As Int16 = ErrorList.NonError - - Try - If AreaWriteStart() Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If - - Dim ResultData As String = ReadInfo() - - - If ResultData = Str(ErrorList.SendError) Or ResultData = Str(ErrorList.ReceiveError) Then - StageCnt = ResultData - GoTo FAIL_Finish - End If - - Dim Data1 As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim Data2 As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - ResultData = Mid(ResultData, InStr(ResultData, ",") + 1, ResultData.Length) - Dim Data3 As String = Mid(ResultData, 1, InStr(ResultData, ",") - 1) - - ResultData = MAXInfoWrite(Data1, Data2, Data3, txbAbroad.Text, txbAgency.Text) - - If ResultData = ErrorList.SendError Or ResultData = ErrorList.ReceiveError Then - StageCnt = ResultData - GoTo FAIL_Finish - End If - - If ckbDBUse.Checked = True Then - Dim TDNameStr = TDNameLoad() - - If TDNameStr = Str(ErrorList.SendError) Or TDNameStr = Str(ErrorList.ReceiveError) Then - MsgBox("TD 시리얼 번호를 확인할 수 없습니다. 저장하고자 하는 Serial 번호를 먼저 입력하여 주십시오.", vbExclamation, FormName) - StageCnt = TDNameStr - GoTo FAIL_Finish + Dim QueryTable As String = UseCartridgeTbl + If SelectedModelInfo.TDUseYn <> "Y" Then + QueryTable = NonCartridgeTbl End If - Dim DBExist As Boolean = NonTDNameDBLoad(TDNameStr) - - If DBExist = False Then - MsgBox("TD 시리얼 번호가 데이터베이스에 등록되어 있지 않습니다.", vbCritical, FormName) - StageCnt = ErrorList.ReceiveError - GoTo FAIL_Finish - End If - - DBCmd = "UPDATE " & NonCartridgeTbl & " SET " & + DBCmd = "UPDATE " & QueryTable & " SET " & "Ct_Abroad = '" & txbAbroad.Text.Trim() & "', " & "Ct_Agency = '" & txbAgency.Text.Trim() & "' " & "WHERE PV_SN = '" & TDNameStr & "'" @@ -1730,7 +1539,7 @@ End_Finish: End Sub Private Sub btnTdRead_Click(sender As Object, e As EventArgs) Handles btnTdRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_TDReadFunc() Case ModeList.MAXIMUM, ModeList.ALTO, ModeList.EFFECT @@ -1754,8 +1563,8 @@ End_Finish: MsgBox("현재 기능 없음") - txbInfoBox.Text = "SUCCESS" - txbInfoBox.BackColor = Color.Green + txbTDBox.Text = "기능없음" + txbTDBox.BackColor = Color.Red GoTo End_Finish Catch ex As Exception @@ -1764,10 +1573,10 @@ End_Finish: End Try FAIL_Finish: - txbAreaBox.Text = "ERROR" + Str(StageCnt) - txbAreaBox.BackColor = Color.Red + txbTDBox.Text = "ERROR" + Str(StageCnt) + txbTDBox.BackColor = Color.Red End_Finish: - txbAreaBox.Refresh() + txbTDBox.Refresh() End Sub Private Sub MAXIMUM_TDReadFunc() @@ -1823,7 +1632,7 @@ End_Finish: End Function Private Sub btnTdWrite_Click(sender As Object, e As EventArgs) Handles btnTdWrite.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_TDWrtieFunc() Case ModeList.MAXIMUM, ModeList.ALTO, ModeList.EFFECT @@ -1902,7 +1711,7 @@ End_Finish: Dim retVal As String = PollingReceiveData(1500) - If retVal = SaveData.ToLower Then + If retVal = SaveData.ToLower Or retVal = SaveData Then Return retVal Else Return Str(ErrorList.ReceiveError) @@ -1910,7 +1719,7 @@ End_Finish: End Function Private Sub btnFPRead_Click(sender As Object, e As EventArgs) Handles btnFPRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_FPReadFunc() Case ModeList.MAXIMUM, ModeList.EFFECT @@ -2045,7 +1854,7 @@ End_Finish: End Function Private Sub btnFPWrite_Click(sender As Object, e As EventArgs) Handles btnFPWrite.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_FPWriteFunc() Case ModeList.MAXIMUM, ModeList.EFFECT @@ -2226,7 +2035,7 @@ End_Finish: End Function Private Sub btnMtRead_Click(sender As Object, e As EventArgs) Handles btnMtRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_MtRead() Case ModeList.MAXIMUM, ModeList.EFFECT @@ -2303,7 +2112,7 @@ End_Finish: GoTo FAIL_Finish End If - txbMotor.Text = ResultData + txbMotor.Text = Mid(ResultData, 1, InStr(1, ResultData, ",") - 1) txbMtBox.Text = "SUCCESS" txbMtBox.BackColor = Color.Green @@ -2332,14 +2141,14 @@ End_Finish: Dim retval As String = PollingReceiveData(1000) If UBound(Split(retval, ",")) = 4 Then - Return Mid(retval, 1, InStr(1, retval, ",") - 1) + Return retval Else Return ErrorList.ReceiveError End If End Function Private Sub btnMtWrite_Click(sender As Object, e As EventArgs) Handles btnMtWrite.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_MtWrite() Case ModeList.MAXIMUM, ModeList.EFFECT @@ -2484,7 +2293,7 @@ End_Finish: End Function Private Sub btnShRead_Click(sender As Object, e As EventArgs) Handles btnShRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_ShotRead() Case ModeList.MAXIMUM, ModeList.EFFECT @@ -2617,7 +2426,7 @@ End_Finish: End Function Private Sub btnShWrite_Click(sender As Object, e As EventArgs) Handles btnShWrite.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_ShotWrite() Case ModeList.MAXIMUM, ModeList.EFFECT @@ -2786,7 +2595,7 @@ End_Finish: End Function Private Sub btnDvAuth_Click(sender As Object, e As EventArgs) Handles btnDvAuth.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_DevAuth() Case Else @@ -2847,7 +2656,7 @@ End_Finish: End Sub Private Sub btnDvRead_Click(sender As Object, e As EventArgs) Handles btnDvRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_DevRead() Case Else @@ -2913,8 +2722,6 @@ End_Finish: txbDvNumber.Text = FrontCode & swapped nudDvSerial.Text = Mid(BackCode, 5, 6) - DevModelChecking(Mid(FrontCode, 1, 1)) - txbDvInfoBox.Text = "SUCCESS" txbDvInfoBox.BackColor = Color.Green GoTo End_Finish @@ -2931,31 +2738,8 @@ End_Finish: txbDvInfoBox.Refresh() End Sub - Private Sub DevModelChecking(ModelNum As Int16) - Select Case ModelNum - Case ModelList.PRO - rdbDvPRO.Checked = True - rdbDvLUX.Checked = False - rdbDvALPHA.Checked = False - - Case ModelList.LUX - rdbDvPRO.Checked = False - rdbDvLUX.Checked = True - rdbDvALPHA.Checked = False - - Case ModelList.ALPHA - rdbDvPRO.Checked = False - rdbDvLUX.Checked = False - rdbDvALPHA.Checked = True - - Case Else - MsgBox("잘못된 코드 번호 입니다.", vbCritical, FormName) - End Select - - End Sub - Private Sub btnDvWrite_Click(sender As Object, e As EventArgs) Handles btnDvWrite.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.DUALSONIC DUALSONIC_DevWrite() Case Else @@ -2975,11 +2759,6 @@ End_Finish: Return True End If - If rdbDvPRO.Checked = False And rdbDvLUX.Checked = False And rdbDvALPHA.Checked = False Then - MsgBox("선택된 타입이 존재하지 않습니다.", vbExclamation, FormName) - Return True - End If - Return False End Function @@ -2998,12 +2777,7 @@ End_Finish: Dim MonthParsing As String = MonthSetting(nudDvMonth.Value.ToString) Dim SerialNum As String = nudDvYear.Value & MonthParsing & SerialNumSetting(nudDvSerial.Value) - Dim ModelNum As String = DevModelSetting() & TypeNum - - If ModelNum = ModelList.MAX_Model Then - StageCnt = ErrorList.DataError - GoTo FAIL_Finish - End If + Dim ModelNum As String = SelectedModelInfo.Code & TypeNum tmpCmdMessage = "wrstconf" cmdMessage = "[sb" & tmpCmdMessage & " " & txbDvCode.Text & "," & SerialNum & "," & ModelNum & "," & txbDvAbroad.Text & "," & txbDvAgency.Text & "]" @@ -3041,20 +2815,6 @@ End_Finish: txbDvInfoBox.Refresh() End Sub - Private Function DevModelSetting() As Int16 - If rdbDvPRO.Checked = True Then - Return ModelList.PRO - ElseIf rdbDvLUX.Checked = True Then - Return ModelList.LUX - ElseIf rdbDvALPHA.Checked = True Then - Return ModelList.ALPHA - Else - MsgBox("잘못된 타입 경로입니다.", vbCritical, FormName) - Return ModelList.MAX_Model - End If - - End Function - Private Sub btnDuReady_Click(sender As Object, e As EventArgs) Handles btnDuReady.Click Dim StageCnt As Int16 = ErrorList.NonError @@ -3315,7 +3075,7 @@ End_Finish: End Sub Private Sub btnMxAllRead_Click(sender As Object, e As EventArgs) Handles btnMxAllRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.MAXIMUM MAXIMUM_UseReadFunc() Case Else @@ -3471,7 +3231,7 @@ End_Finish: End Function Private Sub btnMxAllReset_Click(sender As Object, e As EventArgs) Handles btnMxAllReset.Click, btnMxHfReset.Click, btnMxEtReset.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.MAXIMUM MAXIMUM_UseResetFunc() Case Else @@ -3514,7 +3274,7 @@ End_Finish: End Sub Private Sub btnMxHfRead_Click(sender As Object, e As EventArgs) Handles btnMxHfRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.MAXIMUM MAXIMUM_HF_UseReadFunc() Case Else @@ -3628,7 +3388,7 @@ End_Finish: End Sub Private Sub btnMxEtRead_Click(sender As Object, e As EventArgs) Handles btnMxEtRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.MAXIMUM MAXIMUM_ET_UseReadFunc() Case Else @@ -3754,7 +3514,7 @@ End_Finish: End Sub Private Sub btnALAllRead_Click(sender As Object, e As EventArgs) Handles btnALAllRead.Click - Select Case SelectModel + Select Case SelectModeType Case ModeList.ALTO ALTO_ALL_UseReadFunc() Case Else @@ -4114,7 +3874,8 @@ End_Finish: End Sub Private Const TDLength As Byte = 10 - Private Const ProdLength As Byte = 12 + Private Const OldProdLength As Byte = 12 + Private Const NewProdLength As Byte = 16 ''DataType 이 True 일 경우 TD 데이터 / False 일 경우 제품 데이터 Private DataType As Boolean = False @@ -4130,7 +3891,7 @@ End_Finish: If result <> True Then NonTD_Search() End If - ElseIf txbLoadNum.Text.Length = ProdLength Then + ElseIf txbLoadNum.Text.Length = OldProdLength Or txbLoadNum.Text.Length = NewProdLength Then DataType = False Dim result = Product_Search() @@ -4164,7 +3925,7 @@ End_Finish: Return True Else Return False - End If + End If End Function Private Sub NonTD_Search() @@ -4191,7 +3952,7 @@ End_Finish: End Sub Private Function Product_Search() As Boolean - Dim DBCmd As String = "SELECT Product_SN,Ct_Manufacture_Name,Ct_SN,Ct_Model,Ct_Type,Ct_Abroad,Ct_Agency,Ct_Power,Ct_Max_ShotCnt,Ct_Motor_Lv,PV_SN,Ct_Frequency,IFNULL(Manufacture_Date,'') as Manufacture_Date FROM " & UseCartridgeTbl & " WHERE Product_SN = '" & txbLoadNum.Text & "' Limit 1" + Dim DBCmd As String = "SELECT Product_SN,Ct_Manufacture_Name,Ct_SN,Ct_Model,Ct_Type,Ct_Abroad,Ct_Agency,Ct_Power,Ct_Remain_ShotCnt,Ct_Motor_Lv,PV_SN,Ct_Frequency,IFNULL(Manufacture_Date,'') as Manufacture_Date FROM " & UseCartridgeTbl & " WHERE Product_SN = '" & txbLoadNum.Text & "' Limit 1" If DBQueryReader(DBCmd) Then txbPDSN.Text = sqlDataQuery(0) @@ -4254,11 +4015,14 @@ End_Finish: End Sub Private Sub btnwrite_Click(sender As Object, e As EventArgs) Handles btnwrite.Click + ResetClear() + ResultReset() + btnIfRead_Click(sender, e) btnArRead_Click(sender, e) btnTdRead_Click(sender, e) - If SelectModel.Equals(ModeList.ALTO) Then + If SelectModeType.Equals(ModeList.ALTO) Then Return End If @@ -4266,4 +4030,5 @@ End_Finish: btnMtRead_Click(sender, e) btnShRead_Click(sender, e) End Sub + End Class diff --git a/Product_Manager/MySqlMoudule.vb b/Product_Manager/MySqlMoudule.vb index 7025a56..7a4d97a 100644 --- a/Product_Manager/MySqlMoudule.vb +++ b/Product_Manager/MySqlMoudule.vb @@ -4,7 +4,11 @@ Module MySqlMoudule Private Const CartridgeTbl As String = "jomtTesterDB.jomtCartridgeTbl" Private Const CartridgeTblTest As String = "jomtTesterServerDB.jomtCartridgeTbl" + Private Const mainModelInfoDB As String = "jomtTesterDB.jomtModelInfoTbl" + Private Const testModelInfoDB As String = "jomtTesterServerDB.jomtModelInfoTbl" + Public UseCartridgeTbl As String = CartridgeTbl + Public ApplyModelInfoDB As String = mainModelInfoDB Public Const NonCartridgeTbl As String = "jomtTesterDB.jomtNonTDTbl" diff --git a/Product_Manager/SerialPortMoudule.vb b/Product_Manager/SerialPortMoudule.vb index 1ff871c..4bf707d 100644 --- a/Product_Manager/SerialPortMoudule.vb +++ b/Product_Manager/SerialPortMoudule.vb @@ -169,10 +169,18 @@ Module SerialPortMoudule '' MAXIMUM Case "rdsconf1" - cmdStr = cmdVal(1) & "," & cmdVal(2) & "," & cmdVal(3) & "," & cmdVal(4) & "," & cmdVal(5) + If MainForm.SelectedModelInfo.Code.Length = 2 Then '16자리 시리얼번호 + cmdStr = cmdVal(1) & "," & cmdVal(2) & "," & cmdVal(3) & "," & cmdVal(4) & "," & cmdVal(5) & "," & cmdVal(6) & "," & cmdVal(7) + Else '12자리 시리얼번호 + cmdStr = cmdVal(1) & "," & cmdVal(2) & "," & cmdVal(3) & "," & cmdVal(4) & "," & cmdVal(5) + End If Return cmdStr Case "wrsconf1" - cmdStr = cmdVal(1) & "," & cmdVal(2) & "," & cmdVal(3) & "," & cmdVal(4) & "," & cmdVal(5) + If MainForm.SelectedModelInfo.Code.Length = 2 Then '16자리 시리얼번호 + cmdStr = cmdVal(1) & "," & cmdVal(2) & "," & cmdVal(3) & "," & cmdVal(4) & "," & cmdVal(5) & "," & cmdVal(6) & "," & cmdVal(7) + Else '12자리 시리얼번호 + cmdStr = cmdVal(1) & "," & cmdVal(2) & "," & cmdVal(3) & "," & cmdVal(4) & "," & cmdVal(5) + End If Return cmdStr Case "shotconf" cmdStr = cmdVal(1)