Need Immediate Help (Everyone advise is welcome)

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
 
T

Tim Ferguson

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
 
D

Dirk Goldgar

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?
 

Ask a Question

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.

Ask a Question

Top