Application.MailMergeWizardStateChange Event (Publisher)
Occurs when a user changes from a specified step to a specified step in the Mail Merge Wizard.
Syntax
expression .MailMergeWizardStateChange(Doc, FromState)
expression A variable that represents an Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Doc |
Required |
Document |
The mail merge main document. |
FromState |
Required |
Integer |
The Mail Merge Wizard step from which a user is moving. |
Remarks
To access the Application object events, declare an Application object variable in the General Declarations section of a code module. Then set the variable equal to the Application object for which you want to access events.
Example
This example displays a message when a users moves from step three of the Mail Merge Wizard to step four. Based on the user's answer to the message, the user will either continue on to step four or return to step three.
Private Sub MailMergeApp_MailMergeWizardStateChange(ByVal Doc As Document, _
ByVal FromState As Long)
Select Case FromState
Case 1
MsgBox "Now you will build your publication merge " & _
"by adding fields to your publication."
Case 2
MsgBox "Now you will see your publication " & _
"merged with the records in the data source."
Case 3
MsgBox "Now you will complete the mail merge process."
End Select
End Sub