Help Method

Applies To

Assistant object.

Description

Displays the Office Assistant and the built-in Assistant balloon.

Syntax

expression.Help

expression Required. An expression that returns an Assistant object.

See Also

HelpContextId property, HelpFile property.

Example

This example displays the built-in Assistant balloon when the user selects the "I need more information" checkbox.

Set b = Assistant.NewBalloon
With b
    .Heading = "User Information"
    .Text = "Select your skill level"
    .CheckBoxes(1).Text = "Beginner."
    .CheckBoxes(2).Text = "Advanced."
    .CheckBoxes(3).Text = "I need more information."
    .Show
End With
If b.CheckBoxes(3).Checked = True Then
    Assistant.Help
End If