Need Help With Connect String

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

Guest

In VB, I want to retrieve the connect string that is in the Description
Property for a linked Access table. I don't seem to see any method for doing
it. Can someone provide a code scrap if a method exists? Thanks.
 
While it's displayed as the description through the GUI, it's actually the
Connect property of the TableDef object:

CurrentDb().TableDefs("MyTableName").Connect
 
Thanks!

Douglas J. Steele said:
While it's displayed as the description through the GUI, it's actually the
Connect property of the TableDef object:

CurrentDb().TableDefs("MyTableName").Connect
 
Back
Top