Application.MailMergeRecipientListClose Event (Publisher)
Fires when the user closes the Mail Merge Recipients dialog box. (From the Mail Merge or E-mail Merge task pane, click Edit Recipient List). Also fires when the user closes the Catalog Merge Product List dialog box, which opens when the user clicks Edit Product List in the Catalog Merge task pane.
Version Information
Version Added: Publisher 2007
Syntax
expression .MailMergeRecipientListClose(Doc)
expression A variable that represents an Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Doc |
Required |
Document |
The current publication. |
Remarks
For more information about using events with the Application object, see Using Events with the Application Object.
Example
The following Microsoft Visual Basic for Applications (VBA) macro shows how to handle the MailMergeRecipientListClose event. It displays a message notifying the user that the string described above was displayed.
Private Sub pubApplication_MailMergeRecipientListClose(ByVal Doc As Document)
MsgBox "The Mail Merge Recipients dialog box has closed."
End Sub
For this event to occur, you must place the following line of code in the General Declarations section of your module.
Private WithEvents pubApplication As Application
Then run the following initialization procedure.
Public Sub Initialize_pubApplication()
Set pubApplication = Publisher.Application
End Sub