I'm trying to get Access to invoke a word mail merge. Can anyone be of assistance. I coded a Word button to, on Click, execute a mail merge and email with:
Private Sub CommandButton2_Click()
With ActiveDocument.MailMerge
.Destination = wdSendToEmail
.Execute
End With
End Sub
‘*************************************
'I saved this document with a data source and linked a few fields including email address
‘*************************************
I would like now for access to invoke this code, but haven't found much on the subject. Any help would be appreciated.
Private Sub CommandButton2_Click()
With ActiveDocument.MailMerge
.Destination = wdSendToEmail
.Execute
End With
End Sub
‘*************************************
'I saved this document with a data source and linked a few fields including email address
‘*************************************
I would like now for access to invoke this code, but haven't found much on the subject. Any help would be appreciated.