hi,
I need to rotate a picture box with about 35 degrees. now I tried this

Code:
PictureBox1.CreateGraphics.ResetTransform()
            PictureBox1.CreateGraphics.TranslateTransform(64.0F, 64.0F)
            PictureBox1.CreateGraphics.RotateTransform(35) 

            PictureBox1.CreateGraphics.DrawImage(sword, (-sword.Width \ 2), -sword.Height \ 2)

            PictureBox1.Refresh()
But it doesn't seem to work Does someone know how to do this