Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have buttons which access macros in my spreadsheet (xl2003).
Is there a way to add a comment (like a tool tip) so that it is highlighted as the mouse passes over the button. I want to add guidance notes as to the use of the buttons. Can anyone help? Thanks, Roger |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
When designing your UserForm, click the button you want. In the Properties
Window (press F4 if not displayed), go to Control Tip Text. Type in the text you want. I just learned that a month ago, and I use it whenever I can. "Roger on Excel" wrote: I have buttons which access macros in my spreadsheet (xl2003). Is there a way to add a comment (like a tool tip) so that it is highlighted as the mouse passes over the button. I want to add guidance notes as to the use of the buttons. Can anyone help? Thanks, Roger |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What type of button is it, forms or Control toolbox?
-- __________________________________ HTH Bob "Roger on Excel" wrote in message ... I have buttons which access macros in my spreadsheet (xl2003). Is there a way to add a comment (like a tool tip) so that it is highlighted as the mouse passes over the button. I want to add guidance notes as to the use of the buttons. Can anyone help? Thanks, Roger |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I just -re-read the original post, and I didn't realize that your button was
on the spreadsheet. If it is a Control Toolbox, then what I said should work. I don't know if the same will hold true if you used the Forms button. "Bob Phillips" wrote: What type of button is it, forms or Control toolbox? -- __________________________________ HTH Bob "Roger on Excel" wrote in message ... I have buttons which access macros in my spreadsheet (xl2003). Is there a way to add a comment (like a tool tip) so that it is highlighted as the mouse passes over the button. I want to add guidance notes as to the use of the buttons. Can anyone help? Thanks, Roger |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Yes its a floating button on the spreadsheet. Can these have a tolltip added to them? Thanks for the advice regarding buttons on forms - ive added tool tips for the buttons on those forms. Thanlks, Roger "Orion Cochrane" wrote: I just -re-read the original post, and I didn't realize that your button was on the spreadsheet. If it is a Control Toolbox, then what I said should work. I don't know if the same will hold true if you used the Forms button. "Bob Phillips" wrote: What type of button is it, forms or Control toolbox? -- __________________________________ HTH Bob "Roger on Excel" wrote in message ... I have buttons which access macros in my spreadsheet (xl2003). Is there a way to add a comment (like a tool tip) so that it is highlighted as the mouse passes over the button. I want to add guidance notes as to the use of the buttons. Can anyone help? Thanks, Roger |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Floating? Do you mean a commandbar button? If so, just add to the
ToolTipText property. -- __________________________________ HTH Bob "Roger on Excel" wrote in message ... Hi, Yes its a floating button on the spreadsheet. Can these have a tolltip added to them? Thanks for the advice regarding buttons on forms - ive added tool tips for the buttons on those forms. Thanlks, Roger "Orion Cochrane" wrote: I just -re-read the original post, and I didn't realize that your button was on the spreadsheet. If it is a Control Toolbox, then what I said should work. I don't know if the same will hold true if you used the Forms button. "Bob Phillips" wrote: What type of button is it, forms or Control toolbox? -- __________________________________ HTH Bob "Roger on Excel" wrote in message ... I have buttons which access macros in my spreadsheet (xl2003). Is there a way to add a comment (like a tool tip) so that it is highlighted as the mouse passes over the button. I want to add guidance notes as to the use of the buttons. Can anyone help? Thanks, Roger |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Bob,
The button is one that sits in the spreadsheet. I placed it using the Forms Toolbar, using the "button" button. I assigned the macro to the button. I dont think the button has a properties window. What do you think? Roger "Bob Phillips" wrote: Floating? Do you mean a commandbar button? If so, just add to the ToolTipText property. |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
There are no properties for the Form buttons, but if you create a button with
the Control Toolbox and hit F4, you will get properties for it. Double-click the button, then copy and paste the macro into the CommandButton1_Click procedure (located in the Sheet object where the button resides). When copying the macro, copy the commands between the macro name and End Sub. -- Please rate posts so we know when we have answered your questions. Thanks. "Roger on Excel" wrote: Hi Bob, The button is one that sits in the spreadsheet. I placed it using the Forms Toolbar, using the "button" button. I assigned the macro to the button. I dont think the button has a properties window. What do you think? Roger "Bob Phillips" wrote: Floating? Do you mean a commandbar button? If so, just add to the ToolTipText property. |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Aug 28, 12:12*pm, Orion Cochrane
wrote: There are no properties for the Form buttons, but if you create a button with the Control Toolbox and hit F4, you will get properties for it. Double-click the button, then copy and paste the macro into the CommandButton1_Click procedure (located in the Sheet object where the button resides). When copying the macro, copy the commands between the macro name and End Sub. Does this work in xl2003? I can create tooltips on buttons in userforms no problem, but when I create embedded buttons via the control toolbox and look at properties (via right click when button is selected in design mode - F4 seems to do nothing in this context) control tooltip isn't one of the options. Are you using xl 2007 ? -scattered |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm using 2003. I just checked now, and there is no ControlTipText option. I
thought there would be just like on a UserForm. Sorry. -- Please rate posts so we know when we have answered your questions. Thanks. "scattered" wrote: On Aug 28, 12:12 pm, Orion Cochrane wrote: There are no properties for the Form buttons, but if you create a button with the Control Toolbox and hit F4, you will get properties for it. Double-click the button, then copy and paste the macro into the CommandButton1_Click procedure (located in the Sheet object where the button resides). When copying the macro, copy the commands between the macro name and End Sub. Does this work in xl2003? I can create tooltips on buttons in userforms no problem, but when I create embedded buttons via the control toolbox and look at properties (via right click when button is selected in design mode - F4 seems to do nothing in this context) control tooltip isn't one of the options. Are you using xl 2007 ? -scattered |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding data only if adjacent to cell labeled "male"/"female" | Excel Worksheet Functions | |||
Convert cell "contents" into a "comment" | Excel Discussion (Misc queries) | |||
Adding "New Comment" command to all existing and new files. | Excel Programming | |||
Adding a "CLEAR" button to the worksheet | Excel Discussion (Misc queries) | |||
Adding "New" "Insert" "Delete" into a workbook to change from data 1 to data 2 etc | Excel Programming |