Aug 5, 2003 #1 gae75 Programmer Sep 4, 2002 2 IT Hello There! I' have a problem, i can't print the picture on an img box, what can i do? Help me please
Hello There! I' have a problem, i can't print the picture on an img box, what can i do? Help me please
Aug 11, 2003 #2 Error7 Programmer Jul 5, 2002 656 GB The easiest way is to put your image control on its own form then simply: Form1.PrintForm
Aug 11, 2003 #3 vbrocks Technical User Jul 17, 2003 958 US Try this out ..... Using the imagebox's click event... Private Sub Image1_Click() Dim picture(1) As picture Set picture(1) = Image1.picture Printer.PaintPicture picture(1), 0, 0 Printer.EndDoc End Sub P.S. The 2 zeros signify x and y.
Try this out ..... Using the imagebox's click event... Private Sub Image1_Click() Dim picture(1) As picture Set picture(1) = Image1.picture Printer.PaintPicture picture(1), 0, 0 Printer.EndDoc End Sub P.S. The 2 zeros signify x and y.