Print Option in Office Assistant New Balloon

L

Luke

I have created custom Help files that allow users to get
the instructions in individual forms. I use the
following code to show the custom Help file.

Private Sub cmdHelp_Click()
'Show help
With Assistant.NewBalloon
.BalloonType = msoBalloonTypeNumbers
.Icon = msoIconTip
.Button = msoButtonSetOK
.Heading = "<Title>"
.Text = "<What to do description>"
.Show
End With
End Sub

I would like to allow the user to Print the topic.
However, the default Button command does not have the
option to do so (something like
msoButtonSetOkPrintCancel).

Does anybody know how to create a custom button that can
be used with Office Assistant or if it's even possible?
I do not want to use one of the default set ups like
msoButtonSetOkCancel as I would need to explain this
(more explaining) plus it might also confuse the users.

I greatly appreciate any help or suggestions. Thank you.

Luke
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top