Click here to Skip to main content
15,895,809 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have to download multiple PDF documents from server and print all at the client's machine. Without opening the print dialog box this to has be done. Can Somebody help in PDF printing.
Posted
Updated 19-Apr-10 4:42am
v2

Take a look at this article.[^]

A lot of third party softwares (few free) also offer a way to print it silently. Google returns a lot of results when you search for print pdf silently.[^]
 
Share this answer
 
private static void RunExecutablePrint(string executable, string arguments)
{
ProcessStartInfo starter = new ProcessStartInfo(executable, arguments);
starter.CreateNoWindow = true;
starter.RedirectStandardOutput = true;
starter.UseShellExecute = false;

Process process = new Process();
process.StartInfo = starter;
process.Start();
Thread.Sleep(20000);
process.CloseMainWindow();
process.Kill();
}



I need simple dll for pdf printing in c#.net webapplication. sujest me/sendme

malyadri s
 
Share this answer
 
v2

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