Quote Originally Posted by korae View Post
where exactly are you gonna do this? change the page layout to landscape.
I already figured it out, This is what I did:

With Me.PrintPreviewDialog1
.Document = GridPrinter.PrintDocument
.Document.DefaultPageSettings.Landscape = True
If .ShowDialog = DialogResult.OK Then
GridPrinter.Print()
End If
End With