Reputation: 11
I have created a scheduler that print number of document in a day, i want to print these document silently(without opening the printer),
Can any one help me how to print document in c# without opening the dialog box.
Upvotes: 0
Views: 2224
Reputation: 11
doc.PrintController = new StandardPrintController();
doc.Print();
Upvotes: 1