如何使 Access 组合框在向下箭头键上展开?

发布于 2024-08-24 23:14:21 字数 179 浏览 5 评论 0原文

对于组合框控件,我习惯于通过 Tab 键切换到它们,单击向下箭头键打开选项,然后使用向上和向下箭头键导航这些选项。在我设计的 Access 表单中,在组合框处于活动状态时按下可移动到下一个控件。我已经有这个选项卡了,那么如何才能让向下箭头按我的预期运行呢?

这些组合框是我和无鼠标表单之间的唯一东西,我认为这对于数据输入至关重要。

With combo box controls, I'm used to being able tab to them, click the down arrow key to open up the options, and then use the up and down arrow keys to navigate those options. In an Access form I've designed, pressing down while a combo box is active moves to the next control. I already have tab for that, so how can I get the down arrow to behave as I expect?

These combo boxes are the only thing between me and a mouse-free form, which I consider essential for data entry.

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

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

发布评论

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

评论(3

浅唱ヾ落雨殇 2024-08-31 23:14:21

Alt + (向下箭头)不起作用?

Alt + (Down Arrow) does not work?

与酒说心事 2024-08-31 23:14:21

在KeyDown事件中,可以检查向下箭头是否被按下,如果是,则可以执行以下

ComboBox1.Dropdown

In the event for KeyDown, you can check if the down arrow was pressed, and if it was, you can execute the following

ComboBox1.Dropdown

蘸点软妹酱 2024-08-31 23:14:21

或者,在 OnEnter 事件中下拉组合框,然后使用箭头键在列表中上下导航。无论如何,我经常这样做,因为如果用户可以看到列表并且不必单击下拉箭头即可访问它,那么他们似乎会更好地工作。

Alternatively, dropdown the combo box in the OnEnter event, then the arrow keys work for navigation up and down the list. I very often do this, anyway, since users seem to function better if they can see the list and don't have to click the dropdown arrow to get to it.

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