Hi All,
I am using the code below to change the name of the linked tables. It is giving me an error "User Defined type not defined"
Dim Jads As DAO.TableDef
For Each Jads In CurrentDb.TableDefs
If Left(Jads.Name, 4) = "dbo_" Then Jads.Name = Mid(Jads.Name, 5)
Next Jads
Please help.