Home > control > Show and hide assistant

Show and hide assistant

Private Sub CommandButton1_Click()
With Assistant
    .Visible = True
    .Animation = msoAnimationGreeting
End With
End Sub

Private Sub CommandButton2_Click()
With Assistant
    .Visible = False
    .Animation = msoAnimationGreeting
End With

End Sub

Private Sub CommandButton3_Click()
With Assistant.NewBalloon
    .BalloonType = msoBalloonTypeBullets
    .Icon = msoIconTip
    .Button = msoButtonSetOK
    .Heading = “Tips for Saving Information.”
    .Labels(1).Text = “Save your work often.”
    .Labels(2).Text = “Install a surge protector.”
    .Labels(3).Text = “Exit your application properly.”
    .Show
End With

End Sub


Categories: control
  1. No comments yet.
  1. No trackbacks yet.