Click to See Complete Forum and Search --> : Printing more pages in C#


Austrian_Mike
January 30th, 2006, 05:36 AM
Hello!

I am programming on a Management Software.
So I should print bills. And such bills have sometimes more than one page!
So I have the question if there is a better/easier way to "make" more pages than ...

e.HasMorePages = true;

Because so it's like an recursive procedure!
And a way like making a new instance/object of a page would be more easier and better...

So, can u help me?
Nice greetings from Austria!

jmcilhinney
January 30th, 2006, 06:43 AM
Using the HasMorePages property is the ONLY way to print more than one page. The PrintPage event is raised once for each printed page. If you don't set HasMorePages to True then the printing process stops.