Tagged Questions
The printqueue tag has no wiki summary.
1
vote
2answers
371 views
PrintQueue is the printer the default printer?
I'm making my own dialog for printing in my application, now I have this code to put all the printers in a combobox:
PrintServer server = new PrintServer();
foreach (PrintQueue queue ...
1
vote
0answers
258 views
System.Printing.PrintQueue QueueStatus not updating
Is there a way to update the print queue status information contained in the PrintQueue object?
I've tried calling Refresh on the PrintQueue object but that doesn't really do anything. For instance, ...
1
vote
2answers
755 views
Network printers and the PrintServer.GetPrintQueues method
I have a feeling that the PrintServer.GetPrintQueues method does not return the network printers.
If this one is true, what other choices do i have?
0
votes
1answer
80 views
Access Denied trying to purge printqueue in C#
I'm trying to make a method in C# that empties all items in a print queue. Below is my code:
LocalPrintServer localPrintServer = new LocalPrintServer(PrintSystemDesiredAccess.AdministratePrinter);
...
0
votes
0answers
23 views
How PrinterMonitorComponent will works?
I have heard about PrinterMonitorComponent in .net but i don't know more about it.
when i search in google i came to know that it will help to monitor the printer using .net.
but is this will monitor ...
0
votes
2answers
155 views
Events in PrintQueue
ps = new PrintServer(printserverName);
PrintQueue pq1 = new PrintQueue(ps, pq.Name);
As per my understanding, pq1 is a printer Queue which will handle print jobs.
I want to catch events for this ...
0
votes
1answer
41 views
Batch Script - Verify a printed file went to the print queue
Windows XP w/Network Printers (\server\printer1)
Making a batch script for printing PDF files via FoxitReader and Foxit does not store errorlevels, so I'm trying to find a way for the script to ...
0
votes
1answer
542 views
System.Printing to return printqueue status - properties never return true
I'm using System.Printing to interrogate PrintQueue status - my aim being to obtain status updates & errors, specifically the booleans IsOutOfMemory, NeedUserIntervention, IsOutOfPaper, ...
0
votes
2answers
767 views
Setting Print Queue Priority in Windows
I have some code that sends a text file to a printer as follows:
File.Copy(outputFile, "\\" & printServer & "\" & printer)
Is there a way I can specify the priority of the print job ...