I'm looking at wanting to implement a tooltip similar to the way Delphi XE does when you're debugging and you hover over an object. ie, it opens up a hint window with + signs which you can expand etc.

I'm trying to create a hint window which will show a list of items (for example) when hovering over a control (such as a button) which will let the user click on an item and I can then do something based on the item they've selected.

Are there any components out there that might do that already? Or am I better of just creating a borderless form and handle the showing/hiding myself with mouse events?

Thanks

Jason

link|improve this question

68% accept rate
feedback

1 Answer

I know there are hint components with embedded html. So you can have a kind of html treeview inside you hint!
I think it is a solution for you.

link|improve this answer
A quick look at HTMLHint (better obtained from the author: tmssoftware.com/site/htmlhint.asp), does not show me a readily available way to respond to clicks on the hint window let alone to respond according to what was clicked. Don't know HintBox, but my guess would be it doesn't either, as most hint components do not provide this behaviour, which is what Jason is looking for. – Marjan Venema Jan 20 '11 at 20:36
@Marjan Venema: Yeah, I have no experience with these components. It heavily depends on what Jason want to do in the click event. If it is as Delphi IDE, so embedded HTML technic may be sufficient. Do you agree ? – TridenT Jan 21 '11 at 12:14
My point was that there is no "on click event" in the THTMLHint component. While THTMLHint supports the embedded mini HTML, unlike other TMS components that support the mini HTML, THTMLHint does not have any of the OnAnchor... events to respond to mouse clicks on an anchor tag. – Marjan Venema Jan 21 '11 at 19:33
Thanks all, but in the end I will just create a form and do all necessary processing myself. It was quite easy to do - bit of fun getting the form to not lose focus (or at least appear to not lose focus) when clicking on my "hint" form, but all good. Using forms will give me plenty of flexibility too. – Jason Jan 28 '11 at 2:19
1  
Why the -1 ? It was the only reply that opens the discussion ... – TridenT May 9 '11 at 13:45
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.