在 ACCESS 2007 中链接未绑定列表框中的各个查询
我创建了一个未绑定的列表框。我有一个显示查询列表的框,我希望用户能够选择。我的问题是我不明白如何让提交按钮选择当前选定的查询并运行它。
那么如何将提交按钮链接到列表框并让框中的每个项目提交自己的查询。
I have created a unbound listbox. I have the box showing a list of queries I want the use to be able to select. My problem is I don't understand how to get the submit button to select the currently selected query and run it.
So how do I link the submit button to the listbox and have each item in the box submit its own query.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
列表框包含查询名称还是实际的 SQL?无论哪种方式,类似
提交按钮事件处理程序中的内容都应该让您朝着正确的方向前进。
Does the listbox contain a query name or the actual SQL? Either way, something like
in the submit button event handler should get you going in the right direction.