Constant | Description | |
wdAlertsNone | No alerts or message boxes are displayed. If a macro encounters a message box, the default value is chosen and the macro continues. | |
wdAlertsMessageBox | Only message boxes are displayed; errors are trapped and returned to the macro. | |
wdAlertsAll | All message boxes and alerts are displayed; errors are returned to the macro. |
Application.DisplayAlerts = wdAlertsAll
This example returns the current setting of the DisplayAlerts property.
temp = Application.DisplayAlerts