Linked table manager interface

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

Guest

I have a number of tables that are linked to tables in other databases.
However, they are linked to databases with such a long path of drives/folders
that I cannot see in the linked table manager exactly what they are linked
to.

The linked table manager is not sizable. Is there any way of seeing, in
code or otherwise, the specific path to where a specific table is linked?

Thanks.
 
currentdb.TableDefs("MyLinkedTableName").Connect

If the table is not a linked table, a zero length string will be returned
 
Back
Top