Deskjet 1050 ink light flashes cannot find a problem

Every so often for no apparent reason ink lights flash and printer stops printing. In the past I have solved this problem by turning printer off and leaving untill it decides to operate. This time it is not working.
DESKJET 1050 ALL-IN-ONE J410 SERIES

The Blinking Lights document, describes conditions causing the error states, and may provide some help for you:
http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02061335&tmp_task=solveCategory&cc=us&dlc=en&la...
007OHMSS
I was a support engineer for HP.
If the advice resolved the situation, please mark it as a solution. Thank you.

Similar Messages

  • F2280 Both Ink lights flash with cartridge in or not!

    Hi there,
    The printer is claiming an Ink failure Error (E is showing and both ink lights flashing)
    I tried cleaning the contacts. Tried turning off with power cable out.
    Tried removing catridge and plugging in and the 2 lights still flash showing E!
    Please help
    Thank you

    Hi there Jane
    There's a link below with troubleshooting steps for blinking lights on DJ F2280 that might be worth checking out.....
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&lc=en&dlc=en&docname=c01430567
    Ciara
    Although I am an HP employee, I am speaking for myself and not for HP.
    Twitter: @Ciara_B_HP

  • Windows cannot find (null) problem - firefox wont start? help!

    ive just got a 'windows cannot find (null)' problem when staritng Firefox; being using it for years no problem but cannot open it now. tried removing and reinstalling, still get the message.
    any ideas what I can do??
    == This happened ==
    Every time Firefox opened
    == 20 June 2010 ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; GTB0.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    Yesterday after posting my problem I consulted a computer programmer. He advised me to follow the pathway C:\\users|richard\....... from Explorer to the extension and delete it. Worst case scenario would be to uninstall and reinstall Firefox. I deleted it and the unresponsive script and warning disappeared without any other complications.

  • Ink light flashes and it just won't print Deskjet 5150

    Hi all,
    I have a deskjet 5150 and just had the printer cartriges refilled at a local shop here in my area. Since I have done that and before I did that, I have had problems printing. Sometimes it would help if I disconnected the usb cable and plugged it back in. Then the document would print. Lately, all that I get is a blinking ink light on the printer. Everytime I try to print, the computer just tells me that there has been a problem with printing. 
    Any ideas?

    Which light is blinking?  Are there any error messages on the computer?  Try printing with just a color cartridge installed, then with just a black cartridge.  The one that does not work is the problem cartridge, try removing it and cleaning the cartridge contacts as shown here.
    Regards,
    Bob Headrick, Microsoft MVP Printing/Imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Xerces cannot find symbol problem

    In my program I get an Xml from an exist database and want to place it in the hard drive.
    I have made the xerces imports I need:
    import org.apache.xerces.domx.XGrammarWriter.OutputFormat;
    import org.apache.xml.serialize.XMLSerializer;I have the jar on my classpath.and the code I am getting trouble with is:
    OutputFormat format = new OutputFormat(doc2);
                        format.setIndenting(true);
                        XMLSerializer serializer = new XMLSerializer(new FileOutputStream(new File("C:\\Configuration\\XmlCopy.xml")), format);I get the following errors
    C:\.....\Wizard1.java:2946: cannot find symbol
    symbol  : constructor OutputFormat(org.w3c.dom.Document)
    location: class org.apache.xerces.domx.XGrammarWriter.OutputFormat
                        OutputFormat format = new OutputFormat(doc2);
    C:\.....\Wizard1.java:2947: cannot find symbol
    symbol  : method setIndenting(boolean)
    location: class org.apache.xerces.domx.XGrammarWriter.OutputFormat
                        format.setIndenting(true);
    C:\....\Wizard1.java:2948: cannot find symbol
    symbol  : constructor XMLSerializer(java.io.FileOutputStream,org.apache.xerces.domx.XGrammarWriter.OutputFormat)
    location: class org.apache.xml.serialize.XMLSerializer
                        XMLSerializer serializer = new XMLSerializer(new FileOutputStream(new File("C:\\Configuration\\XmlCopy.xml")), format);Any ideas about what I'm doing wrong?

    StruL wrote:
    Instead of GrammarWriter.OutPutFormat.class it says GrammarWriter$OutPutFormat.class.
    relevant or plain stupid?
    Neither really,
    GrammarWriter.OutPutFormat is the name of the class,
    GrammarWriter$OutPutFormat.class is the file into which the class is stored.
    As to you problem the error messages you posted referred to
    C:\.....\Wizard1.java:2946: cannot find symbol
    symbol  : constructor OutputFormat(org.w3c.dom.Document)
    location: class org.apache.xerces.domx.XGrammarWriter.OutputFormatnote dom*x* and XGrammarWriter ,
    this is not the same as dom.GrammarWriter...

  • Java code Cannot find symbol problem

    I'm triing to compile three classes they are in the same directory yet it still says Cannot find symbol I can't find any thing in the spelling...
    file #1
    package banking;
    import java.util.*;
    public class Bank {
         private ArrayList<Account> accounts = new ArrayList<Account>();
         private int numOfCust;
         public void addCustomer(String fName, String lName){
              numOfCust += 1;
              accounts.add(Customer(fName, lName));
         public int getNumOfCustomers(){
              return numOfCust;
         public Account getCustomer(int custNum){
              return accounts.get(custNum);
    }Next Class used in above:
    package banking;
    public class Account {
         private double balance;
         public Account(double init_balance){
              balance = init_balance;
         public double getBalance(){
              return balance;
         public boolean deposit(double amount){
              if (amount < 0)
                   return false;
              else
                   balance += amount;
                   return true;
         public boolean withdraw(double amount){
              if (balance < amount)
                   return false;
              else
                   balance -= amount;
                   return true;
    }The last class:
    package banking;
    public class Customer {
         private String firstName;
         private String lastName;
         private Account account;
         public Customer(String fName, String lName){
              firstName = fName;
              lastName = lName;
         public String getFirstName(){
              return firstName;
         public String getLastName(){
              return lastName;
         public Account getAccount(){
              return account;
         public Account setAccount(Account acct){
              account = acct;
              return account;
    }

    here are the errors it gives..
    it is an assignment in a java class..
    OO-Programming methods..
    C:\JavaProgs\banking>javac Bank.java
    Bank.java:8: cannot find symbol
    symbol : class Account
    location: class banking.Bank
    private ArrayList<Account> accounts = new ArrayList<Account>();
    ^
    Bank.java:20: cannot find symbol
    symbol : class Account
    location: class banking.Bank
    public Account getCustomer(int custNum){
    ^
    Bank.java:8: cannot find symbol
    symbol : class Account
    location: class banking.Bank
    private ArrayList<Account> accounts = new ArrayList<Account>();
    ^
    Bank.java:13: cannot find symbol
    symbol : method Customer(java.lang.String,java.lang.String)
    location: class banking.Bank
    accounts.add(Customer(fName, lName));
    ^
    4 errors

  • How to solve the Cannot find oraInventory problem in R12 installation.

    I search many places to find this so, i decided to shared for hopl anyone else.
    The note Rw-10003 During Rapidwiz Upgrade Install [ID 1266385.1] tell how to solved, crating the oraInst.loc file, but it miss something important, where I have to put it in the oraInst.loc file ? Fortunately, i have accses to others DB where look. You have to cretate the file in the /etc directory. Follows this steps.
    1.- Go to the main directory where you gonna install the R12 app and create the follow directory
    oraInventory
    in my case was /u01/hab_r12/oraInventory
    2.- Go to /etc and create a text file with the name OraInst.loc and put this lines
    inventory_loc=/u01/hab_r12/oraInventory*
    inst_group=dba**
    *you must put the root directory of the installation
    ** the group who have the privilege in DB
    3.- Re run the rapidinstall.
    I hope this can help someone.
    Cheers.

    Hi;
    In addition to Hussein Sawwan great post, Please refer:
    R12 Insllation Fails With Error "Cannot Find Orainventory" [ID 1281649.1]
    How to Create a Clean oraInventory in Release 12 [ID 834894.1]
    How to find the location of GLOBAL Inventory and LOCAL inventory on R12.x ? Why Some Times, There are Issues With The oraInventory Registration During The Post Clone ? [ID 878717.1]
    Regard

  • My Macbook pro, (late 2010) sometimes will sleep and won't wake up. then the sleep light flashes.What's the problem?

    My Macbook pro, (late 2010) sometimes will sleep and won't wake up. then the sleep light flashes.What's the problem

    Hi I've been following this thread (along with a different one on the same topic). I've been having the same problem with my ibook. I can add that I have no problem with startup. It's just that the screen "goes to sleep" unexpectedly and may operate normally for a few minutes or a few hours at most. Opening and closing the lid or restarting seems to cause it to awaken but then usually for just a few seconds or minutes. If it is connected to another video display that display continues functioning fine even though the computer screen is blank. In addition the desktop is there and visible faintly or if totally blank can be backlit through the apple logo and can be read. I've had my logic board replaced twice under the extended warranty and assumed it was that but now I'm thinking of the reed switch. Apple refuses to consider any further work under warranty as the last repair was in Jan, 06 and they claim only a 90 parts warranty and the machine is from 03. Any thoughts before I cut the wires? I have reset the pmu, run cocktail and disk utility. Other than the sleep issue the machine works fine. thanks Ronda or anyone else who has any ideas... Dave

  • CP1215 Ink Lights Flashing

    This color laserjet has 4 ink cartridges.  The lights for yellow and blue are flashing. It does not allow any more printing even if I only want to print black and white.  Any idea if I can reset the lights.  I`ve tried on off switch.  Thanks

    What printer do you have?  Every printer is a little bit different and will likely have different steps to resolve.
    Say Thanks by clicking the Kudos thumbs up. Please mark the post that solves your problem as an Accepted Solution so other forum users can utilize the solution.
    I am an HP employee.

  • WRT350N Cannot Find File Problem

    Hey Guys,
    I'm new to this forum and I am having a problem with my router and the usb drive. I currently have a 250gb WD Mybook hooked up to the wrt350n and i created the partition in the gui of the router. I created a share and set up the permissions, but when i try to drag a file into the folder that I am sharing on the drive, it says "Could not find this item" it does it with every file I try to copy over. The file system is fat32. It doesn't matter the size of the file or extension. I am currently on Windows Vista Ultimate and I also tried the method where you switch the setting in local security policy Network Security LAN Manager authentication level to Send LM & NTLM –use NTLMv2 session security if negotiated and still no luck Its driving me crazy. Any help would be appreciated.
    Thanks

    I don’t see any reason why it do that if you have created proper shares and also assigned proper rights to it. I would suggest you to upgrade or re-flash the latest firmware on this NSLU2, reset it and reconfigure it. Let me know if it works.

  • Function module throwing error from work area. Cannot find the problem...

    REPORT  ZPSMARTFORM1.
    tables: zptable1.
    types: begin of ty_zptable1,
          f1 type zf1,
          f2 type zf2,
          f3 type zf3,
    end of ty_zptable1.
    data: itab type table of ty_zptable1 with header line.
    data: wa type ty_zptable1.
    select f1 f2 f3 from zptable1 into table itab.
    CALL FUNCTION '/1BCDWB/SF00000005'
    EXPORTING
      ARCHIVE_INDEX              =
      ARCHIVE_INDEX_TAB          =
      ARCHIVE_PARAMETERS         =
      CONTROL_PARAMETERS         =
      MAIL_APPL_OBJ              =
      MAIL_RECIPIENT             =
      MAIL_SENDER                =
      OUTPUT_OPTIONS             =
      USER_SETTINGS              = 'X'
    IMPORTING
      DOCUMENT_OUTPUT_INFO       =
      JOB_OUTPUT_INFO            =
      JOB_OUTPUT_OPTIONS         =
      TABLES
        ITAB                       =   .
    EXCEPTIONS
      FORMATTING_ERROR           = 1
      INTERNAL_ERROR             = 2
      SEND_ERROR                 = 3
      USER_CANCELED              = 4
      OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    this is my driver program.In my form interface  there are tables,import,export are there where i have to declare tables data.If i am putting wa means it is throwing error.Please show me the clear information.
    Edited by: Julius Bussche on Nov 14, 2008 10:09 AM

    REPORT ZPSMARTFORM1.
    tables: zptable1.
    types: begin of ty_zptable1,
    f1 type zf1,
    f2 type zf2,
    f3 type zf3,
    end of ty_zptable1.
    data: itab type table of ty_zptable1 with header line.
    data: wa type ty_zptable1.
    select f1 f2 f3 from zptable1 into table itab.
    CALL FUNCTION '/1BCDWB/SF00000005'
    EXPORTING
    ARCHIVE_INDEX =
    ARCHIVE_INDEX_TAB =
    ARCHIVE_PARAMETERS =
    CONTROL_PARAMETERS =
    MAIL_APPL_OBJ =
    MAIL_RECIPIENT =
    MAIL_SENDER =
    OUTPUT_OPTIONS =
    USER_SETTINGS = 'X'
    IMPORTING
    DOCUMENT_OUTPUT_INFO =
    JOB_OUTPUT_INFO =
    JOB_OUTPUT_OPTIONS =
    TABLES
    ITAB = .
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5
    IF SY-SUBRC 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Plz for this driver program. Give me the exact solution.I am passing the information like itab  like zptable1 ther ein the smart form table. Even now i am getting error.Here in this driver program i passed itab = itab means .I  am not getting solution.If i have to change any function module name means plz tell me.What i have to put there.Plz give me the correct solution

  • Cannot find symbol class

    I am having a "Cannot find symbol" problem. My Java is a bit rusty so I'm not exactly sure what it could be. I have two classes, City and SisterCities. The SisterCities references the City class. The City class compiles fine. Both classes are part of the same package. However, when I compile SisterCities, I get the error. Could you please tell me how to get the second class to recognize the first (import, extends, not really sure. I've tried alot) Here are those two classes so far...
    ****** City ********
    package hw01;
    public class City
         public final String name;
         public final String country;
         public final City [] sisters;
    public City (String name, String country)
              // throw new RuntimeException ("Not implemented yet.");
              this.name = name;
              this.country = country;
              this.sisters = new City [0];
    public City (String name, String country, City [] sisters)
              // throw new RuntimeException ("Not implemented yet.");
              this.name = name;
              this.country = country;
              this.sisters = new City [sisters.length];
              for (int i = 0; i < sisters.length; i++) {
                   this.sisters[i] = sisters;
    public void setSisters (City [] sisters)
              // throw new RuntimeException ("Not implemented yet.");
              for (int i = 0; i < sisters.length; i++) {
                   this.sisters[i] = sisters[i];
    public String getName ()
              // throw new RuntimeException ("Not implemented yet.");
              return this.name;
    public String getCountry ()
              // throw new RuntimeException ("Not implemented yet.");
              return this.country;
    public City [] getSisters ()
              // throw new RuntimeException ("Not implemented yet.");
              return this.sisters;
    ******** SisterCities *********
    package hw01;
    import java.util.LinkedList;
    public class SisterCities
         public final LinkedList cityList;
    public SisterCities ()
              // throw new RuntimeException ("Not implemented yet.");
    public void addCity (City city)
              // throw new RuntimeException ("Not implemented yet.");
              this.cityList.add(city);
    public int getNumCities ()
              // throw new RuntimeException ("Not implemented yet.");
    public City getCity (int i)
              // throw new RuntimeException ("Not implemented yet.");

    final attribute members like "cityList" must be initialised when they're declared or inside the constructors
    if you want to compile, you'll also have to uncomment the "throws" in your methods (or return a value)
    (pay attention to the error messages the compiler gives you and paste them all when posting questions)

  • How do I resolve the "Mozilla cannot find runtime" error message when I try to start Firefox?

    Mozilla Firefox updated to version 36.0. When I click on the Firefox icon to open it I receive the message: "Mozilla cannot find runtime" I receive the same message if I try to open Firefox by selecting "firefox.exe" from within the Program Files. I subsequently uninstall Mozilla Firefox and reinstall it. It will open and run normally right after the re-installation. Then if I close the program and try to re-open it again, I get the same "Mozilla cannot find runtime" error message.
    The only way I can get Firefox to open is if I uninstall and re-install it every time I want to open it after the initial re-installation.

    ''sage68 [[#answer-700841|said]]''
    <blockquote>
    Hi Adriel,
    The "Mozilla cannot find runtime" problem has returned. It occurs in two situations:
    1. When Firefox tries to download updates using "updater.exe" (version 36.0.0.5531), which causes my "Norton Internet Security" program to notify me with the message: "Auto-Protect has removed security risk Suspicious.Cloud.9.B" This message is shown every time "updater.exe" activates.
    </blockquote>
    I also have experienced this during several upgrades, not just the latest. (I am using Windows XP and Norton Security Suite.) Norton identifies c:\program files\mozilla firefox\updated\xul.dll with the Suspicious.Cloud.9.B virus and removes the file. I can set the Norton installation to accept xul.dll but it would make more sense for a Mozilla expert to contact Norton and work out a permanent solution, for all who are facing this problem.

  • I don't have a ringtone when recieving calls to me on FacTime, I have checked my settings and cannot identify the problem

    I don't have a rintone when recieving calls to me on FaceTime, I have checked my setting but cannot find the problem? I have 3x iPads in the house and the other two operate normally....

    Are you checking "Mute" function? It's hide in bottom of screen.
    You can use four fingers slide up from bottom then slide to right side to see mute on/off.

  • Problems setting up my TC. Have just bought new iMac(OS 10.6.8) and  TC. I set it up. iMac cannot find it. I have tried direct connection with an ethernet cable to Mac or my wireless router but nothing. Just a flashing orange light. Help for a simpleton p

    Problems setting up my TC. Have just bought new iMac(OS 10.6.8) and  TC. I tried to set it up. iMac cannot find it. I have tried direct connection with an ethernet cable to Mac or direct to my wireless router but nothing. Just a flashing orange light. Help for a simpleton please. Have tried reseting TC, but to no avail.

    Just updated from 10.6.7 ---> 10.6.8 and had the same issue. Despite having done a clean install from 10.6 and got everything back off my TC, now Time Machine can't find it!
    Green light is on, ethernet cable conected, network CP says its conected but nothing. Airport Utility can't find it. Hit reset button, Orange flashing light but still no show in Airport Utility.
    But I know its there, as rebooting from 10.6 SL disk shows the backups are still ok?
    Hmm, ideas anyone?
    SBB

Maybe you are looking for

  • Crystal report print directly without crystal viewer

    HI ! In my addon i use Crystal Report. What would be the code i need to add if i want to print directly instead of having to go thru the crystal viewer. The crystal viewer gives me lots of problems with painting the screen when i move the form and it

  • Burn tool problem

    The burn tool is acting as a brush and leaving a series of circles any idea how to return it to normal please ?

  • 16:9 with added effects becomes 4:3 when I export it.

    I have recorded some footage in 16:9, imported it in iMovie HD, edited it, added some effects, and now I´m trying to export the project to my camera. The problem is only that the parts where I have added an effect turns into 4:3 once I export it. The

  • IOS 6 Buggy and Slow hot to downgrade.

    i recently updated to IOS6 the yesterday and it it running really slow on my iphone 4s also the phone is hot when running apps. maps is not working properly and text messages are failing and talking a long time to send/recive.icalled apple to be told

  • Wireless Network, 2 Mac Laptops, (Air and Pro) 2 different download speeds

    I have a (Frontier) 24 mbs DSL broadband plan, wired to my desktop, wireless for everything else in the house.  I get 24 mbs DL, 2 UL) over ethernet and (wirelessly) in every location in the house except for one room (or so I thought).  At first, I t