Hello all,
I'm trying to redirect the tables in my backend file to another path by using the .connect property and .RefreshLink method.
When executing .RefreshLink , error #3031 (no valid argument) occures, but I don't find any wrong expression in my code.
This is my code:
Dim objTb As DAO.TableDef
Dim objDb As DAO.Database
Set objDb = CurrentDb
For Each objTb In objDb.TableDefs
sConnect = ";DATABASE=D:\Mydata.accdb"
objTb.Connect = sConnect
objTb.RefreshLink
Next
.
.
Any idea what my be wrong with the expression for sConnect?
Thank you for any help!
I'm trying to redirect the tables in my backend file to another path by using the .connect property and .RefreshLink method.
When executing .RefreshLink , error #3031 (no valid argument) occures, but I don't find any wrong expression in my code.
This is my code:
Dim objTb As DAO.TableDef
Dim objDb As DAO.Database
Set objDb = CurrentDb
For Each objTb In objDb.TableDefs
sConnect = ";DATABASE=D:\Mydata.accdb"
objTb.Connect = sConnect
objTb.RefreshLink
Next
.
.
Any idea what my be wrong with the expression for sConnect?

Thank you for any help!