473,569 Members | 2,839 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

the problem of ToolTips's displaying

Hi all,
I set the ToolTips when the solution is running.
as follows:
ToolTip1.SetToo lTip(Me.Label1, "nothing")
ToolTip1.Automa ticDelay = 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True

then ,when I move mouse over Label1, "nothing" is showed, then repeat
the action above, it does well.
But when the time which mouse over Label1 is more than 5000, the
ToolTip is disappear, and whatever you do, the "nothing" will never be
showed again.

Can anyone tell me the reason.
Thanks :-)
Jun 27 '08 #1
4 3488
On Jun 10, 9:37 am, "fts2...@gmail. com" <fts2...@gmail. comwrote:
Hi all,
I set the ToolTips when the solution is running.
as follows:
ToolTip1.SetToo lTip(Me.Label1, "nothing")
ToolTip1.Automa ticDelay = 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True

then ,when I move mouse over Label1, "nothing" is showed, then repeat
the action above, it does well.
But when the time which mouse over Label1 is more than 5000, the
ToolTip is disappear, and whatever you do, the "nothing" will never be
showed again.

Can anyone tell me the reason.
Thanks :-)
Hi,
Could you put the code in label1's MouseHover event? Hence, your
tooltip will re-appear after delay time passes, when ever mouse
pointer hovers on the label as follows:

Private Sub Label1_mouseHov er(ByVal sender As System.Object, ByVal e
As System.EventArg s) Handles Label1.MouseHov er
ToolTip1.Automa ticDelay = 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True
ToolTip1.SetToo lTip(Me.Label1, "nothing")
End Sub
Thanks,

Onur Güzel
Jun 27 '08 #2
On Jun 10, 4:05 pm, kimiraikkonen <kimiraikkone.. .@gmail.comwrot e:
On Jun 10, 9:37 am, "fts2...@gmail. com" <fts2...@gmail. comwrote:
Hi all,
I set the ToolTips when the solution is running.
as follows:
ToolTip1.SetToo lTip(Me.Label1, "nothing")
ToolTip1.Automa ticDelay = 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True
then ,when I move mouse over Label1, "nothing" is showed, then repeat
the action above, it does well.
But when the time which mouse over Label1 is more than 5000, the
ToolTip is disappear, and whatever you do, the "nothing" will never be
showed again.
Can anyone tell me the reason.
Thanks :-)

Hi,
Could you put the code in label1's MouseHoverevent ? Hence, your
tooltip will re-appear after delay time passes, when ever mouse
pointer hovers on the label as follows:

Private Sub Label1_mouseHov er(ByVal sender As System.Object, ByVal e
As System.EventArg s) Handles Label1.MouseHov er
ToolTip1.Automa ticDelay= 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True
ToolTip1.SetToo lTip(Me.Label1, "nothing")
End Sub

Thanks,

Onur G¨ązel
Thank you for your reply!
Use the method you mentioned above, it does workŁˇ(thanks again :-)
And to complete this function I have to add another sub to handle the
MouseLeave action.
In my opinion, the ToolTip control should be a dependently , fully
module which provide we with the popup usage.
But now I have to write another two sub to fulfil the function, this
confused me.
Why is the ToolTip so unstable ?
Jun 27 '08 #3
On Jun 10, 11:37 am, "fts2...@gmail. com" <fts2...@gmail. comwrote:
On Jun 10, 4:05 pm, kimiraikkonen <kimiraikkone.. .@gmail.comwrot e:
On Jun 10, 9:37 am, "fts2...@gmail. com" <fts2...@gmail. comwrote:
Hi all,
I set the ToolTips when the solution is running.
as follows:
ToolTip1.SetToo lTip(Me.Label1, "nothing")
ToolTip1.Automa ticDelay = 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True
then ,when I move mouse over Label1, "nothing" is showed, then repeat
the action above, it does well.
But when the time which mouse over Label1 is more than 5000, the
ToolTip is disappear, and whatever you do, the "nothing" will never be
showed again.
Can anyone tell me the reason.
Thanks :-)
Hi,
Could you put the code in label1's MouseHoverevent ? Hence, your
tooltip will re-appear after delay time passes, when ever mouse
pointer hovers on the label as follows:
Private Sub Label1_mouseHov er(ByVal sender As System.Object, ByVal e
As System.EventArg s) Handles Label1.MouseHov er
ToolTip1.Automa ticDelay= 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True
ToolTip1.SetToo lTip(Me.Label1, "nothing")
End Sub
Thanks,
Onur G¨ązel

Thank you for your reply!
Use the method you mentioned above, it does workŁˇ(thanks again :-)
And to complete this function I have to add another sub to handle the
MouseLeave action.
In my opinion, the ToolTip control should be a dependently , fully
module which provide we with the popup usage.
But now I have to write another two sub to fulfil the function, this
confused me.
Why is the ToolTip so unstable ?
I really don't know, the solution i posted was for doing a *kind" of
solution, no matter if it does what you want.

See here for your question:
http://forums.msdn.microsoft.com/en-...-2311e8c3779c/

It's said that it's by design, however i agree that it's annoying and
undesired behaviour.

Thanks,

Onur G¨ązel

Jun 27 '08 #4
On Jun 10, 4:46 pm, kimiraikkonen <kimiraikkone.. .@gmail.comwrot e:
On Jun 10, 11:37 am, "fts2...@gmail. com" <fts2...@gmail. comwrote:
On Jun 10, 4:05 pm, kimiraikkonen <kimiraikkone.. .@gmail.comwrot e:
On Jun 10, 9:37 am, "fts2...@gmail. com" <fts2...@gmail. comwrote:
Hi all,
I set the ToolTips when the solution is running.
as follows:
ToolTip1.SetToo lTip(Me.Label1, "nothing")
ToolTip1.Automa ticDelay = 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True
then ,when I move mouse over Label1, "nothing" is showed, then repeat
the action above, it does well.
But when the time which mouse over Label1 is more than 5000, the
ToolTip is disappear, and whatever you do, the "nothing" will never be
showed again.
Can anyone tell me the reason.
Thanks :-)
Hi,
Could you put the code in label1's MouseHoverevent ? Hence, your
tooltip will re-appear after delay time passes, when ever mouse
pointer hovers on the label as follows:
Private Sub Label1_mouseHov er(ByVal sender As System.Object, ByVal e
As System.EventArg s) Handles Label1.MouseHov er
ToolTip1.Automa ticDelay= 10
ToolTip1.AutoPo pDelay = 5000
ToolTip1.ShowAl ways = True
ToolTip1.SetToo lTip(Me.Label1, "nothing")
End Sub
Thanks,
Onur G¨ązel
Thank you for your reply!
Use the method you mentioned above, it does workŁˇ(thanks again :-)
And to complete this function I have to add another sub to handle the
MouseLeave action.
In my opinion, the ToolTip control should be a dependently , fully
module which provide we with the popup usage.
But now I have to write another two sub to fulfil the function, this
confused me.
Why is the ToolTip so unstable ?

I really don't know, the solutioniposted was fordoing a*kind"of
solution, no matterif itdoeswhat you want.

See here for your question:http://forums.msdn.microsoft.com/en-...14abffde-681d-...

It's said that it's by design, however i agreethat it's annoyingand
undesired behaviour.

Thanks,

Onur G¨ązel
Thank you very much!
Jun 27 '08 #5

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

Similar topics

4
3187
by: Michael Bednarek | last post by:
Hello, The Japanese version of my web application contains some long text inside TITLE attributes. On IE, this text is wrapped so that it appears on multiple lines. In Netscape (7.1), the text is simply truncated at a certain point. Is there any way to force Netscape to show the entire tooltip? Many thanks,
0
1234
by: Frio | last post by:
VB.net help file provided the following excerpt for the SetToolTip method: ********** Remarks In addition to specifying the ToolTip text to display for a control, you can also use this method to modify the ToolTip text for a control. Calling the SetToolTip method more than once for a given control does not specify multiple ToolTip text to...
1
2687
by: David Ei | last post by:
I'm working on a C# Windows Forms application that is leaking memory. I've been using the SciTech NetMem Profiler 2 (A really great tool, BTW) to track down leaks. I've found one related to ToolTips that I've been unable to fix. We have a base form, from which we add and remove panels. When created, the panels create tooltips which they...
3
5161
by: David Hayes | last post by:
I've made tooltips work in Firefox*, but tooltip doesn't appear at the specified location until the SECOND time that the user passes the mouse over the location with the mouseover event. What I want is for the user to be able to put the mouse over text that gives a year (e.g., "(1932)", "(1946)" and "(1923)") and see the tooltip to the right...
1
1831
by: Wayne Aprato | last post by:
Tooltips in Access have not worked on my machine for a long time despite several reinstalls of the operating system and applications at fairly regular intervals. I have finally pinned down the culprit. I have just performed a reformat and reinstallation of all apps and utilites one at a time and checked that tooltips in Access was working...
0
1022
by: usman | last post by:
Hello I have dialog with some checkboxs and command buttons. It show tooltip when I call it first time then I hide the dialog and when I again show the dialog no tooltips are displayed. Usman Majeed
0
970
by: glhanson | last post by:
I am using the AxWebBrowser control to display a simple HTML page on a windows form. I want to display tooltips using the title attribute for the hrefs. The tooltips work fine when the HTML is displayed in IE and FireFox, but they don't work at all inside the AXWebBrowser. Does anyone know if tooltips are not supported, or is there a...
0
1030
by: Mark Rae | last post by:
Hi, Trying to debug an ASP.NET v1.1 site where ToolTips are not displaying on <asp:DropDownList> controls. Since this isn't a built-in property of these controls, I did a Google search and the suggested method seems to be to add a title="<ToolTip goes here>" tag to the <asp:DropDownList> declaration. This is what my client is trying to do....
1
3309
by: Mark | last post by:
Hello, I am using the new TreeView in ASP.Net 2.0. I am using its PopulateOnDemand feature. The problem is that the treeviews +/- images, and any checkboxes, have the tooltip set. If the node contains HTML, then the tooltip shows the raw HTML, which is unacceptable to users. Is there any way to block the tooltips from displaying this...
0
7695
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7612
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...
0
8119
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...
1
7668
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...
0
7964
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...
0
5218
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...
0
3653
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...
1
2111
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1209
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.