G Guest Mar 28, 2007 #1 I want a list of all the queries in an Access 97 database. Is there anyway of listing the names of all the queries?
I want a list of all the queries in an Access 97 database. Is there anyway of listing the names of all the queries?
G Guest Mar 28, 2007 #2 SELECT MSysObjects.Name, MSysObjects.Type FROM MSysObjects WHERE MSysObjects.Type=5 ORDER BY MSysObjects.Name; Those starting with ~ are record sources for forms and reports.
SELECT MSysObjects.Name, MSysObjects.Type FROM MSysObjects WHERE MSysObjects.Type=5 ORDER BY MSysObjects.Name; Those starting with ~ are record sources for forms and reports.