feat:MAXIMUM_V2 색상 추가(pink, yellow)

This commit is contained in:
kje97 2025-06-25 11:26:17 +09:00
parent 9e7a310be9
commit a01d077e6d

View File

@ -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