I know how to iterate over CurrentDb.Containers("Tables").Documents to
get a list of all the table/query names in a database. How can I
determine which is a table and which is a query? How can I determine
the type of a table (linked or local) or the type of a query (local,
pass-through, union)?
Phil
Douglas J. Steele - 01 Jul 2005 00:07 GMT
Use CurrentDb.TableDefs and CurrentDb.QueryDefs, rather than
CurrentDb.Containers("Tables").Documents

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
>I know how to iterate over CurrentDb.Containers("Tables").Documents to
> get a list of all the table/query names in a database. How can I
[quoted text clipped - 3 lines]
>
> Phil