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)?
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 suitableIDataObject
and pass it to theDoDragDrop()
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:simulate mouse input over the TreeView itself, so it thinks the user is dragging a node normally.
simulate
TVN_BEGINDRAG
manually. This requires usingVirtualAllocEx()
andWriteProcessMemory()
to allocate and fill a suitableNMTREEVIEW
structure inside of the memory address space of the TreeView's owning process, and then sendTVN_BEGINDRAG
to the TreeView's parent window, pointing it to thatNMTREEVIEW
struct. Which means first using things likeTVM_HITTEST
andTVM_GETITEM
to retrieve some information thatTVN_BEGINDRAG
needs to report to the app (most notably, the tree nodes'sHTREEITEM
handle andLPARAM
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.