ACCESS/VBA:如何创建 ON/OFF 类型开关以允许修改表单上的记录?
我在搜索表单上使用组合框来选择是否查阅或修改记录。 为了使其更加用户友好(IMO),我在表单上放置了一个切换按钮,它控制表单的 .AllowEdits 属性。这样你就可以轻松地从阅读切换到写作。
然而我遇到了一个问题;一旦 .AllowEdits 切换为 false,切换按钮就不可单击 不再了!
我有什么选择?
I was using a combobox on my search form to select whether to consult or modify a record.
To make it more user friendly (IMO), I put a togglebutton on a form, which controls the .AllowEdits property of my form. This way you can easily switch from reading to writing.
However I run into a problem; once .AllowEdits is switched to false, the togglebutton is not clickable
anymore !
What are my options ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须改用命令按钮。它不会被锁定。
然而,您会在使用其他控件(例如用于快速搜索记录的组合框)时遇到类似的问题。如果您遇到此问题,请使用此处的解决方案来锁定/解锁所有绑定控件。
You must use a command button instead. It will not get locked.
You will however run into similar problems with other controls like a combo box you would use for quick searching a record. If you have that problem, use the solution here to lock/unlock all your bound controls.