我希望当有人点击其他人时出现一个新的文本框
我在访问该下拉框中有一个表单。现在我想要的是,当有人从下拉框中选择其他人时,会出现一个新的文本框以允许用户输入。任何人都可以帮忙,谢谢
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的 DropDown 名为 Combo1,并且在同一表单上您有一个名为 Text1 的文本框,并且“Others”的值也是“others”。然后你只需要像这样编写 Combo1 的 Change 事件
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