Tooltip in a particular region..
Hi,
How do I set a tool tip in a particular region of an app on mouse move event?
I have a track bar, and I want to display the tooltip within the region of the track bar..not beyond that..
Thanks,
[221 byte] By [
newnick] at [2007-11-20 11:48:49]

# 1 Re: Tooltip in a particular region..
As per MSDN and what I've seen, you can associate tooltip with a control and set the Point variables.
If t is a tooltip,
t.Show("Hi",txtbox1, x, y); should work.
# 2 Re: Tooltip in a particular region..
It also depends on how your track bar is positioned in the form. Windows will show the tooltip adjusted this way. You should be able to get the current mouse coordinates and use it to set the tooltip.