ResetTipWizard Method

Applies To

Application Object.

Description

Resets the TipWizard memory so that all tips will be shown. Normally tips that have been shown several times are disabled so that they do not become annoying.

Syntax

object.ResetTipWizard

object

Required. The Application object.

See Also

EnableTipWizard Property.

Example

This example resets the TipWizard and then enables it.


With Application
    .ResetTipWizard
    .EnableTipWizard = True
End With