473,787 Members | 2,798 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ToolTip only shows once

Hi NG,

working on a project in VS2005 I started to add ToolTips.
My problem now is, that each ToolTip only shows once.
mouving the mouse over a button shows its tooltip, moving to the next button
show the coresponding tooltib.
If I now move back to the first button the tooltip does not popup again.

Is there "some setting" responsible for that? What must I do, that the
tooltip is shown every time the mouse moves over the control?

Thanks for help
Regards
Rainer
Jun 14 '07 #1
3 4671
Hi Rainer,

Based on my understanding, you use a ToolTip component on a form. When you
move the pointer over a Button, the tooltip window pops up. Moving the
pointer to the next Button, the tooltip window pops up showing the
corresponding tooltip text. However, when you move back to the first
button, the tooltip window doesn't pop up again. If I'm off base, please
feel free to let me know.

I performed a test based on your description, but didn't reproduce the
problem on my side.

I create a WinForms application and add two Buttons named button1 and
button2 and a ToolTip named toolTip1 on the form. Set the button1's ToolTip
on the toolTip1 to 'button1' and set that of the button2 to 'button2' in
the Properties window.

Run the application. When I point the mouse over the button1, a tooltip
window pops up showing 'button1'. I move the mouse to the button2 and a
tooltip window pops up showing 'button2'. Then I move back to the button1
and a tooltip window still pops up showing 'button1'.

Is there any difference between your application and mine?
Sincerely,
Linda Liu
Microsoft Online Community Support

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====

This posting is provided "AS IS" with no warranties, and confers no rights.

Jun 15 '07 #2
Hello Linda,

thanks for your efforts.
I went back to this issue in my project, and I don't know why, but now I do
get the tooltips.
All I currently can say, that it "was" as described.
I will keep a eye on this and if I manage to get a reproducable case, I will
let you know.

Other Question:
Did you get the chanc to download (see link in the other thread) an observe
the "Formdesign er looses controls" issue?
This IS reproducable (at least on my machine).

Regards
Rainer Queck

"Linda Liu [MSFT]" <v-****@online.mic rosoft.comschri eb im Newsbeitrag
news:L6******** ******@TK2MSFTN GHUB02.phx.gbl. ..
Hi Rainer,

Based on my understanding, you use a ToolTip component on a form. When you
move the pointer over a Button, the tooltip window pops up. Moving the
pointer to the next Button, the tooltip window pops up showing the
corresponding tooltip text. However, when you move back to the first
button, the tooltip window doesn't pop up again. If I'm off base, please
feel free to let me know.

I performed a test based on your description, but didn't reproduce the
problem on my side.

I create a WinForms application and add two Buttons named button1 and
button2 and a ToolTip named toolTip1 on the form. Set the button1's
ToolTip
on the toolTip1 to 'button1' and set that of the button2 to 'button2' in
the Properties window.

Run the application. When I point the mouse over the button1, a tooltip
window pops up showing 'button1'. I move the mouse to the button2 and a
tooltip window pops up showing 'button2'. Then I move back to the button1
and a tooltip window still pops up showing 'button1'.

Is there any difference between your application and mine?
Sincerely,
Linda Liu
Microsoft Online Community Support

=============== =============== =============== =====
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
=============== =============== =============== =====

This posting is provided "AS IS" with no warranties, and confers no
rights.


Jun 15 '07 #3
Hi Rainer,

Thank you for your prompt response.

No problem. Whenever you reproduce the problem about ToolTip, please let me
know.

As for your another post titled 'Form desinger looses controls', I have
downloaded the sample project and did reproduce the problem on my side. I
have replied to that post and you may see my rely there.

Sincerely,
Linda Liu
Microsoft Online Community Support

Jun 15 '07 #4

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

Similar topics

1
1524
by: Glenn | last post by:
I am showing a tooltip on a flexgrid control. The tooltip shows but stays visible the entire time the mouse is on the cell. How do I get the tooltip to disappear after some time. Further, if I set any of the display properties, the tooltip does not show, e.g ttip.AutoPopDelay = 1500 If I rem out the line the tooltip shows.
5
11816
by: Pavan | last post by:
My goal is to accomplish the tooltip functionality for all the neodes in a tree view and i have the following three Events in my C# application. Name of my TreeView Control (AITreeView) 1) AITreeView_MouseDown(object sender, MouseEventArgs e) 2) AITreeView_MouseUp(AITreeView_MouseDown(object sender, MouseEventArgs e) 3) AITreeView_Click(AITreeView_MouseDown(object sender, MouseEventArgs e)
2
9456
by: puja | last post by:
hi all, i have a grid view where am displaying data from dataset. My dataset consists of columns Customer name, surname, date requested, sales person, file number , status and comments I am displaying all columns in grid view except comments. Now I want to have comments displayed (for each row) as tooltip when u hover over particular row.
4
7810
by: rn5a | last post by:
A DataList displays 3 columns - Product, Category & Price. These columns are populated with records from a SQL Server 2005 DB table. Apart from the above 3 DB columns that the resultset retrieves, there is another DB column named 'Description'. Though the resultset fetches this column as well along with the above 3 columns, I am excluding the Description column from the DataList - the reason being most of the descriptions are pretty long &...
2
1421
by: dgk | last post by:
My co-worker, no idiot, says that the tooltip in the system tray for the SS2000 icon usually shows the computer and server, but once in a while shows the password (two slashes and the password). Is this a known bug of some sort? It really shouldn't be showing his password. It's likely the developer edition, but still, that isn't good.
5
9831
by: =?Utf-8?B?cGV0ZTE5Njk=?= | last post by:
I use Visual Studio 2005 and created a very simple Form with one button. I added a Tooltip for that button. It shows fine the first time I hover over that button. But if I let it disappear by the maximum time it should be displayed, it never shows again over that button. Is that intended? And what can I do to make it show again?
16
2779
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
9497
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
10363
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
10169
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...
0
9964
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
8993
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...
1
7517
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6749
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
5398
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

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.