I have managed to drag and drop an image from one picturebox to another but I cannot figure out how to open up windows explorer and drag the image file from explorer to the picturebox.

The picturebox with the DragDrop method is below.

Private Sub Fcover_DragDrop(ByVal sender As Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles Fcover.DragDrop
Me.Fcover.Image = e.Data.GetData(DataFormats.Bitmap)
End Sub

The method is firing but the image doesnt appear.

Any ideas what I am doing wrong ?

Is it also possible to find the name and location of the file I drag ?

TIA