ResetTips Method

Microsoft Office Visual Basic

Some of the content in this topic may not be applicable to some languages.

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

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.

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
    .On = True
    .Visible = True
    .Animation = msoAnimationGreeting
    .ResetTips
End With