Application.DisplayAlerts property (PowerPoint)

Sets or returns whether Microsoft PowerPoint displays alerts while running a macro. Read/write.

Syntax

expression. DisplayAlerts

expression A variable that represents an Application object.

Return value

PpAlertLevel

Remarks

The value of the DisplayAlerts property is not reset once a macro stops running; it is maintained throughout a session. It's not stored across sessions, so when PowerPoint begins, it is reset to ppAlertsNone.

The value of the DisplayAlerts property can be one of these PpAlertLevel constants.

Constant Description
ppAlertsAll All message boxes and alerts are displayed; errors are returned to the macro.
ppAlertsNone The default. No alerts or message boxes are displayed. If a macro encounters a message box, the default value is chosen and the macro continues.

Example

The following line of code instructs PowerPoint to display all message boxes and alerts, returning errors to the macro.

Sub SetAlert

    Application.DisplayAlerts = ppAlertsAll

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.