ACCESS/VBA:如何创建 ON/OFF 类型开关以允许修改表单上的记录?

发布于 2024-10-10 13:44:08 字数 179 浏览 4 评论 0原文

我在搜索表单上使用组合框来选择是否查阅或修改记录。 为了使其更加用户友好(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 技术交流群。

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

发布评论

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

评论(1

枫以 2024-10-17 13:44:08

您必须改用命令按钮。它不会被锁定。
然而,您会在使用其他控件(例如用于快速搜索记录的组合框)时遇到类似的问题。如果您遇到此问题,请使用此处的解决方案来锁定/解锁所有绑定控件。

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.

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