Print document without open the dialog box in C#
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.
doc.PrintController = new StandardPrintController();
doc.Print();
精彩评论