Printing a full size form
I want to print a form which covers the whole of an A4 sheet.
I can position the top left corner ok,
e.Graphics.DrawImage(formImage, 50, 50)
and I can get it to print in Landscape
e.PageSettings.Landscape = True
but how do I get the form to fill the entire A4 sheet instead of a small form with big margins?
Re: Printing a full size form
You are 99% of the way there. Use the Width and Height parameters in the DrawImage() call. Intellisense has all the info you need, use it.
Re: Printing a full size form