tags:

views:

54

answers:

1

I have a WPF application for product purchase billing. My client wants that app should be able to bill and print upto 1-99 products at once. they use bill printer (mini size printer) for billing. How I can achieve this in WPF C#. Any code or link would be helpful.

Thank you...

+1  A: 

It sounds like you will want to print more than a page worth of data - in which case you should look at paginating the results.

The following is a great tutorial on how to do just that: http://www.switchonthecode.com/tutorials/wpf-printing-part-2-pagination

Some additional links from SO:

Brad Leach