Can't print pdf files after upgrading to Adobe Reader XI

Hi,
I can't print pdf files after recently upgrading to Adobe Reader XI.
Two error messages appear:
1.- Error when starting the application because it couldn't find LXBBGF.DLL. Re-installing the application can solve the problem.
2.- Can not load "LXBBPRP.DLL". Using defaults. Error: 126
I can print other files (word, etc) with the same printer.
Thank you for your advice

Hi Pat,
Finally I followed the instructions from another similar discussion on this web site. Unfortunately I can't find it anymore...
I first uninstalled the Adobe Reader XI and then intalled an older version (Adobe Reader X). Now I can print pdf files!!
Thank you anyway for your advice!

Similar Messages

  • Can not print pdf files when upgraded to Mountain Lion?

    I can see my pdf file until I go to print...then the page goes blank in review and my printer spews out blank pages. HELP! I never had this problem until I upgraded to Mountain Lion.

    Let's try this:
    You said;
    then the page goes blank in review and my printer spews out blank pages
    I'll take a guess that review should read Preview, is that correct (If it is the answer to Eric's question is Preview)

  • Can't Print PDF Files Since Upgrade

    Can't print existing PDFfiles since upgrading to Reader 10 or?. Getting error message..."Prop Res DLL not loaded". What to do?

    Reinstall or update your printer driver.

  • I can not print pdf files since I updated to reader 11.0.10 I am so stuck need to do this urgently

    Why Cant I print pdf files any more, I kind of need this urgently. Also can not find any one to email about this, can anyone help?

    You ask "why" and say "urgently", but you don't provide any details whatsoever.

  • I am unable to print PDF files. Windows 7, Adobe Reader 11.0.06, Brother DCP 7065DN printer

    Receive messages "The document could not be printed." and "There are no pages selected to print." when in fact there are.

    Answered multiple times every day: open Adobe Reader | Edit | Preferences
    under Documents, change 'View documents in PDF/A mode' to Never
    under Security (Enhanced), disable Protected Mode at startup

  • No recognition of special characters after upgrading to Adobe Reader X

    Hello all,
    we  use a document-manager-software "Accantum" to scan and to archive PDFs.  After upgrading to Adobe Reader X no german special characters (e.g.  äöüß ...) are recognized by the document-manager.  All words with  special characters look fine on screen or printer, only the recognition  by the document-manager outputs either "%" or no character in the  destination-PDF-file. Scanning a version 9.x - PDF is still working  fine.
    Please give me a little hint
    Thanks. Stephan

    I don' think so, cause AR 9x -documents of the identical source are recognized absolutely correct and the error occurred exactly after upgrading to AR X (10.0.1).
    Perhaps there is a way to look into the OCR-Text embedded in the PDF-file?
    Thanks
    Stephan

  • Can't print or save PDF files to hard drive after upgrading to Adobe Reader 10.1.3

    I upgraded to Adobe Reader 10.1.3 on my Mac with OS X 10.7.3. I can open PDF files on Internet, but can neither print them nor save them to my hard drive.

    I had the same problem and stumbled by accident on an odd way how to save the PDF file.
    After the PDF file is visible, press the key escape  “esc”. A new toolbar above the PDF file will appear. Press the “disc” icon next to the “printer” icon. A window drops down, and now you can save the PDF file in your download folder.

  • Cannot print a PDF file after upgrading to Windows 8.1

    Cannot print a PDF file after upgrading to Windows 8.1
    I can print anything else from either the Desktop or Start but not a PDF.  No error message but just does not print.
    Update: down loaded Adobe Reader which runs on the desktop so when I read a PDF file it now runs on the desktop and I can print it.

    Cannot print a PDF file after upgrading to Windows 8.1
    I can print anything else from either the Desktop or Start but not a PDF.  No error message but just does not print.
    Update: down loaded Adobe Reader which runs on the desktop so when I read a PDF file it now runs on the desktop and I can print it.

  • I upgraded to Lion and now can't print PDF files and Acrobat reader doesn't work anymore. What can I do to get it working?

    I upgraded to Lion and now can't print PDF files and Acrobat reader doesn't work anymore. What can I do to get it working?

    If you upgraded and were using a version of Acrobat Reader that was legacy, that is PPC compatible, then you will have to upgrade to a version compatible with Lion as Lion no longer has Rosetta to interface with the legacy software.
    I know that Acrobat, full version, 10 works with Lion...use it myself.

  • Orarrp can't print pdf file directly to printer

    oracle remote print utility (orarrp) can't print pdf file directly to printer.
    we expect orarrp utility can handle ".rrpa" file (i.e. pdf file generated on the application server) by directly print the file to the client's printer, i.e. invoke the acrobat reader on the client side, display the the printer selection dialogue, after confirmation print the pdf file, then the acrobat reader close automatically nicely.
    However we are disappointed as the acrobat reader startup and display the pdf file content but does not print and does not close.
    After testing the problem several times, there are some findings:-
    Finding (A):-
    (a) for the success of direct printing of pdf file, a physical path must be provided; we have tried 2 methods:
    1) using drag & drop to copy the pdf file directly to the browser
    2) open pdf file in the browser directly using browser menu-->File-->Open.
    (b) for the failure of direct printing, a virtual path is involved and we have also tried 2 methods:
    1) when web.show_document() is used
    2) enter the url to the URL bar of the browser,
    eg. http://appsvr.com:7777/report/test_printout/APPSVR1094707.rrpa (this is a virtual path/url)
    Finding (B):-
    (a)when the physical path is used, a temporary pdf file is generated in the same directory where the rrpa file exists in the application server,
    e.g. in application server: d:/printout/yyy.pdf is generated for d:/printout/xxx.rrpa when direct print occurs
    (b) however when the virtual path is used, there is no such temp "pdf" file generated and direct print failed.
    May be when virtual path is used, orarrp utility don't know where to generate the temp "pdf" so direct print doesn't occur.
    So, anyone has similar experience or further queries or has solutions, please join.
    Thanks for your attention.

    Hi,
    It is really late to give response this post. But still who ever refering to this post for the same issue this solution is useful for achieving same in background:
    Even same can be used in smartforms, for getting spool request in PDF format as well which will decrease the size of file when printing in SAP printer.
    ct_tline is PDF output:
    DATA: lv_pdfsource TYPE xstring.
    FIELD-SYMBOLS:<p> TYPE x. " <p> type any.
    LOOP AT ct_tline INTO cs_tline.
      ASSIGN cs_tline TO <p> CASTING TYPE x.
      CONCATENATE lv_pdfsource <p> INTO lv_pdfsource IN BYTE MODE.
    ENDLOOP.
    * ->Create spool request in PDF format
    CALL FUNCTION 'ADS_CREATE_PDF_SPOOLJOB'
      EXPORTING
        printer  = 'LOCL'            "Printer name supporting PDF device type
    *   DEST     =
        pages    = 1
        pdf_data = lv_pdfsource        "XSTRING internal table
    *   NAME     =
    *   SUFFIX1  =
    *   SUFFIX2  =
    *   COPIES   =
    *   PRIO     =
        IMMEDIATE_PRINT         = 'X'
    *   AUTO_DELETE             =
    *   TITLELINE               =
    *   RECEIVER =
    *   DIVISION =
    *   AUTHORITY               =
    *   LIFETIME = '0'
    * IMPORTING
    *   SPOOLID  =
    * EXCEPTIONS
    *   NO_DATA  = 1
    *   NOT_PDF  = 2
    *   WRONG_DEVTYPE           = 3
    *   OPERATION_FAILED        = 4
    *   CANNOT_WRITE_FILE       = 5
    *   DEVICE_MISSING          = 6
    *   NO_SUCH_DEVICE          = 7
    *   OTHERS   = 8
    IF sy-subrc <> 0.
    * Implement suitable error handling here
    ENDIF.

  • Can't print pdf files from my imac

    can't print pdf files from my imac.

    macs don't come with acrobat reader by default
    when one get a mac and open a pdf file the build in program called preview opens it
    most of us stick with preview because acrobat reader is a rather dangerous program to install
    http://www.cvedetails.com/vulnerability-list/vendor_id-53/product_id-497/cvsssco remin-6/cvssscoremax-6.99/Adobe-Acrobat-Reader.html
    more
    https://www.google.com/search?sourceid=opera-portal&q=acrobat+reader+exploits&cl ient=opera-portal&channel=portal#hl=en&client=opera-portal&hs=lqn&channel=portal &sclient=psy-ab&q=list+of+acrobat+reader+exploits&oq=list+of+acrobat+reader+expl oits&gs_l=serp.3...8463.9471.0.9773.8.7.0.0.0.1.162.508.6j1.7.0.les%3B..0.0...1c .1.5.psy-ab.4Tc73RiiXXA&pbx=1&bav=on.2,or.r_gc.r_pw.r_cp.r_qf.&bvm=bv.43148975,d .bGE&fp=cab576d3b9062d9c&biw=1825&bih=748
    after adobe flash and oracle Java the adobe acrobat reader is the most open door for hackers into ones system
    if you type preview in spotlight(the icon which looks like a spyglass) or in the launch's seach you can get to the preview app

  • Can not print PDF file at all with Windows Vista

    I have Acrobat Reader 9.3.2.  I am working off of Windows Vista on my laptop to a network wireless printer (Brother MFC 9440).  I am unable to print pdf files.  About a week ago, we had problems with our printer printing anything.  I had to uninstall it and reinstalled it and it now works fine except the pdf files. I have had no problems printing any other files on any other programs but this one.  I am unsure what specific "updates" I ran while trying to figure out printers issue.  When in Reader, everything seems normal.  When I hit print, the printer box pops up as normal and then I hit ok, my printer icon at bottom pops up for about 5 secs and nothing happens.  I know that I am connected to printer due to all other programs can print.  I do not have access to another printer to see if pdf will print on another printer, but do know that the other two computers used in this office (mac laptop and mac desktop) both are able to print pdf files to this printer without a problem.  I have gone thru all the other help steps to try to resolve the situation:  it still will not print when I hit "print as image", made sure that my printer is marked as network and is default printer, made sure to check that I have all upgrades, etc.  I am not getting any error message, so am unsure what is wrong.  It just will not print.  Is there anyone that could give me some suggestions that I have not tried?  I would REALLY appreciate it! Thanks!

    Another user experience exactly the same issue with vista and printing from Adobe reader.
    http://forums.adobe.com/thread/642000?tstart=1  Its copied below as a reference.
    The problem was on my Auntys PC, and yes i did updated Adobe Reader to v9.3.2 and still the same issue underlned below.
    My Aunty lives 70 miles away so will not be trying anything else.
    The printer works fine with every other application only Adobe Reader files will print.
    May 19, 2010 7:31 AM
    Can not print PDF file at all with Windows Vista
    I have Acrobat Reader 9.3.2.  I am working off of Windows Vista on my laptop to a network wireless printer (Brother MFC 9440).  I am unable to print pdf files.  About a week ago, we had problems with our printer printing anything.  I had to uninstall it and reinstalled it and it now works fine except the pdf files. I have had no problems printing any other files on any other programs but this one.  I am unsure what specific "updates" I ran while trying to figure out printers issue.  When in Reader, everything seems normal. When I hit print, the printer box pops up as normal and then I hit ok, my printer icon at bottom pops up for about 5 secs and nothing happens.  I know that I am connected to printer due to all other programs can print.  I do not have access to another printer to see if pdf will print on another printer, but do know that the other two computers used in this office (mac laptop and mac desktop) both are able to print pdf files to this printer without a problem.  I have gone thru all the other help steps to try to resolve the situation:  it still will not print when I hit "print as image", made sure that my printer is marked as network and is default printer, made sure to check that I have all upgrades, etc.  I am not getting any error message, so am unsure what is wrong.  It just will not print.  Is there anyone that could give me some suggestions that I have not tried?  I would REALLY appreciate it! Thanks!

  • Can't print in PSE11 after upgrading to windows 8.1

    I have just upgraded from Windows8 to 8.1 and now can't print in PSE11. For some reason can in PSE7

    I can print from other programs but not PSE. I have updated the drivers. I have attached 3 screen shots with error messages.
    Tracy Ferreira 2607 Woodruff Rd.
    Suite E-126
    Simpsonville, SC 29681(864)350-4724www.onthespotportraits.com  
          From: hatstead <[email protected]>
    To: Tracy Ferreira <[email protected]>
    Sent: Tuesday, March 10, 2015 1:58 PM
    Subject:  can't print in PSE11 after upgrading to windows 8.1
    can't print in PSE11 after upgrading to windows 8.1
    created by hatstead in Photoshop Elements - View the full discussionWhat happens when you try?Any error messages?Do you have the latest drivers for the printer? If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7274523#7274523 and clicking ‘Correct’ below the answer Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7274523#7274523 To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"  Start a new discussion in Photoshop Elements by email or at Adobe Community For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • I have a MacBook Pro and can't print pdf files or word documents using my HP Wireless Photosmart Printer.  It will print files from the internet.  Any suggestions or ideas will be greatly appreciated.  Thank you.

    I have a MacBook Pro and can't print pdf files or word documents using my HP Wireless Photosmart Printer.  It will print files from the internet.  Any suggestions or ideas will be greatly appreciated.  Thank you.

    Hello, SoonerAnesthetist. 
    Thank you for visiting Apple Support Communities.
    Here is an article that I would recommend going through when experiencing this issue.
    OS X Mavericks: Solve printing problems
    http://support.apple.com/kb/PH14142
    Cheers,
    Jason H.

  • Can't print pdf files in Mac on CS4

    I am using CS4 and can print InDesign and Photoshop files just fine, but I can't print pdf files using Acrobat Pro 9.

    Try resetting your printer system:
    http://support.apple.com/kb/ht1341

Maybe you are looking for