I have a button that prints a Panel and its contents. All working. I just cannot get it to print 2 pages automatically of the same Panel.
Current Code:
bmp = New Bitmap(Output.Width, Output.Height)
Dim G As Graphics = Graphics.FromImage(bmp)
Output.DrawToBitmap(bmp, Output.ClientRectangle)
G.Dispose()
PrintDocument1.Print()