Print on 2 pages
Thanks
Dim newImage As Image = PictureBox1.Image
Dim newimage2 As Image = PictureBox2.Image
Dim font1 As New Font("Arial", 12, FontStyle.Regular)
Dim font2 As New Font("Arial", 12, FontStyle.Bold)
Dim font3 As New Font("Arial", 36)
Dim stringformat As New StringFormat
stringformat.Alignment = StringAlignment.Center
e.Graphics.DrawImage(newImage, 1, 1, 334, 210)
e.Graphics.DrawImage(newimage2, 113, 20, 108, 144)
e.Graphics.DrawString(Label1.Text, font1, Brushes.Black, 167, 164, stringformat)
e.Graphics.DrawString(Label2.Text, font2, Brushes.Black, 167, 184, stringformat)
e.Graphics.DrawString(vbFormFeed, font1, Brushes.White, 0, 211, stringformat)
e.Graphics.DrawString("*123456789*", font3, Brushes.Black, 167, 220, stringformat)

