I would like to drag and drop files from windows explorer onto my application which is being built in Codegear RAD studio 2009. Then I would like to be able to access data from the object I am dragging and dropping. I believe I have to implement IDropTarget. Can someone please provide an example of how I might implement IDropTarget to achieve this?
Share
There is a nice example written by Michael Dunn over at codeproject.com which shows how to implement
IDropTargetand access data from inside aIDataObjectwhich is used to store data during the drag and drop operation.