Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you refresh table links without re-linking the table?

Status
Not open for further replies.

eyhandle

Programmer
Feb 24, 2003
17
US
How do you refresh table links without re-linking the table?
 
try this code in the start up form or called from an autoexec macro

Set db = CurrentDb()
For Each tdf In db.TableDefs
tdf.RefreshLink
Next
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top