嘿我试图让一个文本框启用基于如果有人选择组合框中的任何值,它不必是特定的任何值。这是我到目前为止的代码,我收到类型不匹配错误,但我的字段类型是短文。
"dgrid/OnDemandGrid",
"dgrid/Selection",
"dgrid/extensions/Pagination"
提前致谢!另外,我使用VBA,如果那不明显lol
答案 0 :(得分:1)
试试这个
Private Sub cmbOwner2_Click()
If Me.cmbOwner2.Value <> "" Then
Me.txtOwner2.Enabled = True
Else
Me.txtOwner2.Enabled = False
End If
End Sub