M476dw no longer prints in Econo mode is this due to low toner level?

I have an M476DW AIO color laser printer.My black cartridge reports "zero" remaining pages available, but still prints fine, so i have been waiting till the toner is "really" gone to install the new cartridge. I have been printing most documents in "econo mode" using less toner, but yesterday econo-mode seems to have stopped working ... Does anyone know if this is this an intentional design feature? I.E. econo-mode is disabled on low toner level to improve print quality, or do I have something else going on?I've made no changes to my settings / system.... Thanks,jim

Hi,
You can access Advanced Boot Options by turning on your computer and pressing the F8 key before Windows starts.
Then choose system restore to go back to a previous status if you have a restore point.
Advanced startup options (including safe mode)
http://windows.microsoft.com/en-in/windows/advanced-startup-options-including-safe-mode#1TC=windows-7
Alex Zhao
TechNet Community Support

Similar Messages

  • In Photoshop Elements 13 I keep getting a message that says "default printer is not set"; (but it is)  therefore I can no longer print.  Just started doing this out of the blue.  Was printing just fine to start with. This question is Not Answered.

    This problem happened once before and it was related to adjusting an image size in Photoshop Organizer. I don't use the organizer anymore but this problem has resurfaced!!!

    Same problem here.
    This has happened on two individual computers both running elements 13 printing to the same printer.
    As mentioned above, the users have taken to printing using windows print and fax viewer.
    I've done a clean install of elements 13 and restarted the print spooler. no joy
    Adobe, we need a solution!!

  • In Photoshop Elements 13 I keep getting a message that says default printer is not compatible with this version of Photoshop; therefore I can no longer print.  Just started doing this out of the blue.  Was printing just fine to start with.

    Hope someone can help.

    Same problem here.
    This has happened on two individual computers both running elements 13 printing to the same printer.
    As mentioned above, the users have taken to printing using windows print and fax viewer.
    I've done a clean install of elements 13 and restarted the print spooler. no joy
    Adobe, we need a solution!!

  • Will not print black. ink cartridge is new. also shows low black level with new cartridge.

    HP Photosmart C6180  all-in-one.  Will not print Black.  Also shows low black ink on ink level.  Cartridge is new and HP brand.
    In printing colors, very light and has RED hue as there is no black.  Also two other cartridges show low ink when all the cartridges have been replaced.

    Hi there,
    Download and run the print and scan doctor located here (amoung resolving some things automatically it can give us a better idea of what is going on with the printer). Give the steps outlined a shot and let us know the results.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • Problem with computing Font width while printing in Landscape mode

    I have an application which prints a table and fills it with some text. I render it on a JComponent using the drawString(theStr, xPos, yPos) and the drawLine(rigtX, topY, rigtX, botY) methods in Graphics2D object. I want to take print-out of the table and also store the image of the table in, say, jpeg format. The print can be in Landscape or Portrait format depending on the size of the JComponent, which the user sets depending on the table size and the font size.
    I have a paintTable( ) method which contains all the drawString( ) and drawLine( ) methods. This method is called from the paint( ) method of the JComponent to achieve normal rendering. The same method is called to get a BufferedImage of the Table. The same method is further called from the implementation of print( ) method from the Printable interface.
    In the paintTable( ) method, I compute the pixel coordinates of the table grid lines and the texts positions in the tables depending on the font width and height obtained as shown below:
            // Set the Font             
            Font theFont = graphics.getFont();
            theFont = theFont.deriveFont((float)TableFontSize); // TableFontSize is an int of value 8,9,10 etc.
            graphics.setFont(theFont);
            // Get the Font Size      
            FontRenderContext frc = graphics.getFontRenderContext();
            float width = ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).width;
            float height = ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).height;
           System.out.println("FONT WIDTH HEIGHT [" + width + "," + height + "] ");I am getting the following value of width and height when the above print statement is executed with a value of 9 for TableFontSize. FONT WIDTH HEIGHT [18.0,11.3203125]
    The problem I face is :
    While Printing in Landscape mode the value of the 'width' variable printed as given above is becoming negative. Kindly see the values: FONT WIDTH HEIGHT [-9.37793,11.3203125]. This is happening ONLY DURING PRINTING IN LANDSCAPE MODE. This makes my calculation of table grid line coordinates and text positions completely wrong and the table goes out of place.
    Kindly note that, there is no problem during normal rendering and BuffereredImage creation and also while printing in Portrait mode. The problem happens irrespective of Linux or Windows. The value of 'height' is always correct.
    Kindly let me know: If the method I use to get the 'width' and 'height' is correct ? Is there any better way which will work fine in all platforms under all circumstances.
    Kindly help me to sort out this issue.
    Thanks a lot in advance and best regards
    -acj123

    I have extracted the relevent code and made a stand alone program.
    The complete code is enclosed; including that for printing.
    Kindly go through the same and help me to solve this problem.
    Thanks again and regards
    -acj123
    import java.awt.*;
    import java.util.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    import java.awt.print.*;
    import java.awt.print.PrinterJob;
    import java.awt.font.FontRenderContext;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    public class MyCanvas extends JComponent implements Printable, ActionListener
        int TableFontSize = 9;
        private Graphics2D graphics;
        public MyCanvas(JFrame frame)
            frame.getContentPane().setLayout(new BorderLayout());
            frame.getContentPane().add(this, BorderLayout.CENTER);
            frame.setJMenuBar(createMenuBar());
        public JMenuBar createMenuBar()
            JMenuBar menubar = new JMenuBar();
            JButton printButton = new JButton("Print");
            menubar.add(printButton);
            printButton.addActionListener(this);
            JButton imageButton = new JButton("Image");
            menubar.add(imageButton);
            imageButton.addActionListener(this);
            JButton drawButton = new JButton("Draw");
            menubar.add(drawButton);
            drawButton.addActionListener(this);
            JButton closeButton = new JButton("Close");
            menubar.add(closeButton);
            closeButton.addActionListener(this);
            return menubar;
        public void actionPerformed(ActionEvent evt)
            String source = evt.getActionCommand();
            if  (source.equals("Close"))
                System.exit(0);
            if  (source.equals("Image"))
                getImage();
                return;
            if  (source.equals("Print"))
                printCanvas();
                return;
            if  (source.equals("Draw"))
                repaint();
                return;
        public BufferedImage getImage()
            Dimension dim = getSize();
            BufferedImage image = (BufferedImage)createImage(dim.width, dim.height);
            this.graphics = (Graphics2D)image.createGraphics();
            System.out.print("\nImage ");
            paintCanvas();
            return image;
        public void paint(Graphics graph)
            this.graphics = (Graphics2D)graph;
            System.out.print("\nDraw  ");
            paintCanvas();
        public void paintCanvas()
            // Set the Font      
            Font theFont = graphics.getFont();
            theFont = theFont.deriveFont((float)TableFontSize);
            graphics.setFont(theFont);  
            // Get the Font Size       
            FontRenderContext frc = graphics.getFontRenderContext();
            float width = ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).width;
            float height= ((Rectangle2D.Float)theFont.getMaxCharBounds(frc)).height;
            System.out.print("FONT WIDTH HEIGHT [" + width + ", " + height + "] ");
            System.out.print(" SIZE "+ super.getWidth() +", "+ super.getHeight());
        public int print(Graphics graph, PageFormat pageFormat, int pageIndex)
            throws PrinterException
            if (pageIndex > 0) return Printable.NO_SUCH_PAGE;
            this.graphics = (Graphics2D)graph;
            graphics.translate(0,0);
            paintCanvas();
            return Printable.PAGE_EXISTS;
         *  Interface method for Printing the Canvas on Paper
        public void printCanvas()
            PrinterJob printJob =  PrinterJob.getPrinterJob();
            printJob.setPrintable(this);
            PrintRequestAttributeSet attr = new HashPrintRequestAttributeSet();
            if (super.getWidth() < super.getHeight())
                System.out.print("\nPrint PORTRAIT ");
                attr.add(OrientationRequested.PORTRAIT);
            else
                System.out.print("\nPrint LANDSCAPE ");
                attr.add(OrientationRequested.LANDSCAPE);
            Dimension dim = getSize();
            attr.add(new MediaPrintableArea(1, 1, dim.width, dim.height,
                                                  MediaPrintableArea.MM));
            attr.add(new JobName("MyCanvas", Locale.ENGLISH));
            attr.add(new RequestingUserName("acj123", Locale.ENGLISH));
            if (printJob.printDialog(attr))
                try
                    printJob.print(attr);
                catch(PrinterException ex)
                    ex.printStackTrace();
        public static void main(String[] arg)
            JFrame frame = new JFrame("MyFrame");
            MyCanvas canvas = new MyCanvas(frame);
            frame.setSize(800, 600);
            frame.setVisible(true);
    }

  • HP Laserjet M1212NF USB no longer printing in manual duplex mode

    Hello All,
    I am currently having issues with my HP LaserJet M1212NF printer connected via USB.  First, basic system information:
    Windows 7 64-bit
    Now, some backstory:
    The printer was initially setup using Network installation.  Then, I moved and could no longer access the network, so I deleted it from the Windows Device and Printer area and reinstalled it as a USB perinter.  I installed all the updated drivers and Firmware updates.  The printer now CANNOT print in duplex mode.  I choose Manual Duplex in the printer settings AND when I print a multipage document.  The printer simply prints the document normally, with no duplex.  Please help.  I've googled the problem, but have come up empty handed.

    Hi Wilhendrickx,
    I understand you aren't able to print two sided.
    Thank you for your reply.
    I will be happy to help you with this.
    You can set the two sided option two different ways. Try both to see if it makes a difference.
    To set the two sided printing for all print jobs.
    Go to start, devices and printers, right click the printer, left click printer
    properties, click on the finishing tab and check Print on both sides, (manually) apply and OK.
    To set the two sided printing for 1 job.
    From the application go to file, print, preferences, click on the finishing tab and
    check Print on bot sides, (manually) apply and OK.
    Disable the bidirectional support to see if that will make a difference.
    Go to start, devices and printers, right click the printer, left click printer
    properties, click on the ports tab at the top, uncheck Enable bidirectional support.
    If it didn't work then go back in and check it again.
    I would download and run the Print and Scan Doctor since it might resolve the issue
    automatically.
    Find and Fix Common Printer Problems Using HP Diagnostic Tools for Windows.
    If that doesn't work then I would uninstall and reinstall the printer software.
    Uninstalling the Printer Software.
    Here is a URL to download and install the latest drivers again.
    HP LaserJet Pro M1212nf Multifunction Printer Drivers.
    Try the two sided printing now.
    Hope this helps.
    Thank you for posting on the HP Forums. Have a great day!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Epson NX305 no longer prints via Airport since upgrade to 10.5

    I recently upgraded my laptop from 10.4.11 to 10.5.8. Since the upgrade I can no longer print wirelessly using the laptop. The printer is an Epson NX305 all in one. I have uninstalled and reinstalled the driver multiple times. Epson says it's an Apple thing, not a printer thing.
    The Airport Express is running software 6.3, which I believe is the most up to date available. This is PPC laptop, not an Intel based one.
    When I go to print an document the computer sees the printer on the network. I click print and the document flashes on the printer screen for a splt second and then just disappears. If I connect the printer to the computer directly via USB it prints fine.
    Any thoughts?
    Thanks!

    Been having the same issues happening on the same machine as you. I did this yesterday, and so far so good.
    1. Restart in safe mode (Hold down shift key when you hear the chime)
    2. Under Applications > Utilities > Disk Utilities, select your hard drive on the left column, and click "Repair Permissions"
    3. Once done, restart
    It's been a day since I've done this, and no beachballs yet (fingers crossed)

  • Can no longer print on any network printers or on printer wired to USB

    I changed the printer to "Select printer"  save as PDF
    since then i can no longer print to any printer on network
    also I tried to connect a printer direct to usb. still no luck.
    I have tried to update software
    I have tried to select different printer on network
    I believe the problem is in a setting that automatically changed when I selected "Save as PDF" as one of the printers.
    there are so many tabs and locations on this system I just don't know where to start

    First thing to try is go into your system preferences using the little apple icon in the upper left corner of the screen. Go to printers  an see if your printer is listed there. Go through the settings looking for something that would lock it to acting like a PDF exporter all the time. Sometimes the printer utility will have a "Print Test Page Option".
    Installing some software, like Adobe, will also install dummy printer drivers that show up as "PDF Printers" in the Printers listing. This could be set as the default printer, but shouldn't stop you from selecting a different printer at print time.
    If all else fails, you could try removing all he printers from your System Preferences, then reinstalling your current printer with default setups after restarting the computer. When it sees the "new" device it should start the install process like it did the first time. If you are not comfortable doing that, better to wait for better help or you could end up being worse off than you are now.
    I too print to PDF often by selecting the option at the bottom of the print page. But it doesn't lock into that mode. It prints to the printer by default.
    Good luck.

  • HP Photosmart 5520 printer no longer prints wireless

    Hello.
    I recently got an xfinity cable modem with wireless.  (Xfinity/comcast promoted it should be faster...I am seriously doubthing that!)
    Before this cable modem, I was printing okay with a Netgear router.  Never an issue with it.  Now with the comcast modem with the Netgear router, I can no longer print wirelessly from my computer or anywhere remotely (ipad, laptop, etc).
    I do suspect something with the comcast modem but comcast claims it is NOT them (Yeah, right...works okay flawlessly before and now nothing).   Thus if someone can help me pinpoint where the problem lies, I would be greatly appreciated.   And of course, one cannot turn off the wireless network in the xfinity modem either!!
    Have tried the HP diagnosics but says it cannot establish a 2 way communication.  Everything on the printer display looks correct from a wireless standpoint (i.e. sees the router name, etc).
    I am using Windows Vista
    Thanks!
    Thomas

    What Comcast forced on you is a Gateway device, modem+router.  Call comcast and have them put that Gateway in Full Bridge mode and now connect your router back up and use that.   What is the exact Comcast model number they gave you?
    Say thanks by clicking the Kudos Thumbs Up to the right in the post.
    If my post resolved your problem, please mark it as an Accepted Solution ...
    I worked for HP but now I'm retired!

  • Can't print from XP mode unless it's attached to the VM

    I've followed the insructions here:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/how-do-i-install-a-printer-in-xp-mode/9dc7f464-2bea-42d1-9c45-dea8e039ecd5
    I have a Windows 7 Professional machine that our building management guy uses.  The software our system uses has not yet been updated to a Windows 7 compatible version so I've set up XP mode on his machine, installing the software in that VM.
    He is using an HP LaserJet 1300 printer connected via USB.  I've followed the instructions at the link above, however after removing the USB printer from the VM (putting it in Shared mode) and restarting the VM I can no longer print to the printer.  I
    don't believe it's a driver issue as if I reattach the printer to the VM I can print fine (but Windows 7 can't).  If I move it back to Shared status then Windows 7 can print to it but the XP Mode VM can't.  Is there a step I'm missing somewhere?
    Thanks in advance.

    Hi,
    As I know, if you have USB based printer, you can install driver inside VM and use it directly. If your printer is available to Windows 7, it will be shared automatically
    I have noticed that some USB devices just don't work well from XP mode if the printer driver is not installed correctly. If your guest operating system is Windows XP, you must manually install the printer driver for each printer.
    Please install the printer driver in XP mode.
    Furthermore, you can refer this link to configure a network printer for a virtual machine.
    Scenario 3: Print from a virtual machine.
    http://technet.microsoft.com/en-us/library/dd744684(WS.10).aspx
    Hope it helps.
    Regards,
    Blair Deng
    Blair Deng
    TechNet Community Support

  • LaserJet 1200 Econo Mode 300 dpi 600 dpi

    I just got a new HP tower, and when I hooked up the Laserjet 1200 series printer, It's printing very dark. I went into the control panel, as I had done in the past, and it doesn't show the economode tab for the toner, it says 300 dpi, 600 dpi, I've tried both and they both seem the same, not like the old economode. Please, can you tell me what is the best way to save toner. I do a lot of printing, and LOVE the Laserjet, I actually have two of them,  PS, Just got the hp p6110y tower- It's awesome.
    I thank you in advance for any assistance you might offer.

    Hi , I see by your post that you are unable to set the Econo mode and Print Density on the printer. I would like to help you.
    Did you download and install the latest HP LaserJet Pro Series Full Solution Software and Driver? Check Devices and Printers window and let me know how the printer name is listed. Can you send me a screen shot of the printer Properties please, so I can have a look at it. You could install a separate Universal driver for printing and you should have all the available options. Then the original driver can be used for scanning, just don't delete it from the Devices and Printers window. HP Universal Print Driver for Windows PCL6 (32-bit). If you appreciate my efforts, please click the 'Thumbs up' button below. Thank You.
       

  • Network printer no longer printing double sided

    I've recently set up my airport extreme (AE) base station in bridge mode with my Verizon fios wireless router. I also have an airport express connected to a Brother laser printer via USB. The AE is getting ip addresses from the Verizon router, and I have not yet turned off any wireless signals, so both routers are sending out a signal. In this configuration, I can still send print jobs to my laser printer fine, but the printer no longer prints double sided even when the print settings are set to do so. I've also noticed that I can no longer see the printer status when I open up the specific printer app. for that printer. All of this was possible over my wireless network when I was running a simple cable modem to the AE and the AE was the only router in the house. Could this problem be caused by having two wireless antennas running at the same time or does this sound like another problem?

    To try... set a different printer as the default, and have the network printer as non-default selection
    Some other reading
    Printer is Crash Problem http://forums.adobe.com/thread/720864?tstart=0

  • MFP M176n Printing Cool-down mode problem

    I just boughjt a HP color laser jet pro MFP M176n which has now is  always show 'printing cool-down mode' after a few pages prinitng. It's too long to complete the printing work. Appreciated if you could help solve the issue urgently. i tried all the above suggested solution , i am desperate,please send me the private message as you did to others ,i need a workable solution  or i may have to return printer

    Hi @xpresscomputer, I understand that you are getting a "Cool-down" error. I would be happy to help you. I wasn't sure what steps you have tried so far, so I am providing all the steps to see if it will help resolve the issue and I can send you that information in a private message. In the forum beside your handle name just click on the envelope to view it. I have provided a document with Resolving Control Panel Messages. Make sure the printer is connected directly to a wall outlet. (don't use a power hub or a surge protector) This ensures the printer is receiving full power and may help this situation. Update the printer's firmware. Software and Driver Downloads. If the issue continues, please call our technical support at 800-474-6836 for further assistance. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html Have a nice day!
    Thank You.

  • Why can I no longer Print anything from Firefox after installing 28.0?

    Since upgrading to 28.0, I can no longer print anything from within the Firefox browser. My other applications continue to print normally, but whenever I try to print anything from Firefox, I get a "A print error has occurred" message. The Print Preview page displays only a blank, gray window. Prior to upgrading I had no problems.

    Can you try to access Firefox in Safe Mode to see if the problem still exists and/or if it opens? You can follow the below instructions to start it in that mode.
    *Go to Help > Restart with add-ons disabled
    *When Firefox closes and re-opens, select ''Start in Safe Mode''
    If Firefox works fine after starting in Safe Mode, then it's most likely one of your extensions misbehaving. You can enable your add-ons back on by one until you find the conflicting extension.

  • Printing in draft mode from Windows

    I locked the com.apple.print.custompresets.plist file so that my printer always use my Draft preset. On Mac OS X, everything is fine but the problem is when I print from my Windows PC (which is in my home network).
    To make the printer work on Windows, I followed the steps on this tutorial:
    http://www.ifelix.net/tech/3012.html
    As the author notes, I used the Apple drivers since my printer isn't post script.
    The printer is working from Windows, but since I'm not using the HP driver, I can't set the printer to draft mode.
    Any ideas?

    Well, you're right, I couldn't get it to work, either (sorry it took so long, I had to wait until I got home to try).
    But I can get it to work by setting up a RAW queue on my Mac (which allows me to use the correct model driver on the PC). RAW means the Mac just acts as a print server and passes the input to the output - without filtering/translating.
    http://discussions.apple.com/thread.jspa?messageID=3296897

Maybe you are looking for

  • ITunes won't let me download SD version of TV shows on my iPod Touch when I am a HD season pass holder

    Hello, I have the 4th gen iPod Touch and I purchased the HD season pass for Supernatural Season 8 from iTunes on my computer. I downloaded the HD version of the Comic-Con 2012 Supernatural Panel, which was part of my season pass, to my computer. As a

  • Packages Into Sql 2008 Executing By SSIS 2005

    Hy Guys , I have a environment Sql 2005 that all was migrated to Sql 2008r2 except SSIS Instance  .  So I migrated all packages of Old Instance to New Instance , Configure MsDtsSrv.ini/xml to new Instance and i am able to Connect By Sql SSMS   ( 2005

  • Cisco 1524 Aironet Outdoor Wi Fi Access Points

    I am using Cisco 1524 Aironet Outdoor Wi Fi Access Points for outdoor Wi-Fi Coverage with WiSM Controller. I want to cascade Bridge them with UTP/STP Cables instead of using MESH using the Ethernet Bridging Function inside the controller. But I canno

  • How to run Reports demos?

    I finally got everything installed and I'm trying to run the Reports demos off of the mid-tier web site. when I click on the jsp report demo it brings up the parameter page. I just use the defaults and click the run button. when I do that it asks me

  • BAPI or RFM for Travel & Expenses Data (TRIP)

    Hi, I need a RFM OR BAPI for travel and expenses where the input will be only personal no.It should display all the trip data Thanks in Advance Hema