Printing multiple Pictureboxes
Can you print more than one picturebox on the same piece of paper? I'm looking to do something like this:
VB Code:
Private Sub cmdPrintPicture_Click()
Printer.PaintPicture Picture1.Image, 0, 0
For i = 5 To 45
If Check1(i).Value = 1 Then
Picture2.Print Check1(i).Caption
End If
Next
Printer.PaintPicture Picture2.Image, 10, 0
Printer.EndDoc
End Sub
Where the first PictureBox prints a graph and the second PictureBox prints the corresponding checkboxes. I know the above code won't work but it should at least give an idea of what I want to do. Thanks