I have a Word merge document that is linked to an Access table. If I open the Word document through Word (File, Open) the data source is linked. However, when I open using code in Access the data source is not linked. Should I be adding something here to make the Access table maintained in the link?
gStrDocPath = “S:New_HiresLetters”
strDoc = gStrDocPath & strLetterName
Set WordDoc = WordApp.Documents.Open(gStrDocPath & strLetterName)
Allan