Hey guys, please ignore my most recent post as I have solved how to set my orientation to landscape.
I was wondering if there was a way to specify how big the region of printing is for example the print preview shows that it will print half the overall size,
when I wish to print the full landscape A4 Page.
Here is my code:
Thank-you so much for the help.
It's been a while since iv'e coded vb.net!
I was wondering if there was a way to specify how big the region of printing is for example the print preview shows that it will print half the overall size,
when I wish to print the full landscape A4 Page.

Here is my code:
Public Class cutting
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
PrintForm1.PrinterSettings.DefaultPageSettings.Landscape = True
PrintForm1.Form = Me
PrintForm1.Print()
End Sub
End Class
Thank-you so much for the help.
It's been a while since iv'e coded vb.net!