I'm using the following code to drag&drop data from listbox into other applications:
Dim data As New DataObject(DataFormats.UnicodeText, ListBox1.Text) ListBox1.DoDragDrop(data, DragDropEffects.Copy Or DragDropEffects.Copy)
How can I get a handle of the window that receives the data?
I'm looking to build something like "Finder Tool" in Microsoft Spy++.