New Balloon - VBA

J

JohnM

New to this

I have followed the instruction to set up an help balloon, copied and pasted
the example into my module box but it does not work.
I do not really know where to start. I go into VBA and then Help am I
supposed to do something else

Thanks

john
 
J

JohnM

I just copy paste this from the help box

With Assistant.NewBalloon
.Heading = "Regional Sales Data"
.Text = "Select one or more regions"
For i = 1 To 3
.CheckBoxes(i).Text = "Region " & i
Next
.Show
End With
 
B

bigwheel

Do you have the Office Assistant visible?

JohnM said:
I just copy paste this from the help box

With Assistant.NewBalloon
.Heading = "Regional Sales Data"
.Text = "Select one or more regions"
For i = 1 To 3
.CheckBoxes(i).Text = "Region " & i
Next
.Show
End With
 

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