I like to use a graphics object to paint into PictureBoxes. You must go into the PictureBox1_Paint sub to do this.
First of all, I've always created my images this way:
vb Code:
Dim JeepBmp As New Bitmap(My.Resources.Jeep)
And here's the code:
vb Code:
Private Sub PictureBox1_Paint(sender As Object, e As PaintEventArgs) Handles PictureBox1.Paint
e.Graphics.DrawImage(JeepBmp, 0, 0)
End Sub
Private Sub CallPaintEvent()
PictureBox1.Invalidate()
End Sub
"e.Graphics" can only be used in Paint subs, but it has so many useful functions especially for game developers! Also, use "CallPaintEvent()" or just "PictureBox1.Invalidate()" to draw/reload the PictureBox. Good luck! I will be glad to help if you need more.