AssistWithHelp Property
Applies To
Assistant object.
Description
True if the Office Assistant appears whenever the user presses the F1 key to display Help. Read/write Boolean.
Remarks
The AssistWithHelp property corresponds to the Respond to F1 key option under Assistant capabilities on the Options tab in the Office Assistant dialog box.
If this property is set to False, the Help Topics dialog box appears instead of the Office Assistant.
Example
This example displays the Office Assistant whenever the user presses the F1 key to display Help.
With Assistant
.AssistWithHelp = True
.AssistWithAlerts = True
.Animation = msoAnimationGreeting
.Visible = True
End With