Trouble with Reader

Having trouble with Adobe Reader 9.5.  Cannot open program; and cannot open a .pdf file.  No error messages, just nothing happens.  Tried to delete software and re-download.  Cannot delete it - message says patch package could not be opened.

What is your operating system?  If Windows, use http://labs.adobe.com/downloads/acrobatcleaner.html and reinstall Reader.

Similar Messages

  • Loading trouble with reader

    In trying to load reader from the online store, it gets about 80% finished and then gives an error saying I need a registration key. I have had Reader on this computer before and it worked fine but one day it stopped coming up automatically on the list for opening attachments. If I could load an older version that is simpler that would be the best. Any ideas? Running windows XP pro. Thanks

    I just wanted to say I was "searching" for answers to my own trouble with Adobe Reader 9, when I came across your post and "graffiti's" answer!
    Graffiti wrote:
    "Are you trying to get it from here: http://get.adobe.com/reader/
    If so, try downloading from the FTP site at ftp://ftp.adobe.com/pub/adobe/reader/win/9.x/9.1/enu/AdbeRdr910_en_US.exe and see what happens. It should work."
    I clicked directly on that link ftp://ftp.adobe.com/pub/adobe/reader/win/9.x/9.1/enu/AdbeRdr910_en_US.exe and it did WORK!!! I'm so grateful because for days I've been unable to access documents that require Adobe Reader!
    Thank you Graffiti, and thank you duendestudio for the post heading I needed ~ I'm now a happy camper! 
    God bless you both!
    Litaseat
    PS: I run Win XP Home

  • Trouble with Reader 9.3.0

    Having trouble downloading 9.3.0. Erros 1304 and 1310 keep coming up.  I don't know what to do.

    Hi,
    we have exactly the same problem here and I also figured out, that the GUID seems to be the one from Adobe Reader 9.1. Is there any chance to update an administrative installation to 9.3.1 without uninstalling installed 9.3.0? In my opinion, an administrative installation will be made to avoid uninstalling on the client side, so hopefully Adobe will soon publish a patch which can be used  with an administrative share.
    Thanks,
    Stephan

  • Trouble with reader & player

    Tried to download, went ok, but when tried to install, got to 50% than got a message failed to initilaize?  Any ideas?  Tried many times, does it to both.
    thanks,
    Sean

    Could you provide some details about the computer/OS/Browser?
    Are you signed in with Admin priviliges?
    Does the error occur even if you use a different browser?

  • Trouble with Reader Option Screens

    I have Windows XP SP3 32bit. I have completely uninstalled and reinstalled Adobe Reader with no errors. I can open pdf files, read them and even fill in forms. When I try to print, change preference or settings, I get strange looking DOS like screens with very large block letters which have strike marks through them. This is driving me absolutely bananas. Any help would be greatly appreciated.

    Strangest thing, another response to my question pointed out a German
    version with the same problem. A corrupt Tahoma TTF font. I checked the
    font first with my word processor with no problem. I uninstalled and
    reinstalled it anyway and my Adobe Reader problem was fixed.
    Go figure.
    Thanks for your response.

  • Having trouble with reading hex from an input file - please help

    Hi, I have a txt file with rows of hex, and I need to read each line and add it to an int array. So far I have:
    BufferedReader fileIn = new BufferedReader(new FileReader("memory.txt"));
                    int count = 0 ;
                    String temp = fileIn.readLine();
                    int file_in = Integer.parseInt(temp) ;
                    while(temp!=null) {
                         data[count] = file_in;
                         temp = fileIn.readLine();
                         file_in = Integer.parseInt(temp,16);// Integer.parseInt() ;
                         count++ ; /* increment counter */
                    } memory.txt:
    4004000
    4008000
    3FDF4018
    4108200
    3C104001
    FFFFFFE8
    4010C6C0
    FFFFFFE8
    94000000The above code crashes on the third input (my guess is becuase there are letters in and it can't parseInt letters.
    I think I need to parse it into an array of chars instead, however I don't know how to get from the string (temp) to the char array.
    can anyone help?

    ok turns out it's just a null pointer exception on the data[count] line, becuase I've only initialised the first two slots of data. i didn't see it before becase it was just throwing an error and i never printed it out.
    here's how I've defined data:
    in the class
    int[] data;just before the code to input the file data:
    for ( int i = 0; i < length; i++ )       
                    data [ i ] = 0;thinking this shoudl go through all the array and initialise it. but it gives a NullPointerException on the data=0; line.
    any ideas?
    Edited by: rudeboymcc on Feb 6, 2008 10:50 PM
    Edited by: rudeboymcc on Feb 6, 2008 10:51 PM

  • Trouble with reading from partitioned drive.

    Hi guys.
    A family member has entrusted me with trying to sort out her laptop. Her internal hard drive was full and was not letting her do anything.
    I found out that the drive was partitioned in half 80GB/80GB.
    I then proceeded to clean up the laptop as it hadn't had any cleanup done to it in the 4 years of owning it and it was very slow.
    I got to the iTunes folder and moved it to the partitioned half. I then looked into getting the iTunes program to read the files from this drive b changing the folder location through Edit> Preferences> Advanced> Change iTunes Media folder Location.
    I changed it to D:\iTunes Media\Music
    At first this worked and all the library was listed. Then after the family member got it home she opened it up and there wasn't anything in the library.
    It had reverted back to :C drive where there wasn't any media anymore as I have deleted it. Currently it is still in the : D drive and also on an External HDD backed up.
    I would like to know how I am supposed to get iTunes to read the media from the Partitioned drive and also use this drive as its storage drive all the time when purchasing media.
    I am not all that good with this kind of thing as there is only so much I can understand from the internet

    anyone?

  • Still having trouble with reading text file into array

    Hi, This is from another post, I have tried one of the solutions that were provided, but got the following error at runtime:
    C:\j24work>java Test7
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException
    at java.lang.StringBuffer.deleteCharAt(StringBuffer.java:681)
    at Test7.main(Test7.java:26)
    My code is attached. My text file reads as follows:
    7 5.5 15 5.35 30 6.5
    The first , third and fifth numbers should ultimately be int values representing the term of a mortgage. The second, fourth and sixth numbers ultimately need to be doubles representing the rate on a mortgage. Do I need a 2d array??
    import java.io.*;
    import javax.swing.*;
    import java.awt.*;
    import java.text.*;
    public class Test7 {
        public static void main(String[] args) throws Exception {
            String line        = null;
            int count   = 0;
            StringBuffer Term  = new StringBuffer();
            StringBuffer Rate  = new StringBuffer();
            BufferedReader input = new BufferedReader (new FileReader ("MortgageValues.txt"));
            while ((line = input.readLine()) != null) {
                if(count%2 == 0) Term.append(line).append(",");
                else        Rate.append(line).append(",");
                count++;
            Term.deleteCharAt(Term.length() -1);
            Rate.deleteCharAt(Rate.length() -1);
            System.out.println("Term>>>" +Term);
            System.out.println("Rate>>>" +Rate);
           // input.close ();
        }

    Okay, modify the code as below:
    import java.io.*;
    import java.util.*;
    public class Test7 {
        public static void main(String[] args) throws Exception {
            String line             = null;
            StringTokenizer strTok  = null;
            int count          = 0;
            StringBuffer term  = new StringBuffer();
            StringBuffer rate  = new StringBuffer();
            BufferedReader input = new BufferedReader (new FileReader ("MortgageValues.txt"));
            while ((line = input.readLine()) != null) {
                strTok = new StringTokenizer(line);
                while(strTok.hasMoreTokens()) {
                    if(count%2 == 0)    term.append(strTok.nextToken()).append(",");
                    else                rate.append(strTok.nextToken()).append(",");
                    count++;
            term.deleteCharAt(term.length() -1);
            rate.deleteCharAt(rate.length() -1);
            System.out.println("term>>>" +term);
            System.out.println("rate>>>" +rate);
           input.close ();
    }Cheers!
    ***Annie***

  • Trouble with reader installing on vista gets to 92%

    Do not remember the version I had of adobe reader then it stopped working. I have download several times the new adobe reader. it gets to about 92% downloaded and then freezes up. What cn I do? Thanks

    Try saving the Reader to your desktop by downloading from this link:
    http://tinyurl.com/2qfksc
    If you are on Vista either disable Protected Mode in IE or use Firefox to download.
    Good Luck!

  • I am having trouble with the cache in bridge.  When i open I get a message saying bridge has encountered a problem reading the cache try purging in the central cache to correct the situation.  I did that but now when I try to get to the folders where my p

    I am having trouble with the cache in bridge.  When i open I get a message saying bridge has encountered a problem reading the cache try purging in the central cache to correct the situation.  I did that but now when I try to get to the folders where my photos are stored bridge never gets to where I can work.  The message appears "building criteria" and I get an endless loop on the lower left panel.  How do I correct?

    You correct it by leaving Bridge alone until it finishes rebuilding its cache, overnight if necessary.

  • I am currently having trouble with an attached PDF fill-able form created in Acrobat being non savable in Reader

    Hello, I was wondering if you would be able to help me out?
    I am having trouble with my attached PDF fill-able form, I am creating a form that has a limit of one page so in order for more room in a certain field I have added a Hyperlink to an additional fill-able(secondary) form within the Parent document (primary fill-able form. The secondary form is inserted as an attachment into the Primary form. My problem is when I open this document up in Adobe Reader, the Primary fill-able form is savable but the attached Secondary form for which the hyperlink leads to is non-savable and is a must print only. Is there a way to make the Secondary form savable as well within the same document? or is there another way I could execute what it is I am trying to achieve?
    Trying to save other as extended reader has not worked, also if I save the attachment file as an extended reader first I am unable to attach a return hyperlink back to the Parent document,
    Help would be greatly appreciated please and thank you!

    I can't say for certain without looking at the actual PDF but it does appear that they created one large text box over multiple lines. For a fillable form it may have been smarter to remove the lines and create a box with smaller text that supports multiple lines.
    At any rate, nothing you can do about it with the free Reader (and depending on the security, maybe nothing with Acrobat either.)

  • Im having trouble with error 13019 I have read the previous discussions about this matter and have tried to do them except for the fact that under the music tab when clicking on my ipod every thing is frozen. It s not my comp. and i dont wish to restore.

    Im having trouble with error 13019 I have read the previous discussions about this matter and have tried to do them except for the fact that under the music tab when clicking on my ipod every thing is frozen. It s not my comp. and i dont wish to restore. Please help!

    If you are wondering why you are not getting any responses, it is because you have vented a complaint without any details that make any sense or give anyone something to work on.
    If you want help, I suggest actually detailing what has happened, with versions of software etc. Anything that would let us assist.
    As a start I am guessing that you have not really got the hang of "How it all works". Firstly download the Pages09_UserGuide.pdf from under the Help menu. Read that and view the Video Tutorials in the same place. A good addition would be the iWork 09 Missing manual book and something to help you learn how to use your Mac.
    If there are specific tasks you need help with:
    http://www.freeforum101.com/iworktipsntrick/index.php?mforum=iworktipsntrick
    Is a good resource.
    Peter

  • Why am I having so much trouble with my iPad air 2 reading and remembering my fingerprints?

    Why am I having so much trouble with my iPad air 2 reading and remembering my fingerprints? Even if I enter the same finger 5 times, it only works once or twice.

    Try this -> http://m.facebook.com
    which is the mobile optimized page of FaceBook.

  • I am having trouble with my adobe reader

    I am having trouble with my adobe reader. I am not able to access my report I am supposed to be working on that is time sensitive. I have had tech support for 2 days trying to trouble shoot. They have done all they can do and told me to call Adobe. I cannot find an number anywhere.

    Look on the "Contacts" page.
    But you may get quicker help if you describe your problem (with all the details) here.

  • Trouble with adobe reader on Mac

    Any one having trouble with Adobe acrobat reader?

    You should only download Adobe Reader from the real Adobe site, clones can be bad:
    http://get.adobe.com/reader/

Maybe you are looking for

  • Any ideas for this situation?

    I have a application which allows users to enter information about a file and stores the information in an XML file of the same name. So, if I had a file at d:\myFolder\myFile.ext it would create the following xml file d:\myFolder\myFile.ext.xml As y

  • URL links not working in safari

    Hello, I am unable to open URL links in Safari. (iPad) all was well until a few days ago and I must have done something!  Everything else is working fine. Can anyone help me sort this out.  I'm sure there is something in settings but I can't find it.

  • Palm TX won't work with new wifi router

    I have used a Belkin 54g for years with no problem. I set up a Netgear N300 and my Palm TX won't connect. I even tried using guest connect with no security and still nothing. I'm stuck. All of my other equipment connects just fine.

  • OIM11g HowTo develop custom reconcilliation process

    Hi Can someone guide me please: When performing initial full reconciliation to load user accounts from my trusted source to OIM, I need to execute a rule or something that take an user attribute from the "source" (employeeNumber) and process it in or

  • Business Object & Global Classes

    Is there any link between Business Objects and Global Classes? Sameer Message was edited by: SAMEER INAMDAR