Access 2007 中的选项卡外部选项卡控件
我的 Access 2007 表单在选项卡控件下方有两个按钮(每个页面上都有一个子表单)。
通过聚焦选项卡页或按钮,我可以“选项卡”进入该页面上的子表单(将焦点放在第一个控件上)。但是,一旦子窗体中的控件获得焦点,我就无法“跳出”子窗体。焦点循环访问子窗体控件(而不是整个窗体)。
有办法改变这种行为吗?当最后一个子窗体控件具有焦点并且用户按下 Tab 键时,我希望焦点位于第一个按钮上。
My Access 2007 form has a two buttons below a tab control (with a subform on each page).
With a tab-page or button focused, I can "tab" into the subform on that page (putting focus on the first control). However, once a control in the subform has focus, I cannot "tab" out of the subform. The focus iterates through the subform controls (not the entire form).
Is there a way to change this behavior? When the last subform control has focus and the user pushes the tab key, I want the focus to be on the first button.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在最后一个子窗体控件上,将
[Event procedure]
添加到该控件的 KeyDown 事件中:On the last subform control add an
[Event Procedure]
to the KeyDown event for the control: