0

如果从我的组合框中选择的这 2 个值“测试 1”和“测试 2”下一步应该变为不可见并移动到另一个不可见的步骤

这是我的代码..我写了这两个值,但我得到了一个错误。

Private Sub womanFacility_AfterUpdate()
 If Me.womanFacility = **"test1" and "test2"** Then
 Me.test4.Visible = False

  Else
 Me.Test4.Visible = True

End If

End Sub

图错误出现在我的第二行代码开始,if Me.womanFacility如果选择了这两个值,下一步应该变成不可见

4

1 回答 1

1

假设“**”不应该存在(因为你试图大胆地编写你的代码),按照 Alexandre 提到的那样做,并像这样更改你的代码:

If Me.womanFacility = "test1" and Me.womanFacility = "test2" Then
于 2013-10-23T15:27:06.773 回答