How can I flip the background picture on a form (Form1.Image) vertically?
I've seen it done on a picture box using the PaintPicture method, but I can't figure it out!
Printable View
How can I flip the background picture on a form (Form1.Image) vertically?
I've seen it done on a picture box using the PaintPicture method, but I can't figure it out!
Please help! It can't be that hard!! :)
No it isn't. This will flip the forms picture vertically:
Code:PaintPicture Me.Picture, 0, ScaleHeight, ScaleWidth, -ScaleHeight, 0, 0, ScaleWidth, ScaleHeight, vbSrcCopy
Hope you get things work :)