G Guest Aug 24, 2005 #1 Is there a hidden table that stores the file path of linked files? Thanks, Gene
G Guest Aug 24, 2005 #2 No, it is in the Connect property of the TableDefs Method of the CurrentbDB object for each table: CurrentDB.TableDefs("MyTableName").Connect will return the path. For example: ?currentdb.TableDefs("cisattributetable").Connect ;DATABASE=\\rsltx1-bm01\busmgmt\dev ciscms\ciscmsdata.mdb
No, it is in the Connect property of the TableDefs Method of the CurrentbDB object for each table: CurrentDB.TableDefs("MyTableName").Connect will return the path. For example: ?currentdb.TableDefs("cisattributetable").Connect ;DATABASE=\\rsltx1-bm01\busmgmt\dev ciscms\ciscmsdata.mdb
J John Nurick Aug 24, 2005 #4 It's in the Database field of MSysObjects - but the information is also in the Connect property of the TableDef.
It's in the Database field of MSysObjects - but the information is also in the Connect property of the TableDef.
L lucainbici Nov 11, 2009 #5 Thankyou Klatuu, it was a useful suggestion for me (some years later ...) Bye