My printer starts out printing PDF files in english and switches to random characters​.

Hp officejet 6310 ALl in one printer.  WHen printing PDF files, the part or all of the first page prints out in english and the balance is random characters.  What is going wrong.

The troubleshooting steps here may help resolve the issue.
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

Similar Messages

  • Illustrations greyed-out when printing PDF file from Adobe Reader

    Hello,
    From within PageMaker 7 I've made a 52-page PDF document in Distiller (selected job option is for Print) and uploaded it to my website.  It contains many greyscale illustrations (TIFs and JPGs first imported into PageMaker), and text.  I am able to view the PDF file over the net, and can print the illustrations and text on each page with no problem.  I am using an old HP laser printer (LaserJet 5L).  Other users are able to view the same PDF document on the net, and they can see all the illustrations and text on every page.  However, some users who have tested it are reporting that when they try to print out the pages on their own printers, most of the illustrations are greyed-out between pages 3 and 51.  The text is printing correctly on their printers.  The images on the front and back cover are printing, and so is an 11-page comic strip (made up entirely of 11 TIFs, with no additional text).  Can anyone work out why all the other illustrations throughout the document are printing greyed-out on their printers?
    Thanks
    Roger3

    I am replying to my own question.
    After posting here, I received feedback from a viewer that the PDF file is downloading and printing out pages with no greying-out of the illustrations.  It looks to me as though the problems are arising from other viewers' slow internet connections and/or hardware RAM for printing, especially if trying to print all pages at once, rather than Saving As to hard drive, then printing.
    Thanks,
    Roger3

  • Why can I not print out a pdf-file (train ticket NS) when downloaded with Firefox? (file says (SECURED)

    When ordering and paying a train ticket by internet they send a pdf-file, which one must download and print. When downloading this with Firefox (from my e-mail account) the pdf-file says (SECURED) and I cannot print out the ticket (pdf-file). (Adobe program stops automatically).
    When downloading this same pdf-file in Safari, I encounter no problems.

    Current Firefox versions have enabled a built-in PDF Viewer that doesn't have all features that other PDF readers like the Adobe Reader have or may not function properly otherwise.
    You can change the action for Portable Document Format (PDF) from Preview in Firefox to use the Adobe Reader application or set to "Always Ask" in "Firefox > Preferences > Applications".
    *https://support.mozilla.org/kb/change-firefox-behavior-when-open-file
    See also:
    *https://support.mozilla.org/kb/view-pdf-files-firefox-without-downloading-them

  • Why can't I print PDF files from my iPad or smart phone. Just started this recently.

    Not able to print PDF files from either my iPad or smart phone

    You probably don't have a printer which supports AirPrint:
    What Printers Are AirPrint Compatible? - iPhone / iPod - About.com
    If your printer is not supported, you can buy a utility like PrinterPro from Readdle on the App Store. That's what I've used to print.

  • How to  print pdf file by using java print API ? I am trying with this code

    import java.io.FileInputStream;
    import java.io.InputStream;
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintException;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.SimpleDoc;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.Copies;
    import javax.print.attribute.standard.MediaSizeName;
    public class PDFPrint {
    static public void print(InputStream inputStream, PrintService printService) throws PrintException {
    Doc doc = new SimpleDoc(inputStream, DocFlavor.INPUT_STREAM.AUTOSENSE, null);
    PrintRequestAttributeSet attributes = new HashPrintRequestAttributeSet();
    attributes.add(MediaSizeName.ISO_A4);
    attributes.add(new Copies(1));
    print(doc, attributes, printService);
    }//print()
    static public void print(Doc doc, PrintRequestAttributeSet attributes, PrintService printService) throws PrintException {
    if (printService == null) {
    printService = PrintServiceLookup.lookupDefaultPrintService();
    System.out.println("The Printer Name is :"+printService.getName());
    DocPrintJob docPrintJob = printService.createPrintJob();
    System.out.println("Before Print Start()");
    docPrintJob.print(doc, attributes);
    }//print()
    public static void main(String args[])
    PrintService defaultPrintService = PrintServiceLookup.lookupDefaultPrintService();
    String file="c:/BackUp/file.pdf";
    FileInputStream fis=new FileInputStream(file);
    System.out.println("Before Print() called ..");
    print(fis,defaultPrintService);
    System.out.println("After Printing....");
    I am using this code to print pdf file. But when I try this one automatically the printer starting with print ascii codes with infinite loop.
    I am using jdk1.4,Acrobat 8.0, Windows environment.
    Can u help me in this regard'
    Thank u
    grani

    import java.io.FileInputStream;
    import java.io.InputStream;
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintException;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.SimpleDoc;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.Copies;
    import javax.print.attribute.standard.MediaSizeName;
    public class PDFPrint {
    static public void print(InputStream inputStream, PrintService printService) throws PrintException {
    Doc doc = new SimpleDoc(inputStream, DocFlavor.INPUT_STREAM.AUTOSENSE, null);
    PrintRequestAttributeSet attributes = new HashPrintRequestAttributeSet();
    attributes.add(MediaSizeName.ISO_A4);
    attributes.add(new Copies(1));
    print(doc, attributes, printService);
    }//print()
    static public void print(Doc doc, PrintRequestAttributeSet attributes, PrintService printService) throws PrintException {
    if (printService == null) {
    printService = PrintServiceLookup.lookupDefaultPrintService();
    System.out.println("The Printer Name is :"+printService.getName());
    DocPrintJob docPrintJob = printService.createPrintJob();
    System.out.println("Before Print Start()");
    docPrintJob.print(doc, attributes);
    }//print()
    public static void main(String args[])
    PrintService defaultPrintService = PrintServiceLookup.lookupDefaultPrintService();
    String file="c:/BackUp/file.pdf";
    FileInputStream fis=new FileInputStream(file);
    System.out.println("Before Print() called ..");
    print(fis,defaultPrintService);
    System.out.println("After Printing....");
    I am using this code to print pdf file. But when I try this one automatically the printer starting with print ascii codes with infinite loop.
    I am using jdk1.4,Acrobat 8.0, Windows environment.
    Can u help me in this regard'
    Thank u
    grani

  • Cannot  print  pdf files  with  9.3.1, cannot remove patch

    does anyone know how to fix msi problems ? updater says 9.3.1 is more functional than 9.4 what does that mean? does that mean I need to remove 9.3.1 in order to install 9.4 ?  All i want out of this is the ability to control what stays and want goes onto my hard drive and the ability to print PDF files like the product claims. I swear as my life advances I will not buy a product from a company that cannot support me with there standard issues of products . offering a free product that malfunctions is not my idea of building a trusting relationship. What's more disturbing is that I talked with Ganesh this morning on adobe chat and know i cannot even register with that email. Can anyone fix msi problems or is this just a runaround bad business practice of post WTO new world order ?  Thanks for letting me vent. Now about the msi problem...

    Thanks for the advice, but I'm
    already beyond that(go to add remove
    programs and click remove). I did my backup and downloaded windows installer cleanup from http://majorgeeks.com/Windows_Installer_CleanUp_Utility_d4459.html  After download when I ran the program to install it, the window that popped up was labled "Microsoft Office Update". When that disappeared I found Windows Installer Cleanup located in the All programs list in start. I clicked it and a window popped up about the size of task manager. I scrolled down and highlighted Adobe 9.3.1 and clicked remove and it removed it and the 9.3.1 unremovable update from the conrol panel. Then I went to Adobe.com , downloads and downloaded Adobe 9.4, installed it, and tested it by printing a PDF file.   Before I was scared to mess up my netbook and didn't want to deal with the hassle, but we all have our limits until we start to take these kind of risks into the unknown. sometimes, even though it's a burden to register to umpteen forums, it's that extra hassle that gets you over the edge. Please share this info. ohh yeah, NONE of this was done in safe mode.

  • Envy 4500 won't print pdf files

    My new printer HPEnvy 4500 works fine and I'm really pleased with it, except that I cannot print pdf files.
    I'm running Windows Vista and have Adobe 11 so have run a repair on Adobe to see if that helps- no joy. Even if I try onepage at a time it might start after a fewminutes but thenonly prints about a quarterof thepage and then stops. It also seems to feeze my entire computer - none of theprograms respond well whilst the document is in the print queue. There are no error messages. I did not have problems with my old Photosmart C5180 printing off the same documents from the same computer (now thrown out)
    Please,please can anyone help as these are important documents that I need to print off.
    Thank you
    This question was solved.
    View Solution.

    OK, so I managed to fix this myself! The problem seems to be with Adobe Reader. I had upgraded from V9 to the latest version and there appears to be a whole lot of problems with thel atest version. I tried downgrading to V10 but the problem still occurred (even turning off the enhanced saftey mode as suggested by Adobe). Sine V9 is no longer available for download I was stuck in a vicious circle. In the end I gave up on Adobe altogether and uninstalled it completley. I have now downloaded Nitro pdf (free) and everything is working as it should. Finally able to print pdf documents!

  • Printing PDF Files takes forever

    I'm new to the mac world, but love it. It takes forever to print pdf files on my iMac. I'm using an HP3050 Laserjet, plugged directly into the iMac. Never had this problem with the printer connected to my Vista Laptop.
    I started to print a 2 page pdf 9 minutes ago and still have not gotten a pageout of the printer. PDF File is only 132 KB.
    Any advice would be greatly appreciated

    David Goodman1 wrote:
    It was happening with preview and adobe pdf viewer. I tried an experiment, unplugged the usb cable and re-set the printer to its defaults.
    That solved part of the problem. It now prints pdf's quickly, but any document, word,pdf etc that I try to print, the printer now beeps and prompts for a manual feed, press enter for confirmation. After pressing the enter button on the printer whatever file I'm trying to print comes out.
    Okay, the printer thinks that you're feeding paper from the manual feed slot, not from the paper tray. When you select 'Print', the printer dialog box should come up. There are two basic styles for the printer dialog box:
    1 basic, which has seven items in it: the printer ID pull-down menu, which allows you to select printers if you have more than one printer; in my case, I'd have Brother HL-2070N, Brother MFC-440CN, Adobe PDF 8.0, and a few other items on the list. It would also show the printer presets pull-down, the four print system buttons (PDF, Preview, Cancel and Print) and the dialog control triangle.
    2 complete, which can be access from the basic dialog by clicking on the dialog control triangle. This will zoom out the dialog box to include the full array of options available for that printer. What options show depend on which printer you have, but one of them will be a pull-down menu which usually has the name of the app you're trying to print from. One of the items on that menu will be 'Print Feed' or something similar. Select that item. The dialog will zoom out and show you the various print feed options. It is probable that there will be a checkmark next to 'manual feed' or something similar. Select 'automatic' or 'tray #1' or similar. Print normally.
    Once you have printed something with the correct settings the print system will remember the settings you want and will keep them until you change them. Just remember that if you change them, the system will remember the new settings until you change them back.
    Plus, printing #10 envelopes no longer works correctly, the address information only partially prints and is un-readable.
    That's almost certainly because it things that it's printing letter-size paper from the manual tray. One of the settings under 'Print Settings' or similar should allow you to select the size and type of paper; if you select #10 envelope, it will adjust accordingly. Note that unless you specify otherwise, if you select #10 envelope the system will usually automatically select the manual feed for you. It will go back to whatever feed setting had been made before printing envelopes once you select a different type of paper. (At least that's how it's worked in every printer I've used for quite some time now.)
    I'm going to plug the printer back into my Vista Laptop and see if it goes back to normal.
    It's not hardware-related, it's driver-related, so you should be able to print from Vista without a problem.
    If you do have a problem, let us know 'cause then the problem is not a driver problem. And if it's not a driver problem you may yet get to buy a new printer, 'cause fixing printer hardware is usually more expensive than just tossing the printer and replacing it. I would charge you at least $50/hour plus parts to fix this kind of thing. You can get a new printer for under $100. You make the call.
    Is there any kind of "terminal" command I can use to re-set how the Mac is dealing with the printer?
    if you really want to see the guts of the print system, you can go to the CUPS pages on your system, but you really don't want to do that unless you absolutely have no choice. The CUPS pages, the Common UNIX Printing System pages, on your system are available if you launch your web browser (any web browser) and go to <http://127.0.0.1:631/printers>. There's a whole lot of info in there, but playing inside there is not for the faint of heart.

  • Adobe Acrobat Pro failed to print pdf file

    I downloaded adobe acrobat pro and started the 30 trial version just a few minutes ago.
    I could open files through adobe acrobat and convert word files to pdf, but when i tried converting a publisher file it could not go through. An error popped up which read "Adobe PDF printer failed to print pdf file".
    The publisher file I am hoping to convert to pdf is a 21 page panorama article. It contains lots of images and a variety of font types.
    I do not know other alternatives for solving this issue.
    Your help will be very much appreciated.
    Thank you!
    Erik

    It seems to be that Adobe Acrobat virtual printer is not properly installed on your PC or you are not selecting Adobe PDF printer to print PDF document. Checkout the below screen shot to see proper printer.
    After trying this if you have same problem you may trt some other virtual printer that easily convert or print any file as PDF, you may checkout here.

  • How to print PDF file content from ABAP in background?

    Hi,
    Is it possible to print PDF file content from ABAP in background?
    I have some PDF content which I need to print it, these PDF files are generated outside the SAP.
    Please have you any suggestions?
    Thank you
    Tomas

    <b><u>Solution:</u></b><br>
    <br>
    The target output device must support PDF print, this is only one limitation.<br>
    <br>
    REPORT  z_print_pdf.
    TYPE-POOLS: abap, srmgs.
    PARAMETERS: p_prnds LIKE tsp01-rqdest OBLIGATORY DEFAULT 'LOCL',
                p_fname TYPE file_table-filename OBLIGATORY LOWER CASE,
                p_ncopi TYPE rspocopies OBLIGATORY DEFAULT '1',
                p_immed AS CHECKBOX.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fname.
      DATA: lv_rc     TYPE i,
            lv_filter TYPE string.
      DATA: lt_files TYPE filetable.
      FIELD-SYMBOLS: <fs_file> LIKE LINE OF lt_files.
      CONCATENATE 'PDF (*.pdf)|*.pdf|' cl_gui_frontend_services=>filetype_all INTO lv_filter.
      CALL METHOD cl_gui_frontend_services=>file_open_dialog
        EXPORTING
          file_filter             = lv_filter
        CHANGING
          file_table              = lt_files
          rc                      = lv_rc
        EXCEPTIONS
          OTHERS                  = 1.
      IF sy-subrc NE 0 AND lv_rc EQ 0.
        MESSAGE 'Error' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      READ TABLE lt_files ASSIGNING <fs_file> INDEX 1.
      IF sy-subrc EQ 0.
        p_fname = <fs_file>-filename.
      ENDIF.
    AT SELECTION-SCREEN.
      DATA: lv_name   TYPE string,
            lv_result TYPE boolean.
      lv_name = p_fname.
      CALL METHOD cl_gui_frontend_services=>file_exist
        EXPORTING
          file                 = lv_name
        RECEIVING
          result               = lv_result
        EXCEPTIONS
          OTHERS               = 1.
      IF sy-subrc NE 0.
        MESSAGE 'Bad file!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      IF lv_result NE abap_true.
        MESSAGE 'Bad file!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
    START-OF-SELECTION.
    END-OF-SELECTION.
      PERFORM process.
    FORM process.
      DATA: lv_name     TYPE string,
            lv_size     TYPE i,
            lv_data     TYPE xstring,
            lv_retcode  TYPE i.
      DATA: lt_file TYPE srmgs_bin_content.
      lv_name = p_fname.
      CALL METHOD cl_gui_frontend_services=>gui_upload
        EXPORTING
          filename                = lv_name
          filetype                = 'BIN'
        IMPORTING
          filelength              = lv_size
        CHANGING
          data_tab                = lt_file
        EXCEPTIONS
          OTHERS                  = 1.
      IF sy-subrc NE 0.
        MESSAGE 'Read file error!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = lv_size
        IMPORTING
          buffer       = lv_data
        TABLES
          binary_tab   = lt_file
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
      IF sy-subrc NE 0.
        MESSAGE 'Binary conversion error!' TYPE 'E' DISPLAY LIKE 'S'.
      ENDIF.
      PERFORM print USING p_prnds lv_data CHANGING lv_retcode.
      IF lv_retcode EQ 0.
        WRITE: / 'Print OK' COLOR COL_POSITIVE.
      ELSE.
        WRITE: / 'Print ERROR' COLOR COL_NEGATIVE.
      ENDIF.
    ENDFORM.                    " PROCESS
    FORM print USING    iv_prndst  TYPE rspopname
                        iv_content TYPE xstring
               CHANGING ev_retcode TYPE i.
      DATA: lv_handle    TYPE sy-tabix,
            lv_spoolid   TYPE rspoid,
            lv_partname  TYPE adspart,
            lv_globaldir TYPE text1024,
            lv_dstfile   TYPE text1024,
            lv_filesize  TYPE i,
            lv_pages     TYPE i.
      CLEAR: ev_retcode.
      CALL FUNCTION 'ADS_SR_OPEN'
        EXPORTING
          dest            = iv_prndst
          doctype         = 'ADSP'
          copies          = p_ncopi
          immediate_print = p_immed
          auto_delete     = 'X'
        IMPORTING
          handle          = lv_handle
          spoolid         = lv_spoolid
          partname        = lv_partname
        EXCEPTIONS
          OTHERS          = 1.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CALL FUNCTION 'ADS_GET_PATH'
        IMPORTING
          ads_path = lv_globaldir.
      CONCATENATE lv_globaldir '/' lv_partname '.pdf' INTO lv_dstfile.
      OPEN DATASET lv_dstfile FOR OUTPUT IN BINARY MODE.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      TRANSFER iv_content TO lv_dstfile.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CLOSE DATASET lv_dstfile.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CALL FUNCTION 'ZBAP_RM_PDF_GET_PAGES'
        EXPORTING
          iv_content = iv_content
        IMPORTING
          ev_pages   = lv_pages.
      lv_filesize = XSTRLEN( iv_content ).
      CALL FUNCTION 'ADS_SR_CONFIRM'
        EXPORTING
          handle   = lv_handle
          partname = lv_partname
          size     = lv_filesize
          pages    = lv_pages
          no_pdf   = ' '
        EXCEPTIONS
          OTHERS   = 1.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
      CALL FUNCTION 'ADS_SR_CLOSE'
        EXPORTING
          handle = lv_handle
        EXCEPTIONS
          OTHERS = 1.
      IF sy-subrc NE 0.
        ev_retcode = 4.
        RETURN.
      ENDIF.
    ENDFORM.                    " PRINT

  • Can no longer print PDF files on C310.

    Morning,
    have a HP C310.  Used to work fine...  Frustratingly it no longer prints PDF files.
    I've uninstalled everything and reinstalled it.
    Updated drivers.
    Tried the print as an image.
    Prints other documents fine.
    When I try and print a PDF file it seems like the printer is just ignoring the request.
    Any further suggests before I through it out the window and buy a printer that works.....  
    Thanks in advance,
    Daren

    Hmm...  OK, I happen to have the same printer (on wireless LAN) and OS and it prints fine for me....
    Are you printing from File, Print or from the printer icon?  I recall that Adobe applications may have their own version of what the default printer is.  If using the printer icon try instead with File, Print and make sure the c310 is selected as the printer.  Also check the Advanced settings in the print menu.  In my case all the boxes are unchecked (except the grayed-out selection for downloading Asian fonts in the postscript box). 
    One other thing to check would be to open the print spooler and then print a PDF and make sure that a print job does show up and then disappear from the spooler.
    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

  • Windows Service no longer able to print PDF files using Adobe Reader 11.0.07.79

    We have a Windows Service that watches a folder for PDF files to be deposited.  Once awakened, it executes the Adobe Reader in command line mode to print the PDF files to secure check printers. The Windows Service was working fine with 11.0.06.70 but no longer works with 11.0.07.79.
    There are no event viewer errors or errors returned to our Process.Start() call.  The Windows Service is running under the identify of an administrator account and has explicit full access to the printer.  We have also tried the local computer's Administrator account as well as the default Local Service, but none work.
    Using ProcMon to examine the failure, it showed Adobe Reader making many successful registry and file accesses.  Adobe Reader then creates a new process, another instance of itself to read in the PDF file and print to the printer.  However, ProcMon only shows Adobe Reader accessing AcroRd32.exe, syswow.dll (sp) and ntdll.dll and then the thread and process immediately exits with an exit code of 0 (no file or registry accesses).  So, something is causing the instantiated process to fail immediately.
    After more research and trying many things, we disabled "Enable Protected Mode at Startup".  This enabled things to work again.
    We are concerned that disabling this feature might expose security concerns for our customers.
    We are suspecting that some security concerns were tightened with 11.0.07.79 that has inadvertently caused printing from Windows Services to falsely be identified as security violations.  Can you please investigate and provide a resolution?
    Thank you.
    Craig Keating
    Alliance Enterprises, Inc.
    [email protected]

    Hi,
    Can you please give the following details:
    1) Command (given in command line)used to print PDF files?
    2) Is the issue reproducible with other printers as well?
    3) Is directly printing the PDF from that folder using command line i.e without using windows service works fine or not?
    Thanks,
    Shakti K

  • Laserjet p2055dn is slow printing pdf files using mac

    My Mac is very slow printing pdf files on my hp laserjet p2055dn.  I have noticed fixes for this problem for people using Windows.  Is there a Mac solution?

    Do you want to create PDF files using Java? If so, there is a library available at http://www.lowagie.com/iText/docs.html Check out this site. There are many more similar PDFGEnerator tools that you can use..

  • HP Laserjet P2055dn won't print pdf files

    I have just hooked up a new iMac with Mac OS 10.9.5 and now my reliable HP Laserjet P2055dn won't print .pdf files anymore--it just hangs for hours. I am an academic and work 50% with pdf's.  I tried to download a new driver from the HP site for all MAC OS systems 10.7 and up, but the message when the download was finished opened up in a little box that reads: "ljp2055_Firmware_Upd Image not recognised."
    I've unplugged, plugged back in, turned off, turned back on countless times. Don't know what else to try?
    Thank you.

    Hi john, I did some looking around and maybe try this page for some tips, sometimes the microsoft forums help me out dearly.
    http://answers.microsoft.com/en-us/windows/forum/w​indows_8-winapps/unable-to-print-pdf-files-with-wi​...

  • Intermittent Problem of Corruption when printing PDF files

    From time to time I have a problem with text corruption when printing pdf files. Text comes out one character alphabetically later.
    For example, a file I printed yesterday contained the text "ONE WEEK VISITOR LICENCE". On printing it again today (on the same computer and printer), it appeared as "POF!XFFL!WJTJUPS!MDFODF". But another attempt immediately afterwards was correct.Here is a scan of the correct and incorrect printouts
    I have had this problem intermittently over a couple of years, particularly with pdf files embedded as a frame in a web page.
    I am using Adobe Reader 10.1.0 (but the problem has also appeared on earlier versions), Windows XP SP3 with all updates and an HP Deskjet 6980 printer on a wireless link.
    Any advice would be welcome

    Not sure why this may be happening. But you can try printing the PDFs as an image, which should solve the problem. It may take a little longer to print but at least you will get a correct print.
    You can do the same by Clicking on the Advanced button displayed on the Print dialog and checking the checkbox for "Print as Image".
    Hope that this fixes the issue.
    Ankit

Maybe you are looking for

  • Flickering on new 55 inch TV used as monitor for MacPro 3.1 VGA connection

    I have a Mac Pro 3.1. as the main home computer connected to the TV. It worked fine with my old Samsung 42 inch TV as a display using a VGA connector with the standard included apple convertor. I recently purchased a new Samsung hd 55 inch screen, an

  • Podcast not updating episodes in iTunes store

    Hi, I have a podcast that is not showing newer episodes. My feed appears to be fine because I can subscribe to it and see the new episodes. I've also updated iTunes artwork and the store updated that within a day. Is there something wrong with my fee

  • Second Gerneration iPod Nano and USB 1.1

    Hello, I have read in other feeds that the second generation Nano is compatable with USB 1.1. Is this correct? If yes, will I need extra charger or something to charge the battery? Thanks, John Heyne

  • LMS 4.1 Topology Service Question

    i have only 1 switch 2960 POE at customer enviroment. i did run topology service and checked on the right side POE CAPABLE Devices it shows me that i have 4 switch POE while actually there is only 1 switch POE in real enviroment. does anyone have any

  • How to change pattern (brush) of stroke?

    I traced with pen tool a line and now I need it to make it same as this: I tried to double click to stroke lines to bring stroke options and there are few strokes in library but not exact of this. I tried to play with size and spacing but I cannot re