tooltip

JFace: Resizable tooltip with ColumnViewerToolTipSupport

Hi, Can anyone show me how to use org.eclipse.jface.viewers.ColumnViewerToolTipSupport to create a tooltip similar to the one shown in Eclipse IDE when you hover your mouse to any Java element? That is, I want the tooltip to be resizable, I also want to hook an F2 key to show the tooltip on demand in addition to mouse hover. I have ...

Replace WinXP taskbar Tooltip for another program

Hi. I need to replace the common Tooltip from WinXP taskbar for another application. So, I need to run an application when the mouse hover a task button. Is this possible, programatically? If so, how? Thank you ...

How to specify a ToolTip for a control in a Style from XAML?

I'm using a the WPF datagrid from the Microsoft CodePlex project. I have a custom control that I want to databind to a field from the row of the datagrid. I can't for the life of me figure out how to specify a tooltip on a datagrid row. The closest I've come is to use a RowStyle with a Setter to set the tooltip, but this only seems to ...

How to pop-up TIPS and pop-over any other windows open

Is there any way to pop-up TIPS and pop-over any other windows open? I don't find a flag to set it in NOTIFYICONDATA struct. ...

asp.net HyperLinkField Has no ToolTip property (Alt text)

I wish there was a ToolTip field in HyperLinkField as there is one in HyperLink. I'm creating a HyperLinkField by code before binding to my data source: HyperLinkField hl = new HyperLinkField(); hl.DataNavigateUrlFields = new string[] { "col" }; hl.DataNavigateUrlFormatString = "{0}"; hl.DataTextField = "Foo"; Is there any way to als...

Can I set an infinite AutoPopDelay for a tooltip in a .net winform?

I have a requirement to not have the standard .net winform tooltip automatcially hide - that is, I need them to remain visible until the mouse moves off the control that has the tooltip. I'd like to avoid having to specific MouseEnter and MouseLeave events for all controls with a tooltip. I'm happy to hear about 3rd party solutions if ...

jQuery override default validation error message display (Css) Popup/Tooltip like

I'm trying to over ride the default error message label with a div instead of a label. I have looked at this post as well and get how to do it but my limitations with CSS are haunting me. How can I display this like some of these examples: Example #1 (Dojo) - Must type invalid input to see error display Example #2 Here is some example ...

Displaying tooltip on mouse hover of a text

Hi, I want to display a tooltip when the mouse hovers over a link in my custom rich edit control. Consider the following text :- We all sleep at night . In my case the word sleep is a link. When the user moves the mouse under the link , in this case "sleep", I want to display a tooltip for the link . The follwing came to my mind, bu...

Forcing a WPF tooltip to stay on the screen

Hi, I have a tooltip for a Label and I want it to stay open until the user moves the mouse to a different control. I have tried the following properties on the tooltip: StaysOpen="True" and TooltipService.ShowDuration = "60000" But in both cases the tooltip is only displayed for exactly 5 seconds. Why are these values being ignore...

How do I change the CSS style for a YUI tooltip?

I see on the YUI page an example about changing the style for panels in general. But I'd like to change the style for all the tooltips (and not other panels) on my website. All my tooltips are not in one certain DIV, so changing the YUI panel styles within a div won't work for me. Any tips? ...

Detect if Tooltip is shown?

I am manually displaying a System.Windows.Forms.Tooltip on a control using the show method, but how can I detect if a tooltip is currently shown? If I need to change the method for showing it to find out, that is fine. ...

C# 2008 - NotifyIcon - BaloonTip

I'm using the following code: notify.ShowBalloonTip( 15000, "Reminder!", myText, System.Windows.Forms.ToolTipIcon.None); But the problem is the balloon almost always hides one layer behind the active window. Obviously this doesn't work too well when your active window is maximized and goes all the way down to the tas...

Why are my GenBitmapToggleButtons killing my tooltips?

I've encountered some weird behavior I was wondering if anyone has seen/has an answer to. I want to use a wx GenBitmapToggleButton on my application (running on a Linux system with Ubuntu 8.04), but the button seems to be killing my tooltips. When I use the GenBitmapToggleButton the tooltips (all over the GUI, on all buttons and all pan...

Change the ToolTip InitialShowDelay Property Globally

I have an application that has upwards of a hundred different ToolTips set on a Ribbon control. All of the ToolTips pop up rather quickly (about half a second), and I would like to increase the pop up delay. After some research it appears the only way to do this in WPF is through the ToolTipService.InitialShowDelay property. My question...

Ideas on how to display a modeless message box as a tooltip

I need to display a modeless message box whenever a user hovers over a menu item. I can't use messagebox.show(...) because it is a modal. So what I did was create a seperate windows form and display the form using the hover event on the menu item. I have 2 problems: 1) When the windows form displays the menu loses its visibility. 2) The...

jQuery: Cascading popups

Hi, I have the following code to display a pop-up div: <a href="#" id="pop1" rel="div#tt1">Click to show popup</a> <div class="popupBlock" id="tt1">My popup content ...</div> The div is initially hidden and with a bit of jQuery code I'm turning it visible when pop1 anchor is clicked. This is the plgin I've made for this: (function($...

Tool tip vanishes after drag and drop

Hi I have got a C# UserControl in a Windows Forms Application which supports drag and drop. In my case, the location of the Control is not changed when dragging, only a new Control is spawned where the cursor is released. This UserControl also owns a ToolTip. When I move my mouse over the Control, the tool tip pops up. Drag and drop als...

How do I determine when to show a tooltip?

I'm writing a calendar control in .Net WinForms that will show a tooltip for each date. What's the best way to determine when to show the tooltip? Showing it immediately in MouseMove would make it get in the way, so I'd like it to show when the mouse hovers over each date cell. The MouseHover event only fires on the first hover after ...

jQuery plugin feedback

I'm new to building jQuery plugins. I have seen and used a lot of tooltip plugins, and today I've decided to build my own. Can I get some feedback on the code? What work, what doesn't. Optimizations. Caching. What can I do to make it faster and better? This would be really helpful for my learning and hopefully for others too. Heres my...

C# Tooltip not appearing on "Show"

Hello Everyone To fullfill a requirement I have to show a tooltip manually for 30 seconds. According to msdn I just have to use the "Show" method. toolTip.Show(QuestionHelpText, btnHelp, 30000); But I only get the standard tooltip behavior, meaning that the message appears half a second after my click (only because the mouse pointer ...