rotate images in picturebox on button click
Visual Basic
3
Posts
3
Posters
0
Views
1
Watching
-
Hello Experts!! I have to develop application in which i am able to rotate images on button click(Next and Previous).I am using vb.net..... Anybody have code or ideas then suggest me......
-
Hello Experts!! I have to develop application in which i am able to rotate images on button click(Next and Previous).I am using vb.net..... Anybody have code or ideas then suggest me......
Just type this on rotate button(Button_Click Event) pictureBox1 .Image.RotateFlip(RotateFlipType.Rotate90FlipNone) pictureBox1.Refresh() Zahid Khan Kakar