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.
在访问列表框中的行源中,什么 SQL 可以获取数据库中的表单列表?
Access 中的所有对象都存储在一个名为 MsysObjects 的隐藏系统表中。表单的对象类型是 -32768。所以你的查询是:
SELECT MSysObjects.Name FROM MSysObjects WHERE (((MSysObjects.Type)=-32768));