Thanks for your reply!
All tables were originally upsized to Sserver using DSN file, later we added a procedure that refreshes table connections on application start (so DSN is not used any longer). Here is the code that takes care of refreshing connections:
Code:
...
Set dbPUBS = CurrentDb
For Each tdfPUBS In dbPUBS.TableDefs
' Only attempt to refresh link on tables that already
' have a connect string (linked tables only)
If Len(tdfPUBS.Connect) > 0 Then
strTable = tdfPUBS.Name
' Set the tables connection string
tdfPUBS.Connect = strConnect 'strConnect is built using data from INI file
Me.Repaint
tdfPUBS.RefreshLink
End If
Next
Thanks!