Drag/Drop from Server
1) Handling the WM_ONLBUTTONUP message within my application, retrieving the current directory of the window under the mouse. Unfortunately, this simply cannot be done.
2) Handling the WM_ONLBUTTONUP message, copying the files from the server to a local temp directory, creating an hDrop object out of the filepaths, and calling DoDragDrop. Of course, this doesn't work because the drop is already over by the time DoDragDrop is called, and there are no files yet available for Explorer to copy.
My supervisor provided me with a tutorial on OLE drag/drop with COM objects, but I am having one heck of a time understanding it (http://www.catch22.net/tuts/dragdrop.asp). He suspects the iStream interface is the solution, but I can't find any examples of its use online.
If anyone is familiar with how to implement drag/drop with files that do not already exist in the local file system, please let me know.
Thanks,
Paul Fake
Software Development Intern
CygNet Software, Inc.

