C
chrisderoover
Hello,
I have an Access application that opens a Word file which is a main
merge document. After upgrading to Word 2003, I notice that the Word
document loses the reference to the data file (an Access 2003 db) when
it is opened from within the db. How do I avoid to have to browse each
time to the db when opening the merge file?
BTW there is no problem if I open the merge file directly in Word.
This is the code snippet I use to open the Word file in Access:
Dim oApp As Object
Set oApp = CreateObject("Word.Application")
oApp.Visible = True
oApp.Documents.Open strFactuur 'this variable contains path to the
word file
tia,
Chris
I have an Access application that opens a Word file which is a main
merge document. After upgrading to Word 2003, I notice that the Word
document loses the reference to the data file (an Access 2003 db) when
it is opened from within the db. How do I avoid to have to browse each
time to the db when opening the merge file?
BTW there is no problem if I open the merge file directly in Word.
This is the code snippet I use to open the Word file in Access:
Dim oApp As Object
Set oApp = CreateObject("Word.Application")
oApp.Visible = True
oApp.Documents.Open strFactuur 'this variable contains path to the
word file
tia,
Chris