Help displayed while hovering over a button

P

PhilM

Hi,

I need to have help display in my spreadsheet while the user is
hovering over a custom button. Much like a cell comment but on buttons,

any ideas?


Thanks
Phil
 
A

Ardus Petus

set cb=commandbars("My Commandbar")
set b=cb.controls(1)
b.tooltiptext="My text"


HTH
 
Top