Hi,
In theory it is possible, however the implementation can be painful. to implemnt this you would have to do something like this:
- Find out what is the window that the user draged the file to. You could use the windows SDK function GetActiveWindow(...)
- Once you have the handle to the window you have to post a WM_DROPFILES message to the window. You would use the SendMessage(,,,) function.
It would be easier to implement this in a DLL, but this will be no easy task.
Let me know if you have any further questions.
Regards,
Juan Carlos
N.I.