Evaluated dbAttachedTable and dbAttachedODBC attributes 'cause I wasn't sure what you're linked to.
A TableDef is flagged with the dbAttachedTable attribute if you're linked to a .mdb. Connect property looks like:
Code:
;DATABASE=C:\YourDatabase.mdb
A TableDef is flagged with the dbAttachedODBC attribute if you're linked to an ODBC data source via a DSN. Connect property looks like:
Code:
ODBC;DRIVER=SQL Server;SERVER=(local);APP=Microsoft Data Access Components;WSID=YourServer;DATABASE=YourDatabase
Bob