Help with printing link table manager

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a table which includs a list of linked table names in the front end
and I would like to add next to each table name , the link path where this
table is linked can some one help?
thanks
Al
 
Try this SQL using the MSysObjects table

SELECT MSysObjects.Connect, MSysObjects.Database, MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=6 Or (MSysObjects.Type)=1))
 
Thank you it works
Al

Ofer Cohen said:
Try this SQL using the MSysObjects table

SELECT MSysObjects.Connect, MSysObjects.Database, MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=6 Or (MSysObjects.Type)=1))
 

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

Similar Threads


Back
Top