访问问题:如何显示两个日期之间的记录
我的 Access 表单中有两个名为 CombDate 和 CombDat1 的组合框。现在我想显示两个日期之间的记录。我该怎么做?
I have two combobox in my Access form named CombDate and CombDat1. Now I want to show records between two dates. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 VBA,您可以从两个日期组合框中检索值并将它们存储在 date1 和 date2 中,然后您可以使用 VBA 和 DAO 打开记录集,使用以下 SQL:
更多详细信息将有助于阐明解决方案,但这是基本的过程。
Using VBA, you can retrieve the values from the two date combo boxes and store them in date1 and date2, then you can open a recordset using VBA and DAO, with the following SQL:
More details would help clarify the solution, but that's the basic process.