Prabhakar
Prabhakar

Reputation: 11

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.

Upvotes: 0

Views: 2224

Answers (1)

AJqweruiruiui
AJqweruiruiui

Reputation: 11

doc.PrintController = new StandardPrintController();
doc.Print();

Upvotes: 1

Related Questions