Displays the Office Assistant and the built-in "What would you like to do?" Assistant balloon for standard Office online Help.

Note
The Microsoft Office Assistant and AnswerWizard have been depreciated in the release of the Microsoft Office system.

Syntax

expression.Help

expression A variable that represents an Assistant object.

Example
This example displays the built-in "What would you like to do?" Assistant balloon when the user checks the "I need more information" check box.

Visual Basic for Applications
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
display the office assistant with online help get online help and office assistant together help help method ofv view office online assistance when selected by user

See also: