Hi all.

Is it possible to drag and drop a drawn image from a PictureBox and save it to file.

EX: If I drag and drop the PictureBox to my desktop I need it to save it as a .bmp

Here's my save to file code.
Code:
        mPrintBitMap = New Bitmap(Piclvl1.Width, Piclvl1.Height)
        Dim lRect As System.Drawing.Rectangle
        lRect.Width = Piclvl1.Width
        lRect.Height = Piclvl1.Height

        Me.DrawToBitmap(mPrintBitMap, lRect)