up vote 0 down vote favorite
share [g+] share [fb]

Is there any Win API to emulate drag of a file onto a window?

link|improve this question
That's possibly the worst tagged question I've seen in quite some time :-) – n3rd May 27 '09 at 11:54
I tried making it slightly better :-) – Joey May 27 '09 at 12:00
feedback

1 Answer

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.

link|improve this answer
There is no way (that I know of) to query a window for its IDropTarget interface. – Remy Lebeau - TeamB Jun 4 '09 at 1:49
feedback

Your Answer

 
or
required, but never shown