开发者

How do I display an input form when a user selects "other" from a combo box in MS Access?

开发者 https://www.devze.com 2022-12-23 04:49 出处:网络
This is basically the same question as \"Click items in select box, and then display a text input.\" Except I am using MS Access. I want to display a text input field on a form when the user selects \

This is basically the same question as "Click items in select box, and then display a text input." Except I am using MS Access. I want to display a text input field on a form when the user selects "other" from a combo box on the same form. How do I do thi开发者_如何学运维s?


Put something like this in the AfterUpdate event of the combo box

If me.cboMy_combo=”Other” then
    Me.txtSome_test.Visible =true
Else
    Me.txtSome_test.Visible =false
End if
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号