I'm using the web browser control in an application to display a report. The report is just straight HTML text but is fairly wide. When I preview the print using the .ShowPrintPreviewDialog()
I see that the report is truncated on the right hand side, even when switched to landscape mode.
Currently I am only calling the .ShowPrintPreviewDialog()
method and then calling the .ShowPrintDialog()
method to actually print the report.
My question is ... how do I get the report to print over multiple pages? I'm perfectly fine with spanning the report over X number of pages in landscape mode but I'm not sure what flag to set or how to set the control to actually split the report over multiple pages.