MailMergeWizardStateChange Event

Microsoft Publisher Visual Basic

Private Sub object_MailMergeWizardStateChange(ByVal Doc As Document, FromState As Long)

object    A variable which references an object of type Application declared with events in a class module.

Doc Required. The mail merge main document.

FromState     Optional. 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. For information about using events with the Publisher Application object, see Using Events with the Application Object.

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