Print gets cut off
I have created a form which pulls the information in when the print icon is pressed.
cmdPrint.Visible = False
PrintForm1.PrinterSettings.DefaultPageSettings.Margins = New System.Drawing.Printing.Margins(20, 20, 20, 20)
'PrintForm1.PrintAction = Printing.PrintAction.PrintToPreview
PrintForm1.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.Scrollable)
cmdPrint.Visible = True
frmP40_2.Show()
Me.Close()
I have designed the program with the screen resolution of 1280x1024 as i can see what i'm doing better but the program will be run on computers with a resolution of 1024x768. When i use the larger res it prints fine, but when i use the smalled res it doesn't print then entire page.
http://img395.imageshack.us/img395/3010/1280x1024zn6.th.jpg
http://img510.imageshack.us/img510/6129/1024x768ce3.th.jpg
Can anyone help me with this.
Many Thanks
Lee

