Application.MailMergeWizardSendToCustom Event

Word Developer Reference

Occurs when the custom button is clicked during step six of the Mail Merge Wizard.

Syntax

Private Subexpression_MailMergeWizardSendToCustom(ByVal Doc As Document)

expression   A variable that represents an Application object that has been declared with events in a class module.

Parameters

Name Required/Optional Data Type Description
Doc Required Document The mail merge main document.

Remarks

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

For information about using events with the Application object, see Using Events with the Application Object.

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.

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

See Also