I cannot print PDF's with XI on Windows7/ Dell XP and a Dell A940 Printer. Why ?I use to be able.

I use to be able to print PDF's on an older version of Acrobat.Since I uploaded to XI , I cannot print from Adobe but I can print from Word and others .I have tried removing XI and going back to an older version with the same result. I get a prompt that states "This application has failed to start because DLBAGF.DLL was not found.Re-installing this application may fix this problem. And another -"AcroRd32.exe-unable to locate componet" and finally "Can not load library DLBAPRP.DLL using defaults,error 126.Any one else in my boat?

Have you seen the suggestions in the article at:
http://support.microsoft.com/kb/918730

Similar Messages

  • Cannot print PDF file with version 11.0.10 Adobe Reader.

    Cannot print PDF file with version 11.0.10 Adobe Reader.  Get error messages "This document could not be printed" and "There are no pages selected to print".  I am using a Mac OS Ver 10.0.2.  I see that this question has been asked by others recently, but no answers.  Anyone have any suggestions?

    Assuming you are running 10.10.2 and not the ancient 10.0.2, can you tell us what printer and printer driver you are using? How is the printer connected to the computer (network, usb)? See if you can delete the Reader preference files? Years ago I resetting the printer subsystem would sometimes cure a problem like this.

  • Cannot open PDF files with Reader XI message appears Adobe Reader has stopped working

    Cannot open PDF files with Reader XI message appears Adobe Reader has stopped working. A problem has caused the program to stop working

    Which Operating system you are using?
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)] and then try to open the file.

  • Can I batch print PDF files with Adobe Acrobat Reader X

    can I batch print PDF files with Adobe Acrobat Reader X?  I have tried from Windows Exploer (Windows XP) and it looks like the files are opening but they do not print.
    Pat

    Very strange!  What is your installed Reader version?
    Try disabling Protected Mode in Adobe Reader [Edit | Preferences | Security (Enhanced)].

  • Cannot open pdf files with Firefox's built-in pdf viewer

    This just started (I think) with Firefox 37.01. This is on Win7-X64. I cannot open pdf files with the Firefox built-in pdf viewer. If I click on the file or try to open it from within Firefox, it brings up a "opening filename.pdf" message. If I select the "Open with" radio button as 'Firefox (default),' it just keeps looping on this process; it never opens. In Tools => Options => Applications, Portable Document Format (PDF) is indicated as 'Preview in Firefox.' I've never had any other PDF viewer installed on this computer. I've tried disabling all plug-ins and extensions, but it still doesn't work. I searched for solutions but haven't found any for this specific issue.
    Thanks for the help.

    Hello,
    Have you tried, to start Firefox in safemode you can do so by following these steps
    '''If Firefox is open,''' you can restart in Firefox Safe Mode from the Help menu:
    * Click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    '''If Firefox is not running,''' you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".
    ;[[Image:SafeMode-Fx35]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Printing pdf/postscript with JPS 1.4 -- HELP!

    Hi all,
    I've been experimenting with the new java printing service and I have run into a couple problems. In particular, I have been trying to get even the most basic example referring to printing a postscript file directly to a printer. The code is pretty much straight from sun's JPS section.
    here's the code:
    // Input the file
    FileInputStream textstream = null;
    try {
    textstream = new FileInputStream("c:/0011.ps");
    } catch (FileNotFoundException ffne) {
    if (textstream == null) {
    return;
    // Set the document type
    DocFlavor myFormat = DocFlavor.INPUT_STREAM.POSTSCRIPT;
    // Create a Doc
    Doc myDoc = new SimpleDoc(textstream, myFormat, null);
    // Build a set of attributes
    PrintRequestAttributeSet aset = new HashPrintRequestAttributeSet();
    aset.add(new Copies(5));
    //aset.add(MediaSize.A4);
    aset.add(Sides.DUPLEX);
    // discover the printers that can print the format according to the
    // instructions in the attribute set
    PrintService[] services =
    PrintServiceLookup.lookupPrintServices(myFormat, aset);
    // Create a print job from one of the print services
    if (services.length > 0) {
    DocPrintJob job = services[0].createPrintJob();
    try {
    job.print(myDoc, aset);
    } catch (PrintException pe) {
    System.out.println("error");
    Now....I've just installed printer drivers in Windows 2K for a RICOH and CANON iR550 printer. Both printers support PS3 and the RICOH Aficio AP2700 PS printer also supports IPP (Note: I physically don't have these printers, so I'm just printing to a file and viewing the file with a PCL viewer).
    okay...now...the problem at hand....I can do the following with the code above:
    1) I can print a postscript file to the printer with NO attributes specified...once I add Copies and Media types..no services are found...
    2) specifying a PDF docflavor and pdf file will not return any services.
    3) If I specify AUTOSENSE in the docflavor, the PDF will be sent to the printer but 'junk' will be printed out. Basically, the printer doesn't seem to understand the file type.
    I've tried other printer drivers from other printer companies with no success.
    Now, my question to everyone who has SUCCESSFULLY printed PDF/Postscript with the Java Print Service using attributes such as Mediasize, Duplex printing, Copies...please...please respond to this message and provide some insight on how you did it (i.e. printer type, drivers, code snippit, etc...)
    am I missing something?
    I know alot of people having the same problem...
    Thankyou

    Hi,
    You may want to check the DocFlavors that are supported by the printers.
    Using the command as followed,
    // Get the supported flavour
    DocFlavor[] docFlavors = printer.getSupportedDocFlavors();
    for (int i=0; i < docFlavors.length; i++) {
    System.out.println("Supported flavour is " + docFlavors);
    I also hit into the same problem like you, trying to print a PDF into HP LaserJet 5 using AUTOSENSE. Junk output.
    Check the docFlavor supported on the printers are
    Supported flavour is image/gif; class="[B"
    Supported flavour is image/gif; class="java.io.InputStream"
    Supported flavour is image/gif; class="java.net.URL"
    Supported flavour is image/jpeg; class="[B"
    Supported flavour is image/jpeg; class="java.io.InputStream"
    Supported flavour is image/jpeg; class="java.net.URL"
    Supported flavour is image/png; class="[B"
    Supported flavour is image/png; class="java.io.InputStream"
    Supported flavour is image/png; class="java.net.URL"
    Supported flavour is application/x-java-jvm-local-objectref; class="java.awt.print.Pageable"
    Supported flavour is application/x-java-jvm-local-objectref; class="java.awt.print.Printable"
    Supported flavour is application/octet-stream; class="[B"
    Supported flavour is application/octet-stream; class="java.net.URL"
    Supported flavour is application/octet-stream; class="java.io.InputStream"
    However, do not know how to create a print service to support PDF. Obviously, we know that HP LaserJet 5 can print PDF.
    Regards
    Heng

  • How do I print .pdf documents with reader for windows 8?

    I have Reader for windows 8.  How can I print .pdf documents with it? 

    See FAQ: Printing from Adobe Reader for Windows 8 Tablets.

  • HT5701 Cannot download pdf files with Safari 6.0.4?

    Cannot download pdf files with Safari 6.0.4

    Back up all data.
    Triple-click the line of text below to select it, the copy the selected text to the Clipboard (command-C):
    /Library/Internet Plug-ins
    In the Finder, select
    Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens (command-V), then press return.
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    The "Silverlight" web plugin distributed by Microsoft can also interfere with PDF display in Safari, so you may need to remove it as well, if it's present.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Can not print pdf file with firefox 29.0 pdf preview plugin. Why?

    Can not print pdf file with firefox 29.0 pdf preview plugin. Why?

    Control V doesn't work here for a screenshot.

  • I cannot attach pdf files in Outlook. Just started yesterday. I need a fix as I use this alot.

    I cannot attach pdf files in Outlook. Just started yesterday. I need a fix as I use this alot.

    You can experiment with how Firefox would run after a reset or reinstall by creating a new profile.
    A new profile will have your system-installed plugins (e.g., Flash) and extensions (e.g., security suite toolbars), but no themes, other extensions, or other customizations. It also should have completely fresh settings databases and a fresh cache folder.
    Exit Firefox and start up in the Profile Manager using Start > search box (or Run):
    firefox.exe -P
    Any time you want to switch profiles, exit Firefox and return to this dialog.
    You'll click the Create Profile button. I recommend using the default location suggested (in other words, don't click the button to choose a different folder). Then start Firefox in the new profile you created.
    After Firefox settles down, try Outlook. Any luck?
    If it works, log out of Outlook, exit Firefox, restart it and check again. If it doesn't work the second time, one possible explanation is a a system-installed add-on getting picked up or activated.
    When returning to the Profile Manager, you might be tempted to use the Delete Profile button. But... it's a bit too easy to accidentally delete your "real" profile, so I recommend resisting the temptation. If you do want to clean up later, I suggest making a backup of all your profiles first in case something were to go wrong.

  • When I try to print labels I get no preview of the labels and then it just prints blank pages. Help please

    When I try to print labels I get no preview of the labels and then it just prints blank pages. Help please

    I post the same instructions almost every day...
    Change the Adobe Reader Preferences
    Documents: set 'View documents in PDF/A mode' to Never
    Security (Enhanced): disable Protected Mode at Startup

  • I am trying to set up using my printer wirelessly through airport.  I have a macbook and my husband can print wirelessly from his Macbook Pro but I can't.  What do I have to do to set mine up?  The printer is an Epson R2400

    I am trying to set up using my printer wirelessly through airport.  I have a macbook and my husband can print wirelessly from his Macbook Pro but I can't.  What do I have to do to set mine up?  The printer is an Epson R2400

    Is there a cd that came with the printer?
    If so, put in the cd and that will help you set it up.
    If not, I think macs come with a program that helps you set up printers.
    Also make sure that the printer is connected to the same network.
    Make sure the printer is on.

  • 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.

  • Cannot print PDF's with Kyocera

    I am using a Kyocera 5050 in my office installed as a network printer that utilizes local authorization codes for each employee in order to track printing usage. Normally, a print job will be sent to the printer and a box will pop up asking for credentials (the username and password for the printer). The printer will authorize the print job and then print it. I have one employee which cannot print PDF's from Acrobat. I tried updating the printer driver, Acrobat is up to date, and he has no trouble printing from any other application. Tried installing Adobe Acrobat Reader in order to see if it was just Acrobat, and Reader will not allow printing either. The computer will send the print job to the printer, but the printer rejects the credentials and will not print the job. No other employee has issues so it isn't a network issue, and his credentials work in any other software outside of Adobe products so I'm assuming that the issue lies within Adobe's software. Any ideas?

    I we understand your posting, only one user out of a group of users printing to a particular printer requiring credential presentation is having problems printing from Acrobat. How do you conclude that “the issue lies within Adobe's software” given that the other users don't have this problem?
    The particular printer, the Kyocera 5050, supports a number of page description languages, including their own emulations of PostScript and PCL. What page description language is being used? Are all the users setup with the same driver using the same page description language and the exact same driver settings?
    Acrobat and Reader generate their own PostScript, bypassing the driver for that function. Drivers that attempt to put up their own dialogs (such as requesting credentials) and then try to insert commands into the PostScript stream must do so very carefully per conventions established by Microsoft and Adobe. If such commands (such as a pre-job authentication stream) are not properly inserted, then they might be put into the job in the wrong place or go missing altogether.
    I would recommend checking the driver for the user experiencing the problems, making sure it is the exact same version and having all the same settings as those for users not having problems.
                        - Dov

  • I cannot print pdf files with Adobe flash player installed

    Hello,
    I have just encountered an issue with printing PDF files on my computer. I am running windows 7 64 bit. I just upgraded to the latest Flash player with firefox addon. After I completed the upgrade, I soon realized that I could no longer print pdf files. Whenever I opened a pdf file and attempted to print it, through several different supported pdf programs, the print screen would up becoming unresponsive and I would have to close the pdf program through the task manager. I unistalled the adobe flash player and it's accompanied addon, and I was then able to print pdf files again without any issues. Can you please help me resolve this issue? Is anyone else having similar problems? Thank you in advance.

    Very strange!  What is your installed Reader version?
    Try disabling Protected Mode in Adobe Reader [Edit | Preferences | Security (Enhanced)].

Maybe you are looking for

  • ESYU: Importing Standard Purchase Orders에서 문제 발생시 진단 방법

    Purpose Oracle Purchasing - Version: 11.5.10.2 to 12.0.6 Information in this document applies to any platform. ConcurrentProgram:POXPOPDOI - Import Standard Purchase Orders 이 문서는 reader게 Importing Standard Purchase Orders 실행 중 갑자기 발생하는 issue에 대해 어떻게

  • Pdf crop marks disappear!

    Hi, I am currently receiving pdf files of ads which will feature in a magazine. I'm using QXP to bring the mag together. When I import some of the pdfs some of the ads look like they are trimmed to the page size, but when I open the pdf the trim mark

  • Safari missing images in Gmail

    Hi guys, Since yesterday I've got really weird problem - safari isn't displaying any images in Gmail, or open Google Drive site. If I copy out the url, it simply looks like Safari can't connect to ssl.gstatic.com - it says "Safari can't open the page

  • APP payment

    Hi all, For a particular vendor(say 100000) in master record the payment method is defined as C(check). When i am  posting an invoice with that vendor i am changing the payment method to A(ACH).Now if i do payment thru APP for that vendor it is clear

  • R12 Oracle Diagnostics Zip files

    Sorry if this has been asked before but my understanding is Oracle Support's preference when uploading multiple files to an SR is to zip them into a single zip file. However when you are asked by Support to run multiple R12 Oracle Diagnostics each re