TreeNode hover

har339

Newcomer
Joined
Jan 12, 2003
Messages
1
I have looked and looked but does anyone know of a way to display a little box when you "HOVER" over a certain tree node in a treeview control?

I don't mean like a message box or dialog box but a box that is similar to hover over a button in a toolbar that gives you its description such as MS Word.
 
hmmm, Try this...

I think this might work, try it out and see how it does...

I got this code originaly from Divil in another thread and then modified it as you see it below...

First, create a tooltip control ( tooltip1 )
Then when you add/create a node in the treeview, use:

Visual Basic:
Dim d As New TreeNode("blah")
d.ToolTip = me.tooltip1
myTreeView.Nodes.Add(d)

It sounds right, but I am unable to test it today...

Let us know if this works or if you found a way to achomplish the goal, thanx...
 
Back
Top