Optimized Moves Using DoDragDrop
I’m writing an application in Visual Basic 2007 that interacts with the Windows Shell and uses drag and drop to move files around.Microsoft document #969396, "Handling Shell Data Transfer Scenarios" says that I need to check two values, set by the drop target, to determine if an optimized move was done.One of the values is returned by the "DoDragDrop" method itself.The other is data created by the drop target and returned in the "CFSTR_PERFORMEDDROPEFFECT” format.
After "DoDragDrop" returns, how do I access second data value?

