Click here to Skip to main content
15,892,059 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to print the Invoice copy name on every printed pages, the number of copy depends on user.
like if user give
1 then first page on right corner show "Original Copy"
2 then second page on right corner show "Duplicate Copy"
3 then third page on right corner show "triplicate Copy"
4 then fourth page on right corner show "Quadruplicate Copy"
with same details..

How to do that with printDocument in C# ??
and how create multiple pages with same details with copy name ??
thanks in advanced...
Posted
Updated 9-Mar-13 6:54am
v2

1 solution

It is not clear what you are developing. If you are developing a piece of software for someone else, you should create your own Print routine which will call printDocument 4 times, each time with the appropriate text. There is no way around that. Print drivers can usually allow you to define odd and even numbers, and 2 side printing but you need 4 different layouts per each print, and there is no automatic solution except for calling printDocument 4 times.
 
Share this answer
 
v2
Comments
JayantaChatterjee 9-Mar-13 13:54pm    
Thank You Sir.... :-)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900