Need Immediate Help (Everyone advise is welcome)

  • Thread starter Thread starter John kincade
  • Start date Start date
J

John kincade

Hello,

My Documenter isn't working and I need to list all of the
linked and static tables in my database. I also need to
list the data elements for each table. How can do this
through code. Please I need help. thanks
 
I need to list all of the
linked and static tables in my database. I also need to
list the data elements for each table.

for each tdf in db.tabledefs
if (tdf.attributes and acTableSystemTable) = 0 then
for each fld in tdf.field
debug.print...

next fld
endif

next tdf


Hope that helps


Tim F
 
John kincade said:
Hello,

My Documenter isn't working and I need to list all of the
linked and static tables in my database. I also need to
list the data elements for each table. How can do this
through code. Please I need help. thanks

So are you John Kincade or John Jackson? What is the purpose of posting
with two different names?
 
Back
Top