
February 9th, 2007, 12:30 AM
|
|
Contributing User
|
|
Join Date: Mar 2005
Posts: 361
  
Time spent in forums: 3 Days 11 h 47 m 7 sec
Reputation Power: 5
|
|
|
Scaling printouts with PaintPicture
I'm using PaintPicture to print an image from a picturebox:
VB Code:
Original
- VB Code |
|
|
|
Public Sub PrintPicbox(xPos, yPos) Printer.Print Printer.PaintPicture Picture1.Image, Printer.Width / xPos - Picture1.Width / 2, (Printer.Height / yPos) - (Picture1.Height / 2) Printer.EndDoc End Sub
Is there any way to scale the printout using PaintPicture?
joe
|