I have been looking for tools which will allow to send documents (pdf,txt,doc,etc) to network printer.
I am aware of the PrintDocument, Graphics to print text to Printer. what I am looking for is easy and less noise solution to achieve it
i.e.
using(printer p = new XPrinter)
{
p.filename = "C:\\1.txt";
p.printername ="\\network1\mainprinter";
p.print();
}
Are there any open source or 3rd party tools available to ease printing in dotnet 4.. winform/wpf. or any ideas to achieve it.
EDIT Ideally I want to install this printing application on server and then complete print requests on network printer as requested.