我希望当有人点击其他人时出现一个新的文本框

发布于 2024-11-05 00:35:05 字数 74 浏览 0 评论 0原文

我在访问该下拉框中有一个表单。现在我想要的是,当有人从下拉框中选择其他人时,会出现一个新的文本框以允许用户输入。任何人都可以帮忙,谢谢

I have a form in access that dropdown box. Now what I want is when someone choose others from the dropdown box, a new text box shows up to allow the user to type. Anyone help please thank y ou

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

歌入人心 2024-11-12 00:35:05

假设您的 DropDown 名为 Combo1,并且在同一表单上您有一个名为 Text1 的文本框,并且“Others”的值也是“others”。然后你只需要像这样编写 Combo1 的 Change 事件

Private Sub Combo1_Change()

        Me.Text1.Visible = (Me.Combo1.Value = "others")        

End Sub

Assuming your DropDown is called Combo1 and on the same form you have a textbox called Text1 and the value of "Others" is also "others". Then you just need to code the Combo1's Change event like so

Private Sub Combo1_Change()

        Me.Text1.Visible = (Me.Combo1.Value = "others")        

End Sub
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文