Source of linked table

  • Thread starter Thread starter Mike Labosh
  • Start date Start date
M

Mike Labosh

Is there a "correct" place to find the source of where a linked table is
linked from? It's not on the table properties dialog, and it bugs me that I
have to keep looking in MSysObjects.

--
Peace & happy computing,

Mike Labosh, MCSD

Feed the children!
Save the whales!
Free the mallocs!
 
Parse it from the Connect property of the TableDef:
CurrentDb().TableDefs("MyTable").Connect
 
Have you tried using the Linked Table Manager? Tools > Database Utilities >
Linked Table Manager
 
Have you tried using the Linked Table Manager? Tools > Database Utilities
Linked Table Manager

OMG! DUH! Thanks.

--
Peace & happy computing,

Mike Labosh, MCSD

Feed the children!
Save the whales!
Free the mallocs!
 
Mike said:
Is there a "correct" place to find the source of where a linked table
is linked from? It's not on the table properties dialog, and it bugs
me that I have to keep looking in MSysObjects.

You can see it by opening the table in design view and looking at the
properties dialog - the description property.

Alternatively, hit Ctrl-G and type
?CurrentDb().TableDefs("SomeTable").Connect
 

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

Back
Top