hi,
I need to rotate a picture box with about 35 degrees. now I tried this
But it doesn't seem to workCode: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()Does someone know how to do this




Does someone know how to do this
Reply With Quote