-
Print Preview Zoom
Hi All
I finally managed to get a report Yeppee
my report uses PrintPreviewDialog to preview the report im opening the previewer full screen, is there any way to set the zoom level to 150% so it will display most of my report in the window
Many Thanks
-
I am afraid you have to use PrintPreviewControl instead of PrintPreviewDialog.
-
Print Preview Zoom
Hi,
Dim YPreview As New PrintPreviewDialog()
YPreview.Document = PrintDocument
YPreview.WindowState = FormWindowState.Maximized
YPreview.PrintPreviewControl.Zoom = 1.0
' 0.75 = 75 %
' 1.0 = 100 %
' 1.5 = 150 %
-
thank you it worked a dream