MailMergeWizardSendToCustom Event

Microsoft Word Visual Basic

Private Sub object_MailMergeWizardSendToCustom(ByVal Doc As Document)

object    An object of type Application declared with events in a class module. For information about using events with the Application object, see Using Events with the Application Object.

Doc The mail merge main document.

Remarks

Use the ShowSendToCustom property to create a custom button on the sixth step of the Mail Merge Wizard.

Example

This example executes a merge to a fax machine when a user clicks the custom destination button. This example assumes that the user has access to a custom destination button, fax numbers are included for each record in the data source, and an application variable called MailMergeApp has been declared and set equal to the Word Application object.

Private Sub MailMergeApp_MailMergeWizardSendToCustom(ByVal Doc As Document)
    With Doc.MailMerge
        .Destination = wdSendToFax
        .Execute
    End With
End Sub