Hello!
When doing a drag and drop operation on a treeview, how can I highlight the treenode thats under the mouse to make it clearer for the user where the dragged treenode will be moved. This is how it is in Windows Explorer.
Thanks in advance!

Highlighting the node under the mouse in a drag and drop operation
Rob_SA
.........
Point pt;
pt = treeview.PointToClient(
new Point(e.X, e.Y));TreeNode tn = tvContents.GetNodeAt(pt);
treeview.SelectedNode = tn
...............
Hope this helps!
Koen Vd B
mathmo
Thanks again for the working example!