screen tips on toolbars

F

fred kruger

doug

I have tried this and it doesnt work maybe i wasnt clear.
i have a floting toolbar with some buttons on which are
named for example sake macro1 macro2. I want to be able
if possible not to alter the name but as the mouse moves
over the button to show a screen tip as it does on other
word buttons.

But evan if I alter the button to a image and change the
field as you suggested the only thing shown on the screen
tip is the procedure name the buton is created from.

Paul
 
W

Word Heretic

G'day "fred kruger" <[email protected]>,

you have to use VBA at the moment. I have a tool in dev that I use for
myself because I got totally sick of all the VBA involved.

You need to know the name of the toolbar the control sits on, not easy
if its on a popup defined through the GUI. Then you need the control
number. This gives you the control, so something like

CommandBars(1).Controls(1).TooltipText="a string"

can then set the text for you.


fred kruger said:
doug

I have tried this and it doesnt work maybe i wasnt clear.
i have a floting toolbar with some buttons on which are
named for example sake macro1 macro2. I want to be able
if possible not to alter the name but as the mouse moves
over the button to show a screen tip as it does on other
word buttons.

But evan if I alter the button to a image and change the
field as you suggested the only thing shown on the screen
tip is the procedure name the buton is created from.

Paul

Steve Hudson

Word Heretic, Sydney, Australia
Tricky stuff with Word or words for you.
Email: (e-mail address removed)
Products: http://www.geocities.com/word_heretic/products.html
Spellbooks: 728 pages of dump left and dropping...

The VBA Beginner's Spellbook: For all VBA users.
 

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