I discovered something today that may interest you. You can write an sql statement that will retrieve all of your tables' names:
SELECT
Name
FROM MSysObjects
WHERE (Type=1) AND (Flags=0)
ORDER BY Name;
You may not be familiar with MSysObjects. Every Access database has several system tables. To view them, go to tools/options/view tab and check "system objects". MSysObjects has an entry for each object in the .mdb.
SELECT
Name
FROM MSysObjects
WHERE (Type=1) AND (Flags=0)
ORDER BY Name;
You may not be familiar with MSysObjects. Every Access database has several system tables. To view them, go to tools/options/view tab and check "system objects". MSysObjects has an entry for each object in the .mdb.