vote up 0 vote down star

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

flag
That's possibly the worst tagged question I've seen in quite some time :-) – n3rd May 27 at 11:54
I tried making it slightly better :-) – Johannes Rössel May 27 at 12:00

1 Answer

vote up 2 vote down

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|flag
There is no way (that I know of) to query a window for its IDropTarget interface. – Remy Lebeau - TeamB Jun 4 at 1:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.