MP610 U052 error. How do I fix it

MP610 U052 error.  How do I fix it!

Hi Andrea,
Error U052 is a printhead error. Some solutions here:
http://fix-your-printer.blogspot.fr/2010/11/error-u052-on-canon-printers.html

Similar Messages

  • When ever i try to update my ipod 4g  i get the 3194 error how do i fix and network settings error?

    when ever i try to update my ipod 4g  i get the 3194 error how do i fix and network settings error?when ever i try to update my ipod 4g  i get the 3194 error how do i fix and network settings error?

    mine did the same thing but i got the error 9 and dont know what to do

  • 5599 Home Sharing Error - how do I fix it?

    5599 Home Sharing Error - how do I fix it?

    Hey there Doug,
    If you are still getting this error code when trying to use Home Sharing, I would recommend the troubleshooting steps 4-8 from the following article, named:
    Troubleshooting Home Sharing
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • I made a mistake by saving a web page and moving it to ical on my mac air. now i can open ical but cant access it as it says i have a systems error . how do i fix it ?

    i made a mistake by saving a web page and moving it to ical on my mac air. now i can open ical but cant access it as it says i have a systems error . how do i fix it ?

    Changing body text is not simple. It's a desperate last resort. You need to buy the exact font. Acrobat will not let you edit in a font you don't own. Even then, it's undertain. Consider preparing an overlay in InDesign.

  • My iphone5s is dead...plugged it into computer to charge, and it says "internal device error" how can i fix....i already tried plugging it into all other ports

    my iphone5s is dead...plugged it into computer to charge, and it says "internal device error" how can i fix....i already tried plugging it into all other ports

    tried another computer?
    if it works there then your itunes install have gotten defect

  • Socket error.How do I fix this

    Hello all,
    I tried running this cleint server program that I built.This is the error I get.How do I fix this.
    The exception in thread isjava.net.SocketException: Software caused connection abort: recv failed
    Code is posted below.
    Thanks.
    Regards.
    nitin.p
    Clent code
    try{
           Socket ClientSocket=new Socket("localhost",4444);
          ObjectOutputStream out=new ObjectOutputStream(ClientSocket.getOutputStream());
          out.writeObject(p);
          out.flush();
          out.close();
          Object incoming_info;
          ObjectInputStream in=new ObjectInputStream(ClientSocket.getInputStream());
          incoming_info=in.readObject();
          System.out.println("Incoming info"+incoming_info);
          in.close();
       ClientSocket.close();
        }Server code
    package ajp;
    import java.net.*;
    import java.io.*;
    import java.security.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.sql.*;
    public class agpt extends Thread
      private Socket clSocket;
      private String id;
      private byte[] passwd;
      public agpt(Socket clientSocket)
        clSocket = clientSocket;
      public void run()
        try
          ObjectInputStream in = null;
          in = new ObjectInputStream(clSocket.getInputStream());
           ObjectOutputStream out = null;
           out = new ObjectOutputStream(clSocket.getOutputStream());
          Object zz="dkjsdkjsdksdj";
          out.flush();
          String res = "";
          //ObjectOutputStream out = null;
          //out = new ObjectOutputStream(clSocket.getOutputStream());
          Object temp = in.readObject();
         // in.close();
          System.out.println("I am in thread");
          String operation = ( (Protocol) temp).get_operation_name();
          System.out.println(operation);
                statement.executeUpdate("CREATE TABLE TABLE1 (" +
                                 "Username   VARCHAR (20)  NOT NULL, " +
                                   "Password   VARCHAR (20) NOT NULL, " +
                                 "PRIMARY KEY( Username)" + ")");
          if (operation.equals("register"))
            id = ( (Protocol) temp).get_user_id();
            System.out.println("Id is" + id);
            passwd = ( (Protocol) temp).get_user_password();
            System.out.println("paxxwd" + passwd);
            String original = new String("UTF8");
            original = passwd.toString();
            Protocol pmess = new Protocol();
            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            Connection conn = DriverManager.getConnection("jdbc:odbc:mage");
            Statement statement = conn.createStatement(ResultSet.
              TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE);
            System.out.println("*****");
            ResultSet result = statement.executeQuery("SELECT * FROM TABLE1");
            while (result.next())
              if (result.getString("Username").compareTo(id) == 0)
                pmess.set_message("ID already exists please enter new");
            if (res.equals(""))
              PreparedStatement stmt = conn.prepareStatement(
                "INSERT INTO TABLE1 VALUES(?,?)");
              stmt.setString(1, id);
              stmt.setString(2, original);
              stmt.executeUpdate();
              System.out.println("I am in res");
              pmess.set_message("Registration done successfully");
            result.close();
            statement.close();
    System.out.println("I reached here");
            out.writeObject(zz);
            out.close();
            in.close();
             conn.close();
            clSocket.close();
        catch (Exception e)
          System.out.println("The exception in thread is" + e);

    in the client codes, try closing the output stream later, after in.readObject()

  • My phone has no service because it keeps saying there is a SIM card error - How do I fix this problem?.

    Mutt phone keeps saying no service because of a SIM card error?  What does that mean and how do I fix it?  It has done it twice I today's now and it very frustrating as I cannot make any calls.

    Try reseating the SIM card or replacing it.

  • I recive 1009 error , how can I fix it?

    How I can fix this error 1009 ???

    You could try searching
    If that doesn't help post in the correct forum for your equipment or OS (this one is about using Discussions, not for technical queries).
    Give details of your equipment and OS and say when you get that error message.

  • Everytime I try to update or redownload itunes i get the %appdata% error. how do i fix this so i can download itunes again.

    how do i fix this . easy steps please. Sorry I just keep having trouble with this and im getting very frustrated.

    With that particular variety of 1606 (it's a 1606 error message even though the 1606 error message number isn't returned by the iTunes installer), cassi, the following Microsoft document is worth a try:
    You receive an "Error 1606" error message when you try to install or remove a Microsoft program

  • Am getting this error, how do I fix it?

    I just got handed this java program and am having difficulty running. I have no idea of java and am thining this error could be something simple and members may be able to help me.
    Error:
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException:String index out of range :6
    at java.lang.String.substring (string.java:1441)
    at edicleanargs.main(edicleanargs.java.54)
    The Java code is:
    import java.io.*;
    import java.lang.String.*;
    public class edicleanargs
    public static void main(String args[]) throws IOException
    BufferedReader fl= new BufferedReader(new InputStreamReader(System.in));
    // System.out.print("\nEnter EDI File Name : ");
    // s= fl.readLine();
    // try {
    BufferedReader br= new BufferedReader(new FileReader(args[0]));
    // BufferedReader br= new BufferedReader(new FileReader(s));
    // ** ** isacnt \\
    String text="";
    int i=0, xx, rno=0, llen, cnt=0;
    while((text= br.readLine())!=null)
    if(text.equals(""))
    continue;
    rno++;
    llen= text.length();
    i++;
    xx=0;
    if(text.length() >2)
    if ((text.substring(xx, xx+3)).equals("ISA") && (text.substring(xx+4, xx+6).equals("00")))
    cnt++;
    System.out.println("\n Rows to be Processed: "+ rno+ " \n\nNo of Expected Records : "+ cnt );
    // ** ** isacnt //
    String waas="";
    BufferedReader wa= new BufferedReader(new InputStreamReader(System.in));
    System.out.print("\nHit ONLY ENTER key to Continue....");
    waas= wa.readLine();
    String fname = "";
    // String text = new String();
    String text2 = new String();
    String sttr1="";
    String sttr2="", sttr21="", sttr22="";
    String stn= "";
    String s="", smisc="-";
    int flagst=0;
    i=0;
    int recordno=0;
    llen=0;
    int n210=0, n212=0, n214=0, n223=0, n810=0, n856=0, n997=0, nmisc=0;
    xx=0;
    br= new BufferedReader(new FileReader(args[0]));
    while((text= br.readLine())!=null)
    if(text.equals(""))
    continue;
    System.out.println(++recordno);
    if(text.equals("THEND"))
    break;
    llen= text.length();
    if(llen < 16)
    FileWriter outfile = new FileWriter("WkFile_"+ args[1]+ ".edi", true);
    outfile.write(text);
    outfile.close();
    else
    sttr21="";
    sttr22="";
    for(int si=0; si<= llen-6; si++)
         sttr2=text.substring(si, si+3);
              if(sttr2.equals("ISA") && (text.substring(si+4, si+6)).equals("00"))
              sttr21= text.substring(0, si);
              sttr22= text.substring(si, llen);
              text= sttr21;
              break;
    } // for
    FileWriter outfile = new FileWriter("WkFile_"+ args[1]+ ".edi", true);
    outfile.write("\n"+text);
    if(!sttr22.equals(""))
    outfile.write("\n"+sttr22);
    outfile.close();
    } // else
    } // while not next.record=null
    System.out.println("\n--------------------------- Done --------------------------------");
    br.close();
    // }catch (FileNotFoundException fnf)
    // { System.out.println("\n\nError in FileName Encountered.\nIf FileName entered then File Not Found OR \nNot able to create //file //with above FileNmme. Exiting Program...\n");}
    } // public s v main
    } // public class
    Your kind help would be very much appreciated. Please guide me so that I can fix the program and execute this program.

    Thank you nerak99. I figured based on the executable batch file that it takes two inputs and I know what to provide. The first input is the file name and second input is the week number(like 10,11,12 etc)
    I was told that this java program takes an edi file and cleans it up and generates an output file thats clean. Hope that helps. But could you point to what may be the problem with the code and how I can fix that. It appears that some variable needs to defined differently and as such am getting the out of bound exception. Can you please help me?

  • I just got the 7.0.3 upgrade and my phone is locked on a black screen with a blue itunes circle and the end of a usb cord on it. i assumed this meant sync with itunes which i tried and pressed reset and itunes says theres an error how do i fix this

    my iphone is locked and i cant get itunes to connect with it. how do i fix it or do i need to take it to at&t. this all started with getting the new upgrade.

    Hi mfowens10,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    You might need to use recovery mode if:
    You can't update or restore because iTunes doesn't recognize your device or says it's "in recovery mode".
    The Apple logo remains onscreen for several minutes with no progress bar.
    The Connect to iTunes screen appears.
    Cheers,
    - Judy

  • Web sites display this error, how do I fix it? " type="text/javascript"

    Vista OS
    Firefox 5.0.1
    Recently had hard drive crash. Reinstalled everything. Now Firefox gives the following message on many sites.
    ''''''" type="text/javascript"> '''''' What can I do to resolve this?

    Thank you nerak99. I figured based on the executable batch file that it takes two inputs and I know what to provide. The first input is the file name and second input is the week number(like 10,11,12 etc)
    I was told that this java program takes an edi file and cleans it up and generates an output file thats clean. Hope that helps. But could you point to what may be the problem with the code and how I can fix that. It appears that some variable needs to defined differently and as such am getting the out of bound exception. Can you please help me?

  • Disk error - How do I fix this?

    I was running Onyx, and while verifying the HDD, it told me I had an error on the startup disk and needed to run Disk Utility off of the CD to fix it. I ran the utility while in OSX (not the CD) and it says this:
    Verifying volume “Macintosh HD”
    Checking HFS Plus volume.
    Checking Extents Overflow file.
    Checking Catalog file.
    Checking multi-linked files.
    Checking Catalog hierarchy.
    Checking Extended Attributes file.
    Checking volume bitmap.
    Checking volume information.
    Volume Header needs minor repair
    The volume Macintosh HD needs to be repaired.
    Error: The underlying task reported failure on exit
    1 HFS volume checked
    Volume needs repair
    I do not want to mess anything up. I have heard the Disk Utility on the CD/DvD is either old or has problems. SO i just need to know for sure how to fix this.
    Thanks for the help!
    MacBook Pro   Mac OS X (10.4.9)  

    As long as it is a MacBook Pro labelled DVD analyzing a MacBook Pro, Disk Utility should be fine as far as analyzing basic directory structure issues with the Repair Disk and Verify Disk functions. I say basic, because Alsoft Disk Warrior when it repairs the disk directory is much more thorough in its efforts to construct a brand new directory to replace one which is damaged than Disk Utility or fsck. Regardless of the method used, directory damage can have the same symptoms as a dying hard drive. Even a modern MacBook Pro is not immune from its drive dying quickly. And since repairing the directory is a much more invasive routine than pure data recovery, I only recommend fixing the directory on a machine that has been backed up, or you have at least attempted a data recovery with Prosoft Data Rescue.

  • TS1424 Hi guys I'm playing kings of Camelot and I'm trying to purchase gems in the game but every time I try it come up with connect iTunes error how do I fix it I have purchases 2 $30 iTunes cards but I carnt use them it's getting very annoying thanks

    Hi guys I'm playing kings of Camelot and I'm trying to purchase gems inside the game but it comes up with connect iTunes error could you please help to fix this problem it's getting very annoying cause I just went out and brought a $60 iTunes card

    Ok, thanks that helps. I don't have an external hard drive though. What about backing up through 'the cloud'? I'm just wondering since my husband syncs his iPod to the PC through iTunes and he's worried that he will lose all the songs on his iPod if the library is lost from iTunes and he tries to 'sync' it up again. I'm not exactly sure how to  'copy the entire iTunes folder' either. I kinda suck at this unless I have step by step instructions, which I haven't found yet on iTunes help or other sources.
    The only way I know how to back anything up is by going back to a restore point, etc. (as stated before, we don't have an external hard drive.)
    Thanks for the info.

  • Windows won't start - API error - how do I fix?

    Hi all, I suspect I ran out of space on my Windows partition and now I have this error that will not allow me to boot into Windows.
    Could someone please tell me how to fix this, or how to go into Windows from within OSX (where the **** IS Windows in there?)so I can delete some unneeded files in the Windows partition?
    Thanks so much in advance,
    D

    Spookola wrote:
    Hi all, I suspect I ran out of space on my Windows partition and now I have this error that will not allow me to boot into Windows.
    You need to supply more data on this error.
    Could someone please tell me how to fix this, or how to go into Windows from within OSX (where the **** IS Windows in there?)so I can delete some unneeded files in the Windows partition?
    Thanks so much in advance,
    D
    Typically you should not delete files outside of Winders unless they are simply data files or you can corrupt the Winders system registry. You should always use the winders "Add/Remove Programs" in the Control Panel.
    Until you tell us what the message is about not booting into winders, nobody can really help you.

Maybe you are looking for

  • How to decide the last page in smartforms

    Hi experts, I want to display a signature block only in the last page, can anybody tells me the perfect way to decide when it's the last page? Now I'm using a window with the check EVENT "Only Before End of Main Window", a flag is set in this window,

  • My daughter has disabled her ipad, i cant find it in any itunes library to back up.  How do I fix it

    my daughter has disabled her ipad2.  i cant find it synced with any of our tunes libraries.  She doesn't know if she has backed it up.  How do i fix?

  • Adding a computation in my form

    Hello Experts from around the world :) Well i am having this challenge and i cant get my head around it at the moment. I have to create a computation as follows: i have a field that i have to enter values (field A) then another field that will have t

  • SLIDESHOW....not happy with quality...how can I fix these issues?

    I just finished up a 16 minute slideshow for a client. I used FCP and Motion 3 to create it. I used the same export settings I would use for a video project. I noticed that all pictures that had any kind of movement to it, had noticeable interlaced l

  • Forms 6i Help

    I am using 6i builder and runtime. I can successfully compile forms in builder, but when I use runtime I get GetRegString = -304500. This happens at other machines as well and to forms that I know are working. What have I done wrong? I suspect that I