I'm trying to do some automated printing by using the PrintQueue class and printing XPS documents I have converted from word.
Everything works fine, except for the fact that when I check the capabilities of the PrintQueue it returns NO stapling capabilities.
This is not correct, as it is possible to open a word document and print it with stapling to the desired printer.
If I try setting the UserPrintTicket to stapling anyway, the document still does not print with staples....
printQueue.UserPrintTicket.Stapling = Stapling.StapleTopLeft;
printQueue.Commit();
Has anybody come across similar problems? I'm using .Net 3.5 in a C# console app.