I need to print to different positions on an A4 paper from C#. What are my options for this?
+2
A:
All of the objects/methods of the System.Drawing.Printing.PrintDocument class should get you going in the right direction.
Here is a link to an example: C# Printing Functions - O'Reilly media
Scott Vercuski
2009-09-30 10:50:44
Would this be easier than using the Open XML Format SDK to create a word doc that is printed?
Danny
2009-09-30 12:12:35
@Danny: I've never used the Open XML Format SDK so I really couldn't say. I had a little trouble with the PrintDocument class at first but after some "getting used to" I'm pretty well used to it now.
Scott Vercuski
2009-09-30 12:36:14
A:
if you don't want to use the Printing functions that c# provide you can use crystal report and design your page as you like and then print it.
Wael Dalloul
2009-09-30 10:54:36