TipOfDay Property

Applies To

Assistant object.

Description

True if the Office Assistant displays a special tip each time the Office application is opened. Read/write Boolean.

Remarks

The TipOfDay property corresponds to the Show the Tip of the Day at startup option under Other tip options on the Options tab in the Office Assistant dialog box.

Example

This example displays the Office Assistant in a specific location, and it sets several options before making the Assistant visible.

With Assistant
    .Reduced = True
    .Left = 400
    .MoveWhenInTheWay = True
    .TipOfDay = True
    .Visible = True
    .Animation = msoAnimGreeting
End With