SELECT MsysObjects.Name FROM MsysObjects
WHERE (([Type] = 1) AND ([Name] Not Like "~*") AND ([Name] Not Like
"MSys*"))
ORDER BY MsysObjects.Name;
Include type 6 if you want linked tables as well, and type 4 for ODBC
linked table
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
Jim Pockmire said:
What is the easiest way to do this? Can I use MSysObjects or do I need
VBA code on TableDefs or something else?