Click here to Skip to main content
15,908,776 members

Comments by Member 9967950 (Top 2 by date)

Member 9967950 22-Jan-16 2:23am View    
Sorry about less experience in asking because of my first question here. :(
Member 9967950 22-Jan-16 2:07am View    
Deleted
The below code is from [^]

All of the fields (except "Report") are generated by the way that I use Acrobat Pro to create Form Field. 3 first fields have font style "3 of 9 barcode" and the others are Arial. In my project, I used itextsharp to add text for them. That means I created a template and then add content for it. I would like to print it but the line betweens 2 columns and the barcodes are missing (Please see the file "SampleDocument_AfterPrint" in the below link).
The requirement is silently printing the Pdf file ("DO NOT OPEN ANY THING WHEN PRINTING"). So that I can not use the some approaches like:
<pre lang="C#">Process p = new Process( );
p.StartInfo = new ProcessStartInfo( )
{
CreateNoWindow = true,
Verb = "print",
FileName = path //put the correct path here
};
p.Start( );

because it always open Acrobat when printing. Although I can have a good result after printing by using this way, the problem is how to prevent Acrobat opening...


Thank you in advance!&lt;/pre&gt;</pre></pre>