From 56f310d888ab448972d0a883627825fe34bd41a7 Mon Sep 17 00:00:00 2001 From: kje97 Date: Wed, 25 Jun 2025 14:36:35 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20MAXIMUM=5FV2=20=EC=83=89=EC=83=81?= =?UTF-8?q?=EC=B6=94=EA=B0=80(Pink,=20Yellow)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MAXIMUM_Product_Program/MainForm.vb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/MAXIMUM_Product_Program/MainForm.vb b/MAXIMUM_Product_Program/MainForm.vb index a7a6059..04c28ee 100644 --- a/MAXIMUM_Product_Program/MainForm.vb +++ b/MAXIMUM_Product_Program/MainForm.vb @@ -261,6 +261,8 @@ Public Class MainForm cboRegColor.Items.Add("Peach") cboRegColor.Items.Add("Purple") cboRegColor.Items.Add("Black_Gold") + cboRegColor.Items.Add("Pink") + cboRegColor.Items.Add("Yellow") Case Else MsgBox("잘못된 경로입니다.", vbCritical) End Select @@ -338,6 +340,10 @@ Public Class MainForm ColorCode = "8" Case "Black_Gold" ColorCode = "9" + Case "Pink" + ColorCode = "3" + Case "Yellow" + ColorCode = "5" Case Else Return True End Select @@ -445,7 +451,7 @@ Public Class MainForm Private Sub FormSetting() Const ProgramName As String = "Product Program Ver_" - Const VersionNum As String = "1.1.1" + Const VersionNum As String = "1.1.2" Me.Text = ProgramName & VersionNum Me.Size = New Size(1920, 1050)