I am using the code below to create a Document and it works fine.
I would like to be able to create a Header and a Footer using two different files that are inserted into the Header and Footer of the document that is created.
Explanation:
When the new document is created I want File “LetterHead_Top.doc” to be inserted into the Header of the new document.
When the new document is created I want File “LetterHead_Bottom.doc” to be inserted into the Footer of the new document.
Initially, I created MailMerge documents that included the Header and Footer with links to LetterHead_Top and LetterHead_Bottom. However the Links did not update appropriately and the prospect of having to manually update links for nearly 100 letters at some point in the future did not seem like a good idea.
Can anyone help me modify this code to accomplish inserting the above files into the Header and Footer of the newly created document.
Private Sub Command27_Click()
Me.txtDBLocation = DLookup("[DBLocation]", "tblDBLocation", "[DBID] = 1")
Dim objWord As Word.Document
Set objWord = GetObject([txtOpenLocation], "Word.Document")
objWord.Application.Visible = True
objWord.MailMerge.OpenDataSource _
Name:=[txtDBLocation], _
LinkToSource:=True, _
Connection:="TABLE tblForMerge", _
SQLStatement:="SELECT * FROM [tblForMerge]"
objWord.MailMerge.Execute
objWord.Save
objWord.Close SaveChanges:=-1 '-1 = wdSaveChanges
Set objWord = Nothing
End Sub
I would like to be able to create a Header and a Footer using two different files that are inserted into the Header and Footer of the document that is created.
Explanation:
When the new document is created I want File “LetterHead_Top.doc” to be inserted into the Header of the new document.
When the new document is created I want File “LetterHead_Bottom.doc” to be inserted into the Footer of the new document.
Initially, I created MailMerge documents that included the Header and Footer with links to LetterHead_Top and LetterHead_Bottom. However the Links did not update appropriately and the prospect of having to manually update links for nearly 100 letters at some point in the future did not seem like a good idea.
Can anyone help me modify this code to accomplish inserting the above files into the Header and Footer of the newly created document.
Private Sub Command27_Click()
Me.txtDBLocation = DLookup("[DBLocation]", "tblDBLocation", "[DBID] = 1")
Dim objWord As Word.Document
Set objWord = GetObject([txtOpenLocation], "Word.Document")
objWord.Application.Visible = True
objWord.MailMerge.OpenDataSource _
Name:=[txtDBLocation], _
LinkToSource:=True, _
Connection:="TABLE tblForMerge", _
SQLStatement:="SELECT * FROM [tblForMerge]"
objWord.MailMerge.Execute
objWord.Save
objWord.Close SaveChanges:=-1 '-1 = wdSaveChanges
Set objWord = Nothing
End Sub