How to “Bring to the Front” an animated GIF?

What command do I need to have an animated GIF be positioned on top or in front of a PictureBox, right now it is playing behind the PictureBox


Thanks

Andy
Code:
        If Not myBMP Is Nothing Then
            ImageAnimator.UpdateFrames(myBMP)
            Dim tmpBMP As New Bitmap(myBMP, myBMP.Width, myBMP.Height)
            tmpBMP.MakeTransparent(tmpBMP.GetPixel(0, 0))
            e.Graphics.DrawImage(tmpBMP, myImagePosition)
            tmpBMP.Dispose()
        End If