Is there any Win API to emulate drag of a file onto a window?
|
|
|||||
|
|
|
ooh. a toughie. There's the IDropTarget COM interface — you're not supposed to call its methods directly, since the window-manager portion of the OS does this for you. But if you could obtain the IDropTarget interface pointer from the window in question, you could pass in an IDataObject containing a reference to the file in question. It wouldn't be very easy or elegant, though. |
||
|
