I've been attempting to drag an image from a Picturebox outside my form boundaries just in the same manners that Windows Explorer does, so for instance, dropping it into an external webbrowser to view, Skype to send etc
Switched to VB.NET to find the most basic solution, but no luck there unfortunately. The drag n' drop effect shows outside my form, however, no application accepts or properly responses to the image drop.
Code is ran on the MouseDown event of the Picturebox.
Me.DoDragDrop(PictureBox1.Image, DragDropEffects.All)
Any ideas? C# or VB.NET, both are fine for me.
Thanks