Balloon Object
Represents the balloon where the Office Assistant displays information. A balloon can contain controls such as check boxes and labels.
Note
|
|---|
| The Microsoft Office Assistant and AnswerWizard have been depreciated in the release of the Microsoft Office system. |
Remarks
Use the NewBalloon property to return a Balloon object. There isn't a collection for the Balloon object; only one balloon can be visible at a time. However, it's possible to define several balloons and display any one of them when needed. For more information, see "Defining and Reusing Balloons" later in this topic. Use the Show method to make the specified balloon visible. Use the Callback property to run procedures based on selections from modeless balloons (balloons that remain visible while a user works in the application). Use the Close method to close modeless balloons.
Example
The following example creates a balloon that contains tips for saving entered data.
| Visual Basic for Applications |
|---|
|
| Visual Basic for Applications |
|---|
|
Note
|
|---|
| Alternatively, instead of using separate variables, you can place the Balloon object into an array. |
Note