Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个查询,用于检查任何符合一组特定条件的记录。我想要一些在数据库启动时运行查询的 VBA 或宏,然后在查询返回任何结果时显示一个表单。如果不是什么都不应该发生。
在 HansUp(上图)的帮助下回答,在 Autoexec 中输入以下内容:
If DCount("*", "Query_name") > 0 Then DoCmd.OpenForm "Form_name", , , , , acDialog End If