I don't like messing about with undocumented System tables <g> -- the
recommended method to use the catalog is using DAO:
dim rowSource as string
dim tdf as TableDef
for each tdf in TableDefs
' check Help for the relevant flags
If tdf.attibutes AND c_IsAUserTableAttribute >0 Then
if len(rowSource)>0 Then rowSource = rowSource & ";"
rowSource = rowSource & tdf.Name
End If
Thanks for this link, Douglas; I remember reading (something very like)
this in the past but didn't keep the reference. Hence the <g> because I
knew there are valid reasons why reading the systems table is "probably"
okay.
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.