473,770 Members | 2,147 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Why is the Tooltip Bug Still not Fixed in VS2008?

I have to take this personally now. Tooltips have been flakey since the dawn
of .NET, but to still have to put up with a disappearing tooltip in VS 2008
is getting beyond a joke. Tooltips have always done this, so isn't it about
time they were fixed?

I have a tooltip that I assign to a button control on my form. I hover over
the button and up pops the tooltip. I move away and the tooltp fades. I
hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip. Never to
be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet again?

Thanks for any help.

Charles
Sep 2 '08 #1
16 2777
The steps you outlined work fine for me. The tool tip shows up fine after
the process that the button executes is finished. I'm using VS 2008, C#, on
Vista, hold the mayo...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******** ******@TK2MSFTN GP04.phx.gbl...
>I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip in VS
2008 is getting beyond a joke. Tooltips have always done this, so isn't it
about time they were fixed?

I have a tooltip that I assign to a button control on my form. I hover
over the button and up pops the tooltip. I move away and the tooltp fades.
I hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip. Never to
be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet again?

Thanks for any help.

Charles

Sep 2 '08 #2
Hi Mike

Thanks for the quick reply. I'm using VB in VS2008. I have a module level
variable

Private m_Tooltip As New Tooltip

and then in the Form_Load event:

With m_Tooltip
.SetToolTip(MyB utton, "My text.")
.ToolTipTitle = "My Title"
.ToolTipIcon = ToolTipIcon.Inf o
End With

I wave the mouse over the button and the tooltip appears. When I click the
button I can't get the tooltip again. Even if I click the button and slide
the mouse off, so the click event doesn't fire, I still lose the tooltip.

Charles
"Family Tree Mike" <Fa************ @ThisOldHouse.c omwrote in message
news:Ok******** ******@TK2MSFTN GP05.phx.gbl...
The steps you outlined work fine for me. The tool tip shows up fine after
the process that the button executes is finished. I'm using VS 2008, C#,
on Vista, hold the mayo...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******** ******@TK2MSFTN GP04.phx.gbl...
>>I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip in
VS 2008 is getting beyond a joke. Tooltips have always done this, so isn't
it about time they were fixed?

I have a tooltip that I assign to a button control on my form. I hover
over the button and up pops the tooltip. I move away and the tooltp
fades. I hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip. Never
to be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet again?

Thanks for any help.

Charles


Sep 3 '08 #3
GS
I suspect most of us use a simpler tooltip
just set the mybutton.tootip property to whatever.. no tootiptitle used
I do have another tooptip for detailed info for the purpose of additonal
help at times. nonetheless never seem to have problem your described.
Window Xp, express vs 2005, 2008

"Charles Law" <bl***@nowhere. comwrote in message
news:Ox******** ******@TK2MSFTN GP02.phx.gbl...
Hi Mike

Thanks for the quick reply. I'm using VB in VS2008. I have a module level
variable

Private m_Tooltip As New Tooltip

and then in the Form_Load event:

With m_Tooltip
.SetToolTip(MyB utton, "My text.")
.ToolTipTitle = "My Title"
.ToolTipIcon = ToolTipIcon.Inf o
End With

I wave the mouse over the button and the tooltip appears. When I click the
button I can't get the tooltip again. Even if I click the button and slide
the mouse off, so the click event doesn't fire, I still lose the tooltip.

Charles
"Family Tree Mike" <Fa************ @ThisOldHouse.c omwrote in message
news:Ok******** ******@TK2MSFTN GP05.phx.gbl...
The steps you outlined work fine for me. The tool tip shows up fine
after
the process that the button executes is finished. I'm using VS 2008,
C#,
on Vista, hold the mayo...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******** ******@TK2MSFTN GP04.phx.gbl...
>I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip in
VS 2008 is getting beyond a joke. Tooltips have always done this, so
isn't
>it about time they were fixed?

I have a tooltip that I assign to a button control on my form. I hover
over the button and up pops the tooltip. I move away and the tooltp
fades. I hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip. Never
to be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet again?

Thanks for any help.

Charles



Sep 3 '08 #4
Your code works fine for me. The button click event shows a message box.
While the message box is visible, there are no tooltips on my form, which
makes sense, as the message box is modal. When I dismiss the message box,
the tool tip shows up upon hovering over the button.

Sorry, I don't know what to tell ya!

"Charles Law" <bl***@nowhere. comwrote in message
news:Ox******** ******@TK2MSFTN GP02.phx.gbl...
Hi Mike

Thanks for the quick reply. I'm using VB in VS2008. I have a module level
variable

Private m_Tooltip As New Tooltip

and then in the Form_Load event:

With m_Tooltip
.SetToolTip(MyB utton, "My text.")
.ToolTipTitle = "My Title"
.ToolTipIcon = ToolTipIcon.Inf o
End With

I wave the mouse over the button and the tooltip appears. When I click the
button I can't get the tooltip again. Even if I click the button and slide
the mouse off, so the click event doesn't fire, I still lose the tooltip.

Charles
"Family Tree Mike" <Fa************ @ThisOldHouse.c omwrote in message
news:Ok******** ******@TK2MSFTN GP05.phx.gbl...
>The steps you outlined work fine for me. The tool tip shows up fine
after the process that the button executes is finished. I'm using VS
2008, C#, on Vista, hold the mayo...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******* *******@TK2MSFT NGP04.phx.gbl.. .
>>>I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip in
VS 2008 is getting beyond a joke. Tooltips have always done this, so
isn't it about time they were fixed?

I have a tooltip that I assign to a button control on my form. I hover
over the button and up pops the tooltip. I move away and the tooltp
fades. I hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip. Never
to be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet again?

Thanks for any help.

Charles


Sep 3 '08 #5
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******** ******@TK2MSFTN GP04.phx.gbl...
>I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip in VS
2008 is getting beyond a joke. Tooltips have always done this, so isn't it
about time they were fixed?
I would suggest you to report it as a bug to VS Connect. For one thing,
you'll find out whether other people can validate it or not. And if they
can, and it annoys a sufficiently large number of people, they'll vote for
its importance, which is more likely to draw Microsoft's attention in the
end.
Sep 3 '08 #6
Hi Pavel

Thanks, I might do that then.

Cheers

Charles
"Pavel Minaev" <in****@gmail.c omwrote in message
news:Oy******** ******@TK2MSFTN GP03.phx.gbl...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******** ******@TK2MSFTN GP04.phx.gbl...
>>I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip in
VS 2008 is getting beyond a joke. Tooltips have always done this, so isn't
it about time they were fixed?

I would suggest you to report it as a bug to VS Connect. For one thing,
you'll find out whether other people can validate it or not. And if they
can, and it annoys a sufficiently large number of people, they'll vote for
its importance, which is more likely to draw Microsoft's attention in the
end.

Sep 3 '08 #7
It shouldn't, but does it matter that the form on which the button lives is
a modal form of a parent? When I ShowDialog for an instance of my child
form, I pass the parent as the owner.

Charles
"Family Tree Mike" <Fa************ @ThisOldHouse.c omwrote in message
news:uc******** ******@TK2MSFTN GP06.phx.gbl...
Your code works fine for me. The button click event shows a message box.
While the message box is visible, there are no tooltips on my form, which
makes sense, as the message box is modal. When I dismiss the message box,
the tool tip shows up upon hovering over the button.

Sorry, I don't know what to tell ya!

"Charles Law" <bl***@nowhere. comwrote in message
news:Ox******** ******@TK2MSFTN GP02.phx.gbl...
>Hi Mike

Thanks for the quick reply. I'm using VB in VS2008. I have a module level
variable

Private m_Tooltip As New Tooltip

and then in the Form_Load event:

With m_Tooltip
.SetToolTip(MyB utton, "My text.")
.ToolTipTitle = "My Title"
.ToolTipIcon = ToolTipIcon.Inf o
End With

I wave the mouse over the button and the tooltip appears. When I click
the button I can't get the tooltip again. Even if I click the button and
slide the mouse off, so the click event doesn't fire, I still lose the
tooltip.

Charles
"Family Tree Mike" <Fa************ @ThisOldHouse.c omwrote in message
news:Ok******* *******@TK2MSFT NGP05.phx.gbl.. .
>>The steps you outlined work fine for me. The tool tip shows up fine
after the process that the button executes is finished. I'm using VS
2008, C#, on Vista, hold the mayo...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui****** ********@TK2MSF TNGP04.phx.gbl. ..
I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip in
VS 2008 is getting beyond a joke. Tooltips have always done this, so
isn't it about time they were fixed?

I have a tooltip that I assign to a button control on my form. I hover
over the button and up pops the tooltip. I move away and the tooltp
fades. I hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip. Never
to be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet again?

Thanks for any help.

Charles


Sep 3 '08 #8
I would, but my System.Windows. Forms.Button doesn't have a Tooltip property.

Charles
"GS" <gs************ **********@msne ws.Nomail.comwr ote in message
news:eL******** ******@TK2MSFTN GP05.phx.gbl...
>I suspect most of us use a simpler tooltip
just set the mybutton.tootip property to whatever.. no tootiptitle used
I do have another tooptip for detailed info for the purpose of additonal
help at times. nonetheless never seem to have problem your described.
Window Xp, express vs 2005, 2008

"Charles Law" <bl***@nowhere. comwrote in message
news:Ox******** ******@TK2MSFTN GP02.phx.gbl...
>Hi Mike

Thanks for the quick reply. I'm using VB in VS2008. I have a module level
variable

Private m_Tooltip As New Tooltip

and then in the Form_Load event:

With m_Tooltip
.SetToolTip(MyB utton, "My text.")
.ToolTipTitle = "My Title"
.ToolTipIcon = ToolTipIcon.Inf o
End With

I wave the mouse over the button and the tooltip appears. When I click
the
button I can't get the tooltip again. Even if I click the button and
slide
the mouse off, so the click event doesn't fire, I still lose the tooltip.

Charles
"Family Tree Mike" <Fa************ @ThisOldHouse.c omwrote in message
news:Ok******* *******@TK2MSFT NGP05.phx.gbl.. .
The steps you outlined work fine for me. The tool tip shows up fine
after
the process that the button executes is finished. I'm using VS 2008,
C#,
on Vista, hold the mayo...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******** ******@TK2MSFTN GP04.phx.gbl...
I have to take this personally now. Tooltips have been flakey since the
dawn of .NET, but to still have to put up with a disappearing tooltip
in
VS 2008 is getting beyond a joke. Tooltips have always done this, so
isn't
>>it about time they were fixed?

I have a tooltip that I assign to a button control on my form. I hover
over the button and up pops the tooltip. I move away and the tooltp
fades. I hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip.
Never
to be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet
again?

Thanks for any help.

Charles



Sep 3 '08 #9
I believe that what GS is describing is the standard process of draging the
tooltip control onto your form. This gives an additional "ToolTip on
ToolTip1" property on each control on your form. I too have never set the
tooltip object inside my form, but rather do it from the properties in the
designer.

"Charles Law" <bl***@nowhere. comwrote in message
news:eZ******** ******@TK2MSFTN GP02.phx.gbl...
>I would, but my System.Windows. Forms.Button doesn't have a Tooltip
property.

Charles
"GS" <gs************ **********@msne ws.Nomail.comwr ote in message
news:eL******** ******@TK2MSFTN GP05.phx.gbl...
>>I suspect most of us use a simpler tooltip
just set the mybutton.tootip property to whatever.. no tootiptitle used
I do have another tooptip for detailed info for the purpose of additonal
help at times. nonetheless never seem to have problem your described.
Window Xp, express vs 2005, 2008

"Charles Law" <bl***@nowhere. comwrote in message
news:Ox******* *******@TK2MSFT NGP02.phx.gbl.. .
>>Hi Mike

Thanks for the quick reply. I'm using VB in VS2008. I have a module
level
variable

Private m_Tooltip As New Tooltip

and then in the Form_Load event:

With m_Tooltip
.SetToolTip(MyB utton, "My text.")
.ToolTipTitle = "My Title"
.ToolTipIcon = ToolTipIcon.Inf o
End With

I wave the mouse over the button and the tooltip appears. When I click
the
button I can't get the tooltip again. Even if I click the button and
slide
the mouse off, so the click event doesn't fire, I still lose the
tooltip.

Charles
"Family Tree Mike" <Fa************ @ThisOldHouse.c omwrote in message
news:Ok****** ********@TK2MSF TNGP05.phx.gbl. ..
The steps you outlined work fine for me. The tool tip shows up fine
after
>the process that the button executes is finished. I'm using VS 2008,
C#,
>on Vista, hold the mayo...
"Charles Law" <bl***@nowhere. comwrote in message
news:ui******* *******@TK2MSFT NGP04.phx.gbl.. .
I have to take this personally now. Tooltips have been flakey since
the
dawn of .NET, but to still have to put up with a disappearing tooltip
in
VS 2008 is getting beyond a joke. Tooltips have always done this, so
isn't
>>>it about time they were fixed?

I have a tooltip that I assign to a button control on my form. I
hover
over the button and up pops the tooltip. I move away and the tooltp
fades. I hover again, and back comes the tooltip. Great.

So now I click the button, and the next time I hover: no tooltip.
Never
to be seen again. They did this in 2002, 2003 and 2005. And now 2008.

Does anyone have a workaround, or will I have to roll my own yet
again?

Thanks for any help.

Charles




Sep 3 '08 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
1901
by: =?Utf-8?B?QmlsbEQ=?= | last post by:
I have installed C# 2008 Express edition in Windows Vista, and I found this huge bug: the tooltip shown to the up corner of a window has the old yellow style color. Minimize, Maximize, Close buttons show a yellow tooltip in Explorer and all other programs; instead buttons, system tray icons and other UI elements show Vista grey style tooltip. It seems VS2008 Express has changed some Vista shell dll files.
16
1256
by: Charles Law | last post by:
I have to take this personally now. Tooltips have been flakey since the dawn of .NET, but to still have to put up with a disappearing tooltip in VS 2008 is getting beyond a joke. Tooltips have always done this, so isn't it about time they were fixed? I have a tooltip that I assign to a button control on my form. I hover over the button and up pops the tooltip. I move away and the tooltp fades. I hover again, and back comes the tooltip....
0
1143
by: raylopez99 | last post by:
I have a string that is constantly changing. I would like to display the string in the caption and/or in a ToolTip when the form is minimized. I have done this successfully--save one problem: the string is 'frozen' and not constantly undated when it's minimized--it only shows the value of the string at the moment the window was minimized. But, when the window is maximized (or not minimized), the caption displays the string correctly...
11
2184
by: Kim | last post by:
Using the code below am I able to display/hide a tooltip without any problems, however once the tooltip is displayed its position is fixed (based on where the mouse first hovered onto the object) and I would like the tooltip to follow the mouse instead. What must I change to do this ? HTML <a href="#" onMouseOver="showBox('help','text to display')" onMouseOut="hideBox('help')">text link</a>
2
1423
by: Tom | last post by:
I have a ContextMenuStrip, and I would like to present the user with a tooltip like control when they press a certain button on my strip. I basically just need the user to enter some notes about an item is a list view that they right-clicked on. I don't want to display a form because I'm looking for a "cool" way to enter notes about the item, and a form just seems too ghetto. Is there a way for a user to enter text into a tooltip? i've...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10260
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10102
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10038
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9910
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8933
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6712
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2850
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.