Linked Table manager window

D

Daniel

Good morning,

Just a simple little question (I hope!). When I use the Linked Table
Manager to view where my tables are pointed, I cannot see the entire path
because the listbox is restricted in size and there is nohorizontal scroll
bar?!

Is ther a way for me to see the entire path?

Thank you for the help,

Daniel P.
 
B

Brendan Reynolds

In Access 2003, Microsoft finally saw the light and added a horizontal
scrollbar. In earlier versions, you can ...

a) Open the linked table in design view, choose Properties from the View
menu and look at the 'Description' property.

b) In the Immediate window, type ...

? currentdb.TableDefs("tblTest").Connect

.... substituting the name of one of your linked tables for "tblTest".
 
Top