There is a built-in documenter:
Tools | Analyze | Document
You could do it with a query:
SELECT MsysObjects.Type, MsysObjects.Name FROM MsysObjects
WHERE ([Name] Not Like '~*') AND ([Name] Not Like 'MSys*')
ORDER BY Type, Name;
Interpret type like this:
1 = table
5 = query
-32768 = form
-32764 = report
-32761 = module
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.