waytech2003
Programmer
I have a Picturebox that has a picture (jpg), and a Shape control loaded at design time. My program moves the Shape control around on the picture at runtime. The Picturebox has Autoredraw set to True. (tried False also)
I want to print the picture as seen on the screen, and use the following.
Printer.PaintPicture Pic1.Picture, 1, 1, Pic1.Scalewidth, Pic1.ScaleHeight
All I get is the original picture and no Shape control.
I have tried using Pic1.Image and no difference.
Also have tried Pic1.Picture=Pic1.Image and still no luck.
I tried placing a second picturebox on the form and using Pic2.Picture=Pic1.Picture and Pic2.Picture=Pic1.Image. The second picture only gets the original Picture, No Shape control.
How do I get what I see in the Pic1 to another Object?
Wayne
I want to print the picture as seen on the screen, and use the following.
Printer.PaintPicture Pic1.Picture, 1, 1, Pic1.Scalewidth, Pic1.ScaleHeight
All I get is the original picture and no Shape control.
I have tried using Pic1.Image and no difference.
Also have tried Pic1.Picture=Pic1.Image and still no luck.
I tried placing a second picturebox on the form and using Pic2.Picture=Pic1.Picture and Pic2.Picture=Pic1.Image. The second picture only gets the original Picture, No Shape control.
How do I get what I see in the Pic1 to another Object?
Wayne