我目前有一个包含两个组合框的表单。一个有名字,另一个有小时类型(即常规“rg”和加班“ot”)。我希望这取决于名称选择和小时类型选择,它将自动填充某个人工费率,因为根据姓名推迟,如果他们加班或定时工作。我知道如何使用一个组合框自动填充文本框,但不知道如何使用两个组合框。任何帮助将不胜感激!谢谢
答案 0 :(得分:0)
Private Sub ComboBoxNames_AfterUpdate()
if isnull(me.ComboBoxRate) or me.ComboBoxRate = "" then
exit sub
else
me.textbox1 = "Enter the value you want the text box to display"
end if
End Sub
Private Sub ComboBoxRate_AfterUpdate()
if isnull(me.ComboBoxNames) or me.ComboBoxNames = "" then
exit sub
else
me.textbox1 = "Enter the value you want the text box to display"
end if
End Sub