Long file paths in MS Access Linked Table Manager

  • Thread starter Thread starter Todd Huttenstine
  • Start date Start date
T

Todd Huttenstine

Hey

In Microsoft Access, I am trying to see some file paths in
Linked Table Manager, however, the file names are longer
than Linked Table Manager dialog and I cant resize this.
From reading some Google newsgroup posts, I understand it
is not possible to resize it, you have to do it
programmatically. Can anyone give me a code that will do
this or is there a regestry setting or anything I can
change?


Thanks in advance.

Todd Huttenstine
 
I found this code on Google Newsgroups thats works... See
below:



SELECT [MSysObjects].[Connect], [MSysObjects].[Database],
[MSysObjects].[ForeignName]
FROM MSysObjects
WHERE ((([MSysObjects].[Database]) Is Not Null));
 

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