From d44e15e03b36f5e6d092a828bc6caeb5a0547b2c Mon Sep 17 00:00:00 2001 From: jiwonRepair Date: Mon, 21 Jul 2025 16:18:44 +0900 Subject: [PATCH] fix: Effect V3 Color list & serial number error message fixed --- MAXIMUM_Product_Program/MainForm.vb | 13 ++----------- 업데이트 내역.txt | 5 ++--- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/MAXIMUM_Product_Program/MainForm.vb b/MAXIMUM_Product_Program/MainForm.vb index 2288145..48d60c0 100644 --- a/MAXIMUM_Product_Program/MainForm.vb +++ b/MAXIMUM_Product_Program/MainForm.vb @@ -288,9 +288,6 @@ Public Class MainForm cboRegColor.Items.Add("White_Pink") cboRegColor.Items.Add("White_Sky") Case "V3" - cboRegColor.Items.Add("White_Brown") - cboRegColor.Items.Add("White_Pink") - cboRegColor.Items.Add("White_Sky") cboRegColor.Items.Add("LineFrends_Brown") cboRegColor.Items.Add("LineFrends_Sally") Case Else @@ -420,12 +417,6 @@ Public Class MainForm TypeCode = "3" 'V3 혼란스럽지 않게 3으로 고정 Select Case dgvDataSet.Rows(cboSelect).Cells(5).Value - Case "White_Pink" - ColorCode = "1" - Case "White_Sky" - ColorCode = "2" - Case "White_Brown" - ColorCode = "3" Case "LineFrends_Brown" ColorCode = "4" Case "LineFrends_Sally" @@ -568,7 +559,7 @@ Public Class MainForm Private Sub FormSetting() Const ProgramName As String = "Product Program Ver_" - Const VersionNum As String = "1.1.4" + Const VersionNum As String = "1.1.5" Me.Text = ProgramName & VersionNum Me.Size = New Size(1920, 1050) @@ -821,7 +812,7 @@ FailFunc: If DBSerialCheck() Then Return False Else - MsgBox("시리얼 번호를 생성하는 과정에서 오류가 발생하였습니다.", vbCritical) + MsgBox("생성 할 시리얼 번호 " & SerialNum & "은 이미 존재 합니다.", vbCritical) Return True End If End Function diff --git a/업데이트 내역.txt b/업데이트 내역.txt index 5384c87..92263c4 100644 --- a/업데이트 내역.txt +++ b/업데이트 내역.txt @@ -1,3 +1,2 @@ -1. EFFECT cartridge color code를 SET에서 V2, V3로 분기 처리 - 1) V2 : 0 - 2) V3 : 3 \ No newline at end of file +1. 시리얼번호 생성 오류 메세지 수정 +2. EFFECT V3 color list 수정(라인프렌즈 외 제거)