Send window messages to drag treeview item to other process

208 Views Asked by At

I can enumerate the treeview items within a window in another process. I'd like to be able to programmatically initiate a drag-drop operation on nodes in the treeview, dragging the item into a window that I control. Ultimately, I just want to access the DataObject of each treeview item.

Is it possible to use PostMessage, or some other method, to initiate and complete the drag-drop sequence? Can it be done without taking ownership of the mouse (i.e without interruption to the user's mouse position)?

Is it possible to complete the same task, even if the treeview item is in a collapsed treeview folder (without expanding the folder)?

1

There are 1 best solutions below

2
On

There is no IDataObject in the TreeView itself.

It is the responsibility of the TreeView's owning application to detect when the user is trying to drag a TreeView node (the TreeView notifies the application via TNV_BEGINDRAG), at which time the app can then create a suitable IDataObject and pass it to the DoDragDrop() function to start an OLE drag operation, which can pass data across process boundaries.

There are no window messages you can send to the TreeView (or the app) to retrieve an IDataObject for a tree node, or to start a drag operation directly. About the only thing you can do on your end is to either:

  1. simulate mouse input over the TreeView itself, so it thinks the user is dragging a node normally.

  2. simulate TVN_BEGINDRAG manually. This requires using VirtualAllocEx() and WriteProcessMemory() to allocate and fill a suitable NMTREEVIEW structure inside of the memory address space of the TreeView's owning process, and then send TVN_BEGINDRAG to the TreeView's parent window, pointing it to that NMTREEVIEW struct. Which means first using things like TVM_HITTEST and TVM_GETITEM to retrieve some information that TVN_BEGINDRAG needs to report to the app (most notably, the tree nodes's HTREEITEM handle and LPARAM value).

This would trick the owning app into thinking the user is trying to drag a tree node around and act accordingly. But, it is still going through the motions of starting a real OLE drag operation, so the user will have to then move the mouse over your app window and release the mouse button (or you will have to simulate mouse input to do it programming) so the IDataObject is dropped onto your window normally.