Application.MailMergeWizardSendToCustom event (Word)

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

Syntax

expression.MailMergeWizardSendToCustom (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.

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

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.