Linked Table Manager or Table Properties

C

Cheow Wang

Hi,

In my VBA, I would like to retreive the info for the
Table Properties's Description. This table is actually
a linked table. How should I retrieve the following
info in my program?

Table Properties' Description :

Text;DSN=VATImport Unicode Specification;
FMT=Delimited;HDR=NO;IMEX=2;CharacterSet=1200;
DATABASE=D:\SAP Support\Shanghai VAT Project;
TABLE=VATImport - Unicode#txt

Thanks for any help!

Rgds,
Cheow Wang.
 
D

Douglas J. Steele

Make sure you have a reference set to DAO, and you'll be able to access that
using:

CurrentDb().TableDefs("MyTable").Connect

(replace "MyTable" with the actual name of the table)
 

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

Top