C4380 prints 3x times and in reverse order

I'm having some troubles with my HP C4380 all-in-one printer. It used to work well, both on two windows xp machines (one usb, the other wifi) and on linux (through wifi CUPS).
Now, when i try to print a document (e.g. 2 pages) it starts to print it 3x times (e.g. it prints 6 pages) and in reverse order (so it's actually printing pages 2-2-2-1-1-1). I get this behavior both on wifi and on usb machines. I didn't try Linux but i think it worked last time.
I tried to reinstall the drivers, but nothing changed.
This is a screenshot of the printer queue:
http://img9.imageshack.us/img9/9223/screen01v.jpg
Hints?
Message Edited by Patrizio on 04-04-2009 06:58 AM
Message Edited by Patrizio on 04-04-2009 07:01 AM

Hello there! Welcome to the forums @StudioPlayers !
Here is a guide to help you check and change your print settings in Windows 8: Changing Print Settings in Windows 8
If you're still unable to print your cheques correctly, please check out the QuickBooks Support Forums
I hope that helps, have an awesome weekend!
R a i n b o w 7000I work on behalf of HP
Click the “Kudos Thumbs Up" at the bottom of this post to say
“Thanks” for helping!
Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

Similar Messages

  • Trying to print the date arrays in reverse order....

    Hi,
    I'm trying to print the dates in the arrays in reverse order using the for loop, but its not working and i think ive got something in the wrong order perhaps the constructor or method. Or do i need to define 'a', because i tried it and i couldn't unless, probably because i was putting the wrong code for it.
    Thanks for your help
    public class Array
      public static void main(String[] args)
              a[0] = new Date(2, " January ", 2005)
              a[1] = new Date(3, " February ", 2005)
              a[2] = new Date(21, " March ", 2005)
              a[3] = new Date(28, " April ", 2005)
                                   printDate();
    class Date
      public int day;
      public String month;
      public int year;
      public Date(int d, String m, int y)
        day = d;
        month = m;
        year = y;
      public void printDate()
      for (int i = a.length - 1; i >= 0; i--)
                  System.out.println(a);

    I don't see where this 'a' variable is declared anywhere, so what did you expect it to do? Also, you can't just call Date's printDate method from your Array class like that. You really need to start with the java tutorials or take a course. The forums aren't going to effectively teach you the very basics.

  • Printing current time and date on a pdf document

    I wish for a pdf document to print the current time and date in the same place at the foot of each page, to the following format:
    Aug 04 2009, 5:11 pm.
    How do I do this please? Annoyingly I have managed it in the past, but when I open up my old documents and paste the relevant field into my new document, it either prints the old date/time or else prints the present date/time, but then doesn't refresh the next time I try to print - ie it stays at one date/time.
    I'd like to start again from scratch so that I have a better idea of how it works!!
    Regards
    Tony

    Eureka!
    I now have the answer, and hopefully this will help anybody else with a similar problem.
    In Acrobat:
    Create a text field and place it in the chosen place on the pdf form. Label it "datebox" in the General tab of Text Field Properties, and apply your character styles in the Appearance tab.
    Under the "Advanced" menu, go to "Document Processing" and then "Set Document Actions"
    Click on "Document Will Print" and then hit the "Edit" button. In the "JavaScript Editor" paste the following:
    var myfield=getField("datebox");
    var date=new Date();
    date=util.printd("mmm dd yyyy, h:MM tt", date);
    myfield.value=date;
    Hit OK.
    You have now given the instruction that whenever you print, the field named "datebox" will print the current time and date in the following format:
    Aug 05 2009, 9.37 am
    Regards
    Tony

  • Abap report print logo or image in reverse order

    Dear all,
    Currently we are using sap enterprise 4.7 . in our abap report sap report and data is OK but log is print in reverse in  HP LaserJet p255d and  HP LaserJet p250 series PCL 6.
    But same report in hp leaser jet 1320 run ok in SWIN driver.
    I change the driverson output dvice in sap but result is same how can I update or install  print driver that can be I see in SPAD --> output device --> device type
    thanks
    Shahid

    Hi,
    please check this [LINK|http://sap.ittoolbox.com/groups/technical-functional/sap-basis/how-to-install-new-printer-drivers-in-sap-1262490?cv=expanded] and SAP Note : 8928
    Regards,
    Srinu

  • The file iTunes Library.itl cannot be read because it was created by a newer version of iTunes.  I have removed iTune n the all the relevent apple programs and Quick time and in the order suggested , and reinstalled Quick time n iTunes  and back to square

    I have un installed and installed itunes and quick many times in the order suggested and stioll get the message " The file iTunes Library.itl cannot be read ecause it was created by a newer version of itunes.     Please please help  i have tried everything  for the past 3 weeks.    HELP ME PLEASE SOMEONE

    See Empty/corrupt iTunes library after upgrade/crash.
    tt2

  • Commands to Print Word Document in Reverse Order and Only Evens or Odds

    I have an HP Photosmart printer that doesn’t have automatic duplex printing, so instead of manually printing the odds and then flipping the paper and printing the evens, I decided to write a script (I’m very new to script writing, so go easy on me):
    tell application "Microsoft Word"
    print out active document print out page type print odd pages only
    end tell
    display dialog "After the papers finish printing and after you place the papers back into the printer, rotated 180º, click OK." buttons {"OK"} ¬
    default button "OK" with icon note
    set the user_choice to the button returned of the result
    if the user_choice is "OK" then
    tell application "Microsoft Word"
    print out active document print out page type print even pages only
    end tell
    end if
    The only things that are working are the printing and the dialog box. The odd pages and even pages scripts don’t seem to work (though I read this passage from Guy Hart-Davis’s +AppleScript: A Beginner’s Guide+ http://books.google.com/books?id=9uBeokAwNLsC&lpg=PA303&ots=ICfmxTfG-W&dq=apple% 20script%20print%20odd%20number%20pages&pg=PA303#v=onepage&q&f=false) and I can’t find any command that will print my even pages in a reverse order. Any help would be so much appreciated.
    Message was edited by: mattshank

    I believe I got the script to print the second round in reverse order, but I still can’t get it to print odd pages only and even pages only.
    tell application "Microsoft Word"
    print out active document
    end tell
    display dialog "After the papers finish printing and after you place the papers back into the printer, rotated 180º, click OK." buttons {"OK"} ¬
    default button "OK" with icon note
    set the user_choice to the button returned of the result
    if the user_choice is "OK" then
    tell application "Microsoft Word"
    print with properties {print reverse}
    end tell
    end if

  • HP Photosmart Premium C310a Printer paper alignment and paper feed problem.

    Standard Info:
    HP Photosmart Premium C310a Inkjet All-in-one Printer.
    Windows 7 Home Premium
    No reported errors messages except for paper jams.
    No changes were made to the system before the problems began.
    My Info:
    I am very proficient with computers and electronics. I would first like to say that this printer has very vibrant inks and its ColorSmart/sRGB ICC profile is pure magic. The high DPI ratings have turned out to be accurate so far and the printer prints beautiful images.
    Problems:
    The problem I am having is with the printers paper feed rollers.  They are not scrolling the paper through the printer accurately and consistantly.  There have also been two paper jams when using multipurpose everyday paper.  When printing high res artwork using HP Advanced Photo Paper I was using HP Photosmart Essentials to create an 8"x10" picture on the 8.5"x11" paper and the first 35-40 prints came out accurately but then, before any paper jams or other problems the 8x10 pictures began to not center correctly on the paper.  Then the top of the 8x10 picture started slanting to the right on the paper and extending too close to the right edge of the paper.  The entire 8x10 picture is no longer printing 8x10 (the left side of the picture is just over 8" tall and the right side of the picture is printing just under 8", same thing with the top and bottom edges of the image) and is not centering properly on the paper.  I  just had my second paper jam last night which I clicked the "cancel print" button on the front of the printer touch display to eject the paper.  Immediately after, everything began printing very close to the left edge of the paper and prints at an angle down the sheet no matter what it is that I print or what paper it is printed on.  I have tried using the auto alignment feature on the printer several times and it does not help. 
    Questions:
    Is this printer purchased on 09/25/2011 from hp.com (with no extended warranty) still under a regular warranty?
    If I send it in for repairs will HP be able to fix these problems?
    Is there any way that I can adjust the scrollers myself to fix the problem?
    Is the new C510a more reliable than the C310a in this field?
    I need a backup printer for my art business, I would like to purchase an HP C510a, but am concerned I will have the same problems with the new one.
    If anyone can help, please respond.  I cannot go on with these problems any longer.
    Thank you for your time,
    Nanette

    Thank you for your quick response Bob.  Your answer was helpful, but did not solve my problem.  I have cleaned the printer exactly as your response has suggested, but there has been no change, and I was not able to find any dirt, scum, dust, or anything at all wrong with the rollers.
    Here are a few pictures of some 8"x10" pictures that I just printed on 8.5"x11" HP Advanced Photo Paper:
    These 8"x10" images are supposed to be centered on the paper, but are FAR from centered or dimensionally accurate to 8"x10".
    This last image shows really well how the top of the 8"x10" image slants downward from left to right as well as approaches too close to the right edge of the paper.
    Is this a problem that I can fix on my own?
    If I send the printer to HP for repairs will they be able to fix this problem or will they just clean the printer scrollers and send it back thinking it is fixed?
    I really need help with this problem, because right now, the printer is not useable.
    Thank you for your help.
    -Nanette

  • Time and Date

    I am programming a chat server and I want it to log any errors so i don't waste speed and stuff with swing because the idea is to have it running on a server with no screen so i need a log file so i know whats rong when it stops working. I would like it to print the time and date. I don't know what to use to do this. Any help?

    just use the Calendar class. Open a PrintWriter to a file and append all the exceptions and errors to it. For the date and time just use the Calendar function calendar.get(int field) where field can be Calendar.DATE, Calendar.MONTH, Calendar.YEAR etc.

  • Concatenating date and time and then performing time calucations on this

    Hi,
    I have complex date/time calculation to perform in QD. Scenario is as follows:
    Objective: I want to calculate the difference in hours:mm:ss between the start order time and the end order time
    1. I have two fields one date & one time for each startorder time and an endorder time.
    2. I want to combine these together to get a date & time field for both startorder and endorder
    3. I want to calculate the difference between these 2 fields (datetime-start order & datetime- end order) to find the difference in hours:mm:ss
    Question is this possible in QD if so how?
    Or if it not possible in QD then is it possible in the transformation, if so how?
    thanks.

    Hi Amir,
    In the QD it only possible to get the date difference using replacement path and time difference cannot be calculated.
    You can achieve this by writing a routine at transformations level. You need to call a function module to time difference.
    /SDF/CMO_DATETIME_DIFFERENCE
    SD_DATETIME_DIFFERENCE.
    Hope this helps.............
    Rgs,
    Ravikanth.I

  • First time orignal print , second time Duplicate print

    Dear All ,
    my requirment is whenever i am printing (F.62) customer invoice first time then it must show Orignal print.
    and when i am printing second time and onwords it should print Duplicate Invoice.
    What should be logic ?
    Point is assured **************

    Check NAST table. It will store the print details... reading NAST table you can display ORIGINAL or DUPLICATE Invoice.
    Regards,
    SaiRam

  • PIXMA 922 print in reverse order?

    How do I set my PIXMA 922 to print in reverse order? I've set my MS Word print preferences for reverse order, but the printer starts at page 1.

    Hello KLS!
    Welcome to the Canon Forums and thanks for your post!
    To have a better understanding of your issue, please let everyone know what operating system (Windows Vista/7/8 or Mac OS 10.X) you are using. That way, the community will be able to assist you with suggestions appropriate for your product.
    Any other details you'd like to give will only help the Community better understand your issue!
    If this is a time-sensitive matter, our US-based technical support team is standing by, ready to help 24/7 via Email at http://bit.ly/EmailCanon or by phone at 1-800-OK-CANON (1-800-652-2666) weekdays between 10 AM and 10 PM ET (7 AM to 7 PM PT).
    Thanks!

  • How to print a document in reverse order using Java Print API ?

    I need to print a document in reverse order using Java Print API (*Reverse Order Printing*)
    Does Java Print API supports reverse order printing ?
    Thnks.,

    deepak_c3 wrote:
    Thanks for the info.,
    where should the page number n-1-i be returned ?
    Which method implementation of Pageable interface should return the page number ?w.r.t. your first question: don't return that number but return page n-1-i when page i is requested; your document will be printed in reverse order. Your class should implement the entire interface and wrap the original Pageable. (for that number n your class can consult the wrapped interface; read the API for the Pageable interface).
    kind regards,
    Jos

  • How to print both letter and legal size docs at same time with two trays

    I have an HP Laser Jet P2055dn printer. How can I print both letter and legal docs at same time?

    Not quite sure what you mean by "print both letter and legal docs at same time".
    If you mean that sometimes you want to print a document on Letter size paper, and at other times you want to print a different document on Legal sized paper, then all that is neccessary is to ensure that:
    The printer knows what Paper Size (e.g. Letter or Legal) is present in each tray; on many LaserJet devices, the size is detected automaticaly by sensors in each tray (except for the drop-down tray), but some devices may require that you set the size via front panel menus, or (for network models) via the Embedded Web Server equivalent.
    You may also need to specify what Paper Type (e.g. Plain or Letterhead) is present in each tray, in order to distinguish between two or more trays which have the same paper size loaded.
    Within your appllcation / print preferences, ensure that you select the required combination of size and type for the document.
    But if you mean how do you print a document with some pages on one size of paper, and other pages on a different size, this may only be possible with bespoke applications and/or printer drivers.

  • In Acrobat pro 9, I can't find staple and fold options for booklets and no matter what options I choose in the print dialogue my booklet ends up with pages upside down and out of order?

    In Acrobat pro 9, I can't find staple and fold options for booklets and no matter what options I choose in the print dialogue my booklet ends up with pages upside down and out of order? I am working on a Macbook pro running OS X 10.9.4.  Our printers are fully capable for booklets with staples and folds. Would love some help. Thank you!

    To: ~graffiti
    (This email is not intended to go on public forum -- but I wanted to respond
    to you)
    Thanks for your reply....FYI...I was trying to download from www.adobe.com on
    the specific page that has downloads of your products.    As far as the
    alternate source is concerned I am not totally sure what the capabilities it has as
    I am recovering from a hospital stay and had to send my wife to retailer to
    pick this up because I am accessing email from home until I return to work and
    need something to work now.  I don't yet have the SW.  (I would have had her
    buy the actual Adobe Pro 9.0 -- but it is a wapping $499 and change).
    Regards,
    Staurt Rednor ("Stu") - [email protected]
    ===========================================================
    Subj:   New message: "No matter what I try can't download
    Adobe Pro 9.0 or free Adobe Reader"   
    Date:   4/5/2009 7:38:17 PM Eastern Daylight Time  
    From:   [email protected]   
    Reply-to:   [email protected] 
    To: [email protected]  
    Sent from the Internet (Details)   
    SGuitar43,
    A new message was posted in the thread "No matter what I try can't download
    Adobe Pro 9.0 or free Adobe Reader":
    http://forums.adobe.com/message/1867664#1867664
    Author  : ~graffiti
    Profile : http://forums.adobe.com/people/~graffiti
    Message:

  • Printing config sm to be set to print in reverse order. How to fix?

    OSX 10.6.3 and MS Word 12.23. When I go to print-to-disk a Word document (i.e. turn it into a PDF using Preview as the default display tool) I get a PDF whose pages are in reverse order. Fine for hard copy output, useless for PDF. Every Print pref or config setting I look for offers no help and, of course, as is completely normal, the Help menu offers nothing either.
    I have found an easy fix for a small document — do a "preview" of the document in the Print dialog then drag the pages manually to where they should be. But not every document I work with is small.
    Suggestions please.

    Oh John, thanks for trying to help. However, I'm not trying to print to any printer. I'm trying to "print-to-disk" i.e. save as a PDF to the desktop so I can later send it as an email attachment.
    And by the way, I forgot to mention for you and other kind folk in here — the Word print dialog box does contain a setting Copies & Pages/Page Handling/Page Order with the options "automatic, normal, reverse" but it makes no difference what I select, I still end up with "reverse".
    Grrr

Maybe you are looking for

  • Leopard dvd not recognized by macbook pro

    hello, i have a macbook pro running 10.4.10 and it doesn't recognize the leopard installation dvd. the same dvd works on my G4 and was successful with the upgrade. the macbook just ejects the dvd after i insert it. i am able to play movie dvd's and/o

  • Problems with DBPersonalizationManager

    I can't personalize user parameters with DBPreferenceStore: Error message: An unexpected error has occurred in portlet instances: wwpob_api_portlet_inst.create_inst (WWC-44846) The following error occurred during the call to Web provider: java.lang.N

  • Indesign CC 2014 (and 2013) locks up when switching to Photoshop, which also locks up

    I'm on Windows 8 and I use InDesign and Photoshop at the same time. InDesign constantly locks up and and takes Photoshop with it. This happened on CC 2013 and still happens on 2014. If I force-quit InDesign then Photoshop continues to work again. The

  • Easy One with PreparedStatement

    Can any one tell me, when I prepare a statement (PreparedStatement) and loop assigning separate values within each loop, is this process called Binding? I was under the impression it was but have been unable to prove my thought.

  • Difference between Oracle Enterprise Pack for Eclipse 11gR1 & Eclipse IDE

    Dear , what is the difference between Oracle Enterprise Pack for Eclipse 11gR1 (link http://blogs.oracle.com/devtools/2009/08/oracle_enterprise_pack_for_ecl_2.html) and Eclipse IDE for Java EE Develpr (link http://www.eclipse.org/downloads/ )