Windows 7 Pro X64 System Will Not Play 'Print Complete' Sound After Printing A Document

Feb 26, 2012

My Windows 7 pro x64 system will not play the "Print Complete" sound after printing a document.I get the pop-up saying that the print job has completed, just like it did with Win XP. However, the sound is not played.The sounds applet in control panel has the "Print Complete" sound defined correctly and the Test button plays the sound. So I do not have an audio problem, and the .wav file is not blocked.I have looked for any options that could control the sound, but have not found any.

View 3 Replies


ADVERTISEMENT

Its Is Not Printing Any Document

Feb 27, 2011

when I go to print a document, sometimes the save window opens up and no matter what I do it will not print. I have a document save in a certain font size and when i try to print it the font increases by itself and its too big for the page.

View 1 Replies View Related

Overlay Document Printing?

Oct 15, 2010

So, just a question more out of curiosity than anything, as I don't expect a solution (I know, pessamistic...)It's time to renew my passport and the application form is a protected pdf (no modification, no comments - only printing). After wasting a day looking for restriction decryptors, I just went with making a blank document to "double-print" ontop of the application form.The tree-huggers are going to love this, but after wasting about 20 pages (rotation, page order, orientation etc...) and a lot of time I now have it sorted, but my question is: Does anyone know of an app to overlay print jobs instead of manually inserting paper back into the printer tray?

View 9 Replies View Related

Black Bands Printing In PDF Document

Jan 24, 2012

Doing some research for a co-worker.... He is running Windows 7 64 bit and trying to print a large PDF document. There are Horizontal black bands of differing lengths coming from the right hand side of the page. This is the only document he is having a hard time with and it does not happen on every page, Seems to be Random (except that they print they same way on the same page every time he has tested the print job. The bands only print when the text is aligned on the right side. I am able to print the document from my computer (XP) with no problems. Also, every where there is a band the text disappears from the left hand side of the page.

View 14 Replies View Related

How To Change Document Already Saved To 'Web Page Complete'

Dec 18, 2011

I saved a "dashboard" from a system that I bought. As the "save as type", I left it as "all files". When opening this later, it was not as expected. After trial and error, I discovered it should have been saved as "Web Page, complete" to get the desired page required.how to change the document already saved to "Web Page, complete". I have left it as a default setting but need to change the incorrect saving.

View 2 Replies View Related

Printing Document With XPS Printer - No Permissions To Save File

Jun 2, 2011

I tried to print a document with the XPS printer thing and it wouldn't save no matter where I tried to save it, it said that I don't have permission. I am an administrator (and the only account on here).

View 1 Replies View Related

Document In Excel 2010 Only Printing One Column Per Page

Oct 17, 2012

I am trying to print a document in Excel Starter 2010. The document contains the columns A to J and rows 1 to 466. When I try to print the document, only one column prints per page. I have tried selecting all the columns and changing the print selection but this just shrinks the column size, and prints it smaller. How do I change it so that I can print all columns A to J on the one page?

View 2 Replies View Related

Printing From Mac To Windows Unable To Print

Jul 11, 2011

I have a MacBookPro with OSX 10.6.8 and a Toshiba laptop with Windows 7 to which is connected by USB a Canon MP250 printer. I have been able to network the two computers, meaning I am able to create a file on the Mac and save it on the Toshiba and vice-versa. But I am unable to print a document from the Mac on the Canon printer which is connected to the Windows laptop. I think I correctly followed instructions here.

View 3 Replies View Related

How To Print A Black Document In Color

Oct 7, 2010

I have a scanned file that is black ink, but I can't print it due to my ink. I don't have black ink, so I want to print this document as is just in color is there a way in word or somewhere else?

View 2 Replies View Related

Deleting A Document From A Print Queue?

Aug 21, 2011

dell printer 960-can't delete a document in queue which has already printed!

View 1 Replies View Related

How To Get Printer To Print All Pages Of A Document

Jan 28, 2013

it will onlt print what is showng on the screen, but the page is to long, and it will not print a second pageif I reduce the size to 80 % the internet will shut down and it will not print

View 2 Replies View Related

Cannot Print Any Document Other Than Notepad, Neither The Printer Will Work?

Jan 6, 2013

At first I thought it was only my printer......uninstalled the drivers,reinstalled.......etc. Then I tried to print as an XPS document and I get the same error messages. Example error message from Excel is "Your file could not be printed due to an error on Microsoft XPS Document writer". If I try the printer I get the exact same message. From Firefox I get "An unknown error occurred while printing." I have searched everywhere for a solution, I even restored as far back as I could but that was only a month ago. I can print from Notepad, both on the printer and XPS Document writer, I can also print a test page and an alignment page

View 28 Replies View Related

Printing Error Cannot Print Anything

Jun 22, 2011

I bought a new laptop with Windows 7 Home Premium 64bit a couple of months ago and havent been able to print anything at all. The printers that i have are HP Officejet K7100, HP Deskjet 960c. Both printers are recognized and the status on the control panel is all good, until i actually print something, thats when the spooler seems to begin the print job but it just ends up saying theres an error and no page is actually printed.

View 3 Replies View Related

Print Preview Doesn't Match Printed Document In IE 8 & 9?

Dec 7, 2011

I'm helping to develop a web application that uses iframes. On the main page (outside of all frames), we have a div that we use to display and print forms. We also have 2 nested iframes; the innermost iframe contains the main page content. When printing, we use extensive CSS and Javascript (contained in the outermost window) to hide everything except the print div.When I use File > Print Preview, it always displays the correct preview; that is, the outermost window which contains the print div. Printing from the Print Preview works as it should. However, when I use File > Print, it seems to print whatever window has focus, not the entire page (outermost window). Therefore my print div doesn't get printed and all I get is a printout of whatever is currently onscreen. Why doesn't the print out from File > Print match what is shown in the print preview?

A related issue occurs when using JavaScript's window.print(). When I call window.print from within the print div, it prints as it should. But when I call parent.parent.window.print() from within the double-nested iframe, IE still only prints the window that has focus, not the outermost window (as shown by "parent.parent."). And since they just clicked on a button in the innermost frame, the innermost frame has focus, my print div doesn't print and all I get is a printout of whatever is currently onscreen. I have been using "parent.parent" for all other Javascript calls from the nested iframe to the outermost, so I know that's not the problem.

My temporary solution is to focus on the outermost frame when the users mouses out of the nested window (ie, when they mouse up to the file menu) Code: window.onmouseout = parent.parent.window.focus(); and focus on the outermost frame when the user clicks the print button that is within the nested frame. I would really rather not do this focusing, especially on mouseout, because it seems to cause some issues when the user pulls up another application.I have also tried using the onbeforeprint event to focus. The onbeforeprint was triggered, but I couldn't get the focusing to work correctly.I haven't been able to find anything regarding these problems online; has anybody had similar problems?

View 1 Replies View Related

Unable To Print When Printing Its File Is Printed?

Dec 24, 2012

i unable to print when i am printing its your file is printed

View 1 Replies View Related

Quicken 2000 Won't Print Even Though Printer Says It's Printing

Jan 15, 2013

Quicken 2000 won't print even though printer says it's printing; No job in the printer que either. Downloaded another printer driver but that did not do the trick. it shows there's a printer in that que but nothing printed.

View 1 Replies View Related

Stop Printer Printing Out Instructions For Two-Sided Print?

Aug 7, 2011

I have recently installed Windows 7 Home Premium 32bit and when I print anything on my Lexmark E120 laser printer and select Two-Sided printing, it prints out instructions for doing this. As I already know how to use my printer, I would like to stop it printing out instructions and wasting paper.

View 3 Replies View Related

Application Locks Up When Printing Over The Network Via Print Server?

Jul 13, 2011

I'm having sporadic issues with many users connected over the network to a print server. If the printer is their default printer the application used to print will freeze/lockup until they log out / restart their machine. The only way to fix this (from my experience) is to set their default printer to something else (like Adobe PDF) or bypass the print server completely and do it by direct TCP/IP.

View 4 Replies View Related

Local Print Spooler Service - Printing Statement?

Nov 10, 2011

Trying to print a statement but comes back to local print spooler service, but I can print my emails.

View 1 Replies View Related

Mirror Print On The Canon MP560 For Printing A T-Shirt?

Sep 27, 2012

how do I mirror print on the Canon MP560 for printing a T Shirt

View 1 Replies View Related

Print Spooler Stops Working Every Time After Printing One Page

Apr 16, 2011

I have my printer installed in my work domain PC. I try to print one page, and then after this my print spooler stops working. I have to start it manually, and after another page printed, it stops again. It's so annoying to start it after each print.

View 3 Replies View Related

Cannot Print Pdf Or Play Wmv Files

Oct 1, 2012

Receive PDF aand WMV files in google gmail. Cannot print pdf or play wmv files. Iam 75 years old and having a problem. Had XP before and had no problems.

View 2 Replies View Related

Windows 7 System Restore Did Not Complete Successfully

Dec 31, 2011

These are the error messages that I get on my Windows 7 64-bit Ultimate PC and the different steps that I have performed: "System Restore did not complete successfully. Your computers files and settings were not changed. Details: System Restore failed to extract the original copy of the directory from the restore point. Source: %SystemRoot% egistration Destination: ComPlusStaging." I ran the file checker tool (sfc.exe) from the command prompt and no missing or corrupted files were reported. I got a confirmation that no problems were found.

View 14 Replies View Related

Windows 7 System Restore Did Not Complete Successfully

Dec 22, 2011

System Restore failed to extract the original copy of the directory from the restore point. [code]

View 1 Replies View Related

HP Color LaserJet 2840 Through A Belkin Play N600 DB Won't Print

Mar 22, 2012

I have an Hewlwtt Packard HP Color LaserJet 2840 which is connected via USB to a Belkin PLAY N600 DB router, which is connected to my PC with Windows 7 Home Premium 64 bit.

I have been to the HP webstie and it tells me to use the drivers that came with Windows 7.

So in the Devices & Printers window it is there, labelled as HP Color LaserJet 2800 series and when I try to print I get an error.

I'm guessing it is something to do with the driver as I cannot scan at all, it just tells me there is no scanner connected!!

View 1 Replies View Related

Error After System Restoring - Windows Couldn't Complete Installation

Dec 25, 2011

Recently I went to restore my netbook-Acer Aspire One Happy 2. Well I clicked save user data to C: drive, for me a first time user of a netbook...didn't know that if I clicked that and was using a different windows 7 edition from the OEM. That a different windows 7 edition data couldn't be saved. Now, whenever I boot up my netbook, windows will try to install on my computer but gives error:

Error message: Windows couldn't complete installation. To install windows, restart the installation.

System Specifications:
Pre-load: Windows 7 starter
Os using before system restore: Windows 7 Professional
CPU:Intel atom N570 @ 1.66ghz
Graphics card: Intel Gma 3150

View 3 Replies View Related

Cannot Open Document On Internet - Contact System Administrator

Aug 27, 2011

Every time I need to open a document on the iternet I get the message of "Contact your administrater" whe do I do?

View 2 Replies View Related

Backing Up Complete System In XP?

Nov 15, 2011

I know this is a Windows 7 forum but perhaps someone here can help. My wife has given me permission to use her laptop to experiment with Ubuntu and Ubuntu variations on the condition that when she gets it back it will exactly as she left it. So... is there a way to back up the entire OS with installed programs, settings, personal files, etc? I know about dualbooting but in case something goes awry it would be handy to just be able to pop in a disc(s) and replace everything where it was.

View 9 Replies View Related

Deleted Video And Document Libraries - File System Error (512)

May 20, 2012

Secondly, I'm having a few problems. I recently purchased a new laptop and was transferring files from the old ones hard drive using an enclosure. I somehow deleted my Videos and Documents sections on my new laptop. I can't paste anything, or move anything into these locations. I also can't create a new folder without getting a File System Error (512).

When I look at the properties of them, I can see that only the "public" locations are visible (Already tried resetting defaults by the way). I took a snap shot of the comparison between the music and video properties. How do I get that other location back?

View 6 Replies View Related

System Restore Doesn't Complete

Mar 17, 2011

HP G72; Pentium P6100 @ 2.00 GHz; 300 GB HDD; 6 GB RAM; Windows 7 Home Premium 64-bit. Three months old. Had a problem with the network connection and tried to run System Restore first thing. It said it didn't complete successfully. Tried a different restore point. Still didn't complete successfully. Isn't that a bad thing? What could have made a new computer lose its System Restore capability? Is there something I can do about it? Have since resolved the network problem so that isn't an issue anymore. However, I'd like to know System Restore is there for me in case something bad happens.

View 4 Replies View Related

System Restore Fails To Complete

Jan 30, 2011

I have tried to restore my system to an earlier state to remedy the faulty uninstallation of a speech recognition programme, which tries to reinstall every time I start the computer. System restore restarts the computer but then tells me the restore process failed, once i am back to my desktop. OS is Windows 7 Home Premium and computer is an Acer Aspire laptop. System partition is encrypted using Truecrpyt.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved