Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
How can i make a comment appear by just placing the mouse cursor over a button but without pressing it? Thanx |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tools Options, View tab, there's a "Comments" section. Check "comment
indicator only". HTH. Best wishes Harald "Hatzipavlis Stratos" skrev i melding ... Hi all, How can i make a comment appear by just placing the mouse cursor over a button but without pressing it? Thanx |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"Harald Staff" skrev i melding
... Tools Options, View tab, there's a "Comments" section. Check "comment indicator only". Oops. You said Button, I read Cell. Sorry. What you want is the ToolTipText property used in Visual Basic and other programming languages. The controls in Office VBA does unfortunately not support that. Best wishes Harald |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you have an ActiveX button (from the control toolbox), you can display
something with the mouseMove event: Private Sub CommandButton1_MouseMove(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single) 'code here, like an existing textbox which has been made invisible (via initialization code (like workbook_open or SheetActivate) of some sort) is made visible End Sub but the real problem is that there's no way to make it go away since there's no MouseNotOver event. You can do this when in a userform, since there, you have the mousemove event of the form itself to make the comment disappear. "Hatzipavlis Stratos" wrote in message ... Hi all, How can i make a comment appear by just placing the mouse cursor over a button but without pressing it? Thanx |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you guys
"Hatzipavlis Stratos" wrote in message ... Hi all, How can i make a comment appear by just placing the mouse cursor over a button but without pressing it? Thanx |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am not so sure what kind of "comment " that u want , tooltip near the
button or description at the left-hand bottom ? I thought the tooltip near the button is always there already. "Hatzipavlis Stratos" wrote: Thank you guys "Hatzipavlis Stratos" wrote in message ... Hi all, How can i make a comment appear by just placing the mouse cursor over a button but without pressing it? Thanx |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
excel 2000 how to format the comments font all comments | Excel Discussion (Misc queries) | |||
pop up comments | Excel Discussion (Misc queries) | |||
in excel useing comments how do you add clip art to comments? | New Users to Excel | |||
Comments | Excel Discussion (Misc queries) | |||
Comments Help | Excel Worksheet Functions |