View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
SS[_3_] SS[_3_] is offline
external usenet poster
 
Posts: 14
Default Adding ToolTip to a button

I am trying to add a tool tip to a command button.

Set SandP = ActiveSheet.Buttons.Add(400, 15, 107.75, 47.25)
SandP.OnAction = "SandP_Click"
SandP.Caption = "Sort and Print"
SandP.ControlTipText = "Blah Blah Blah"

This does not seem to work. Any thoughts?

Thank you

SS