View Single Post
 
Old 03-10-2014, 05:25 AM
macropod's Avatar
macropod macropod is offline Windows 7 32bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 21,956
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

In which case, it's probably in a LINK field, for which you could use code like:
Code:
Dim Fld As Field
For Each Fld In ActiveDocument.Fields
  If Fld.Type = wdFieldLink Then
    Fld.LinkFormat.SourcePath = X
  End If
Next
By replacing the X with the path, the path in all such fields in the body of the document will be updated.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote