Microsoft Access组合框和vba代码2007

时间:2014-07-31 17:43:22

标签: vba combobox

我有两个组合框,每个组合框都有不同的下拉项

组合框1:新的,已售出的,已退休的 组合框2:未分配,已退役,已返工,已发货

我希望如此,当用户从comobo框中选择New或Retired时,那些相应的值会显示在组合框2中。

我使用了on click sub for combo box 1

If Me.combox1.Value = "New" Then
Me.combox2.Value = "Unallocated"
End If

If Me.combox1.Value ="Retired" Then
Me.combox2.Value = "Retired"
End If

我不需要为这两个值的所有值同步两个框。

我正在学习访问VBA代码,所以我不确定实现这一目标的最佳方法。

1 个答案:

答案 0 :(得分:0)

If Me.combox1.Value = "New" Then
Me.combox2.Value = "Unallocated"
ElseIf Me.combox1.Value ="Retired" Then
Me.combox2.Value = "Retired"
Else
'do nothing
End If