Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,420
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,420
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default Adding a "tool tip" comment to a button

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 119
Default Adding a "tool tip" comment to a button

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Adding data only if adjacent to cell labeled "male"/"female" lovesrubbaducky Excel Worksheet Functions 1 November 23rd 09 05:49 PM
Convert cell "contents" into a "comment" Ryan Excel Discussion (Misc queries) 4 October 3rd 08 11:34 PM
Adding "New Comment" command to all existing and new files. Chris Berry[_2_] Excel Programming 2 August 3rd 06 04:22 PM
Adding a "CLEAR" button to the worksheet Billy Excel Discussion (Misc queries) 1 January 8th 06 06:09 PM
Adding "New" "Insert" "Delete" into a workbook to change from data 1 to data 2 etc Bob Reynolds[_2_] Excel Programming 0 March 4th 04 08:52 PM


All times are GMT +1. The time now is 01:12 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"