i can have a series of picturebox on a form.
how to print to the default printer, maintain the actually position.
naturally only a picturebox witht the name named pic1,pic2,picxx
MY TEST CODE:
how to print to the default printer, maintain the actually position.
naturally only a picturebox witht the name named pic1,pic2,picxx
MY TEST CODE:
Rich (BB code):
Private Sub PRINT_PICTUREBOX()
Dim myitem As Control
For Each myitem In Me.Controls
If TypeOf myitem Is PictureBox Then
If Left(myitem.Name, 3) = "PIC" Then '<<<< peraphs here the print code?t
End If
Next
End Sub
Last edited: