answersLogoWhite

0

the most common problem is that the printer has a job stuck in the que ahead of the job thats printing. Usually because it is asking for a paper size it doesn't have (ie. A4 instead of 8.5x11). cancel the first job, and the subsequent jobs should print.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you xxplain how a print queue works?

If a printer is already printing a document, it can not print another document until the printing of the first document has finished. Therefore, the second document must form a (print) queue and wait its turn.


What put a server document in a queue?

print server


How do you delete documents waiting to be printed?

To delete documents waiting to be printed, open the print queue by clicking on the printer icon in your system tray or accessing it through the Control Panel (Windows) or System Preferences (Mac). In the print queue window, you will see a list of pending documents. Right-click on the document you want to remove and select "Cancel" or "Delete." Confirm the action if prompted, and the document will be removed from the queue.


A printer has a paper jam An impatient user has sent multiple print jobs of the same document to this printer What can be done to remove these print jobs?

Cancel the jobs in the printer's queue


What is an explanation of print queue?

Print queue is when a list of documents or files have been sent to a printer for printing and they are waiting to be printed.


When you print with a Windows system and the print jobs and documents do not print when they are in the print queue what do you do?

You need to restart the print spooler.


What is the file containing the print queue often referred to as?

A spool.


Write a program to display a content of a queue?

This is really dependent how your queue is implemented. Unfortunately, working from the outside of a queue, this is usually impossible without removing all elements from the queue. while !queue.isEmpty() print queue.dequeue()


How do you print an HTML document?

Click on the File menu after opening the html document in the browser. Then click on Print Preview. After adjusting margins, click on Print to print the document


An lineup of multiple print jobs within a buffer is called a?

queue


How do you view how many items are in the queue of documents waiting to print on your printer on a Windows 7 computer?

To view the number of items in the print queue on a Windows 7 computer, click on the "Start" button, then select "Devices and Printers." Find your printer in the list, right-click on it, and choose "See what's printing." A window will open displaying the print queue, showing how many documents are waiting to print.


Algorithm to delete elements at both ends in a dequeue?

Delete Front---- DQDELETE_FRONT(QUEUE, FRONT, REAR, ITEM) 1. [check for queue underflow] If FRONT<0, Then: Print: "Queue is empty", and Return. 2. ITEM = QUEUE[FRONT]; 3. Set FRONT = FRONT + 1. 4. Return. Delete Rear---- DQDELETE_REAR(QUEUE, REAR, FRONT, ITEM) 1. [check for queue underflow] If REAR<0, Then: Print: "Queue is empty", and Return. 2. ITEM = QUEUE[REAR]. 3. Set REAR = REAR - 1. 4.Return.