ResetTips Method

Applies To

Assistant object.

Description

Resets the application tips that will appear in the Office Assistant balloon.

Syntax

expression.ResetTips

expression Required. An expression that returns an Assistant object.

Remarks

The ResetTips method corresponds to the Reset my tips button on the Options tab in the Office Assistant dialog box.

See Also

Reset method.

Example

This example resets the application tips before making the Office Assistant visible. A confirmation balloon will appear, telling the user that his or her application tips have been reset.

With Application.Assistant
    .Visible = True
    .Animation = msoAnimationGreeting
    .ResetTips
End With