Macro button

  • Thread starter Thread starter DebbieG
  • Start date Start date
D

DebbieG

I have placed a button on a worksheet with a macro assigned to it. Is it
possible to have a "tool " appear when I hover the mouse over it?

Thanks in advance for any help.
Debbie
 
Correction to my post:

I said that the statement "CommandButton1.Visible = True"
will be requied to make the tool visible. This
incorrectly identified the command button instead of
the "tool" as you refer to it. The code should identify
the tool you want to make visible. If it was the first
shape object added to the worksheet then I would suggest:
"ActiveSheet.Shapes(1).Visible = True" or something
similar.

Regards,
Greg
 
Back
Top