That is very odd. Could try setting links programmatically. Many examples of code. Here is one:
Code:
Sub Relinktables() Dim dbs As DAO.Database
Dim tdf As DAO.TableDef
Dim strTable As String
Dim LnkDataBase As String
LnkDataBase = "C:\Users\June\AirportsAdmin.accdb"
Set dbs = CurrentDb()
For Each tdf In dbs.TableDefs
If Len(tdf.Connect) > 1 Then 'only relink linked tables
If tdf.Connect <> ";DATABASE=" & LnkDataBase Then 'only relink tables if they are not linked right
If Left(tdf.Connect, 4) <> "ODBC" Then 'Don't want to relink any ODBC tables
strTable = tdf.Name
dbs.TableDefs(strTable).Connect = ";DATABASE=" & LnkDataBase
dbs.TableDefs(strTable).RefreshLink
End If
End If
End If
Next tdf
End Sub