I want to interact with the linked table manager programatically. I have a reference to DAO set. I know that the property used for linked table connections is~
CurrentDb().TableDefs([table name]).Connect
When I output that as a string, I get values like~
";DATABASE=C:\acme\sales.mdb"
I tried to set the property using this command~
CurrentDb().TableDefs("itemDetails").Connect= ";DATABASE=C:\acme\marketing.mdb"
That executes without an error, but it does NOT really change the source of the linked table. Please advise.
CurrentDb().TableDefs([table name]).Connect
When I output that as a string, I get values like~
";DATABASE=C:\acme\sales.mdb"
I tried to set the property using this command~
CurrentDb().TableDefs("itemDetails").Connect= ";DATABASE=C:\acme\marketing.mdb"
That executes without an error, but it does NOT really change the source of the linked table. Please advise.