AssistWithAlerts Property
Applies To
Assistant object.
Description
True if application alerts are delivered by the Office Assistant balloon whenever the Office Assistant is visible. Read/write Boolean.
Remarks
The AssistWithAlerts property corresponds to the Display alerts option under Assistant capabilities on the Options tab in the Office Assistant dialog box.
If this property is False, the application displays alerts in dialog boxes without the Office Assistant.
Example
This example sets the Office Assistant to be displayed whenever an application alert is generated.
With Assistant
.AssistWithHelp = True
.AssistWithAlerts = True
.Animation = msoAnimationGreeting
.Visible = True
End With