如何显示基于多个条件的值?

How can I show a value based on multiple conditions?

在我的表单中,我希望用户能够根据选项框和他们的输入看到颜色或动物。到目前为止我尝试过的代码对我没有用,我认为这是因为我不明白如何正确格式化它。

我尝试过对每种颜色的每个数字进行处理,我尝试只将数字添加为可能的值,然后尝试创建一个数组。然而没有成功。

例如.

如果选择 Optionbutton A,并且 textbox A 值为 1、4 或 10,则 textbox B 将显示蓝色。但如果 textbox A 值为 2、3、5 或 9,则 textbox B 将显示绿色。

示例 2.

Optionbutton B,且textbox A值为1、3、4、10或12,则textbox B将显示蝴蝶。但是,如果 textbox A 值为 2、5、7,则 textbox B 将显示 Caterpie。

添加了注释,我不知道表单是否可行,但是如果用户要在选项框之间切换,文本框 B 会相应地更改。

Private Sub txtboxA_Change()

Dim txtboxA As String
Dim Colourarray As Variant

Blue = Array("1", "4", "10")

Me.txtboxA.MaxLength = 2

'If OptA is selected then pick colour based on textbox value

If Me.OptA.Value = True And Me.txtboxA.Value = "1" Then 'This bit seemed to work, but once I copied this for every number which needs to show green, vba got unhappy at me. 
'If Me.OptA.Value = True And Me.txtboxA.Value = "1", "4", "10" Then
'If Me.optA.Value = True And (Poort = "1", "4", "10") Then
'If Me.txtboxA.Value = Colourarray And Me.optA.Value = True Then
Me.txtboxB.Value = "Blue"
End If
End Sub

这使用 select 案例而不是 if。

Private Sub txtboxA_Change()

    Dim txtboxA As String
    Dim optionchoice As Long

    Me.txtboxA.MaxLength = 2

    'option A = 1; option B = 2
    If Me.optA.Value = True Then 'Easier to do a select case on optionchoice over option button
        optionchoice = 1
    ElseIf Me.optB.Value = True Then
        optionchoice = 2
    End If


    Select Case optionchoice 'Based on Option Button selection
        Case 1 'Option A
            Select Case Me.txtboxA.Value 'Based on Text Box value
                Case 1, 4, 10
                    Me.txtBoxB.Value = "Blue"
                Case 2, 3, 5, 9
                    Me.txtBoxB.Value = "Green"
            End Select
        Case 2 'Option B
            Select Case Me.txtboxA.Value
                Case 1, 3, 4, 10, 12
                    Me.txtBoxB.Value = "Butterfly"
                Case 2, 5, 7
                    Me.txtBoxB.Value = "Caterpie"
            End Select
        End Select

End Sub