Print problem

  • Thread starter Thread starter Tux
  • Start date Start date
T

Tux

Hello,

I've a small problem :
For a printer a must use a different paper size
and i do this :
documentPrinter.DefaultPageSettings.PaperSize =
New Drawing.Printing.PaperSize("MyFormat", 1200, 850)

but it doesn't work (there is a shift with the page break)
....

Thanks for you help :)
 
Hi Tux,

Can you have a look yourself to this (I made a selection for you)
http://tinyurl.com/2q9tr

In my idea it is an often asked question which mostly is answered by
Herfried K. Wagner however searching for that name in newsgroups is useless.

:-)

Cor
 
* Tux said:
For a printer a must use a different paper size
and i do this :
documentPrinter.DefaultPageSettings.PaperSize =
New Drawing.Printing.PaperSize("MyFormat", 1200, 850)

but it doesn't work (there is a shift with the page break)
...

I am not sure if it's possible to use a really custom paper size that is
not supported by the printer. The 'PrinterSettings' provide a
'PaperSizes' property which contains paper sizes supported by the
printer. Maybe choosing one of them will solve the problem.
 
Back
Top