I am trying to relink to a dabase file on another drive using the following code an get an error stating that the file does not exist, which it does. I know I am overlooking something obvious. Help would be appreciated very much.
Thanks
Dim db As DAO.Database
Dim rs As DAO.Recordset
Dim tbl As TableDef
Set db = CurrentDb()
Set tbl = db.TableDefs("CELabels")
tbl.Connect = "Dbase IV;DATABASE=V:\FMS\CELabels.dbf"
tbl.RefreshLink
Thanks
Dim db As DAO.Database
Dim rs As DAO.Recordset
Dim tbl As TableDef
Set db = CurrentDb()
Set tbl = db.TableDefs("CELabels")
tbl.Connect = "Dbase IV;DATABASE=V:\FMS\CELabels.dbf"
tbl.RefreshLink