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.
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