Need help with pdf file

I have the version Adobe Reader XI and I can't open up a pdf attachment.  I tried all the troubleshooting in the help menu but nothing is working.   I have to be able to open up pdf file every day. HELP

Okay the pdf file has a little (save) at the bottom of the file and when you click on it, it says (save to my computer) When I click on this it does not give me an option of where to put the file it just blinks for a secondlike it saved it somewhere but when I go into my c drive and look I can't find it or when I go into adobe reader I can't find it so I tried right clicking on the save to my computer and got these messages
open
Open in tab
open in new window
save target as
Now I have tried all of these and it does the same thing.  Just blinks for a second like it did something but again I can't find the file.  I really would like to just go back to opening the file in my email.  Do you think if I uninstalled Adobe reader X1 and reinstalled another adobe reader that might get me back to what I used to have?  This just happened yesterday and I have the same browser and haven't changed anything on my browser but I did update adobe reader so I was thinking it had something to do with Adobe reader X1.
If you don't think this will work then go ahead and walk me through saving the pdf file but so far I have not been able to open or save it.

Similar Messages

  • Need help with connecting file inputs to arrays

    In this assignment I have a program that will do the following: display a list of names inputed by the user in reverse order, display any names that begin with M or m, and display any names with 5 or more letters. This is all done with arrays.
    That was the fun part. The next part requires me to take the names from a Notepad file, them through the arrays and then output them to a second Notepad file.
    Here is the original program: (view in full screen so that the code doesn't get jumbled)
    import java.io.*;       //Imports the Java library
    class progB                    //Defines class
        public static void main (String[] arguments) throws IOException
            BufferedReader keyboard;                                  //<-
            InputStreamReader reader;                                 //  Allows the program to
            reader = new InputStreamReader (System.in);               //  read the the keyboard
            keyboard = new BufferedReader (reader);                  //<-
            String name;                 //Assigns the name variable which will be parsed into...
            int newnames;               //...the integer variable for the amount of names.
            int order = 0;              //The integer variable that will be used to set the array size
            String[] array;             //Dynamic array (empty)
            System.out.println (" How many names do you want to input?");   //This will get the number that will later define the array
            name = keyboard.readLine ();
            newnames = Integer.parseInt (name);                                         // Converts the String into the Integer variable
            array = new String [newnames];                                               //This defines the size of the array
            DataInput Imp = new DataInputStream (System.in);       //Allows data to be input into the array
            String temp;                                       
            int length;                                                                  //Defines the length of the array for a loop later on
                for (order = 0 ; order < newnames ; order++)                                //<-
                {                                                                           //  Takes the inputed names and
                    System.out.println (" Please input name ");                            //  gives them a number according to
                    temp = keyboard.readLine ();                                           //  the order they were inputed in
                    array [order] = temp;                                                  //<-
                for (order = newnames - 1 ; order >= 0 ; order--)                                //<-
                {                                                                                //  Outputs the names in the reverse 
                    System.out.print (" \n ");                                                   //  order that they were inputed
                    System.out.println (" Name " + order + " is " + array [order]);             //<-
                for (order = 0 ; order < newnames ; order++)                                  //<-
                    if (array [order].startsWith ("M") || array [order].startsWith ("m"))     //  Finds and outputs any and all
                    {                                                                         //  names that begin with M or m
                        System.out.print (" \n ");                                            //
                        System.out.println (array [order] + (" starts with M or m"));         //
                    }                                                                         //<-
                for (order = 0 ; order < newnames ; order++)                                            //<-
                    length = array [order].length ();                                                   //
                    if (length >= 5)                                                                    //  Finds and outputs names
                    {                                                                                  //  with 5 or more letters
                        System.out.print (" \n ");                                                      //
                        System.out.println ("Name " + array [order] + " have 5 or more letters ");      //<-
    }The notepad file contains the following names:
    jim
    laruie
    tim
    timothy
    manny
    joseph
    matty
    amanda
    I have tried various methods but the one thing that really gets me is the fact that i can't find a way to connect the names to the arrays. Opening the file with FileInputStream is easy enough but using the names and then outputing them is quite hard. (unless i'm thinking too hard and there really is a simple method)

    By "connect", do you just mean you want to put the names into an array?
    array[0] = "jim"
    array[1] = "laruie"
    and so on?
    That shouldn't be difficult at all, provided you know how to open a file for reading, and how to read a line of text from it. You can just read the line of text, put it in the array position you want, until the file is exhausted. Then open a file for writing, loop through the array, and write a line.
    What part of all that do you need help with?

  • Need Help with .nnlp File.............A.S.A.P.

    I'm having a problem also with my JNLP file. I have downloaded the program onto one computer and that computer is using j2re1.4.2_04
    The other computers I believe are all running j2re 1.4.2_05
    I'm not sure if that's make a difference, but on the computer with j2re 1.4.2_05 when going to the site where the .jnlp file is located, the application comes up and says Starting Application. After it gets to that screen it just stays there. I really need help with this as soon as possible.
    Here is my .jnlp file listed below:
    <?xml version="1.0" encoding="utf-8"?>
    <jnlp
      spec="1.0+"
      codebase="http://www.appliedsolutions.com/placewiz"
      href="Placewiz.jnlp">
      <information>
        <title>Placement Wizard 4.0</title>
        <vendor>Applied Solutions, Inc.</vendor>
        <homepage href="index.html"/>
        <description>Placement Wizard 4.0</description>
        <description kind="short">Short description goes here.</description>
        <offline-allowed/>
      </information>
      <resources>
        <j2se version="1.4+"/>
        <j2se version="1.3+"/>
         <j2se version="1.5+"/>
        <jar href="Placewiz.jar"/>
      </resources>
      <security>
          <all-permissions/>
      </security>
      <application-desc main-class="com/asisoftware/placewiz/loader/Exec">
    </jnlp>

    This was due to a change in 1.4.2_05
    the main class attribute
    main-class="com/asisoftware/placewiz/loader/Exec">is wrong - it should be:
    main-class="com.asisoftware.placewiz.loader.Exec">this didnt seem to mater before 1.4.2_05, but some change in java since then caused this bad class specification to stop loading.
    /Andy

  • Need help opening pdf files

    I have a cd, which I have had for several years, and was able to use until the last year.  Suddenly, Adobe Reader (I have tried several versions, updates, fixes, whatever!) says that each and every pdf file on the disk is damaged.
    This is a cd that used to be able to start up on its own, and had various menus to get to the final pdf pages.  I cannot open the files through windows explorer, nor by going through the menus.  Each time, the error message tells me the file(s) was damaged because it was sent via e-mail or some other method that caused the files to be damaged.  The problem with that is that the files and the cd were never altered, as the cd is not a rewritable one.  It is also not pirated, if anyone is going to ask that question.
    The cd is a manual for my vehicle.  It has a parts manual, and a workshop manual along with other items.  When the cd is put into the drive, it starts automatically, but cannot get a single file open.  I have tried this in two different systems, and I get the same results.  The strange thing is that I have files made under earlier Reader versions that still work.  So why not this one, and why isn't someone at Adobe available to help me straighten this out?  Shame on them!

    PraveenAggarwal wrote:
    I am facing the similar problem. Not able to open some PDFs. Was able to open till 2-3 months back. Did some analysis that not able to open the files created with version older the 9.0 of Adobe Reader. Also tried to open the same PDFs in my colleagues' Laptops and my home PC. No Success.
    NEED SERIOUS ATTENTION FROM ADOBE.
    You are in a user to user forum. If you want attention from Adobe, you'll have to contact Adobe and pay for the attention, as they don't provide free attention for problems related with the free Reader.
    Adobe Reader cannot create PDF files, only open (read) them. If you cannot open some PDFs from within Reader in your machine and others, most probably they are damaged. Are you receiving any error messages when you try to open them? "Not able to open" doesn't say much, really.

  • I need help with viewing files from the external hard drive on Mac

    I own a 2010 mac pro 13' and using OS X 10.9.2(current version). The issue that I am in need of help is with my external hard drive.
    I am a photographer so It's safe and convinent to store pictures in my external hard drive.
    I have 1TB external hard drive and I've been using for about a year and never dropped it or didn't do any thing to harm the hardware.
    Today as always I connected the ext-hard drive to my mac and click on the icon.
    All of my pictures and files are gone accept one folder that has program.
    So I pulled up the external hard drive's info it says the date is still there, but somehow i can not view them in the finder.
    I really need help how to fix this issue!

    you have a notebook, there is a different forum.
    redundancy for files AND backups, and even cloud services
    so a reboot with shift key and verify? Recovery mode
    but two or more drives.
    a backup, a new data drive, a drive for recovery using Data Rescue III
    A drive can fail and usually not if, only when
    and is it bus powered or not

  • Need help with PDF/X-1a

    I am beyond frustrated here so I hope someone can help me!!!! Ii have Adobe 8 Standard and I can't find the PDF/X-1a in my distiller. I need this particular preset to upload a book cover. The website won't accept any other format. The only thing I have in my distiller is PDF/A-1b.
    Does anyone know where I can get the correct distiller? Everyone I know with Adobe 8 has the PDF/X-1a in their options and they don't remember having to do anything special to get it.

    Assuming you have Acrobat installed, it would not hurt to verify compliance after the document is created. With the doc open (on my vesion 9) Advanced > Print Production > Preflight > PDF/X Compliance > Verify compliance with PDF/X-1a  hit analyze
    Note that a document must have a Title in the Title box under Document > Properties (ctrl+d) to pass X-1a and, for whatever reason, analyze and fix cannot add this.
    And I'm far from the resident expert here..

  • I need help creating PDF files from Outlook .msg files.

    I am trying to create a single PDF file from a group of Outlook .msg files. I need the attachments to be preserved and I am hoping that the individual .msg messages will be separated / bookmarked.
    I am trying to remove large quantities messages from my mailbox and store them elsewhere as a record of correspondence. 

    Try running Repair Disk on the external drive.
    With the drive connected go to Applications / Utilities / Disk Utility and double click DU.
    In the left column click to select the name of the external (the item indented to the right).
    Click First Aid.
    Click Repair Disk.
    Unless you get a message the drive cannot be repaired, you should run Repair Disk again and again until you see green text saying the disk was repaired.
    Quit DU.
    If you get the message that the disk cannot be repaired, you will need a more powerful repair utility.

  • Need help opening pdf file created in japanese adobe

    I have Adobe Reader 9. Acolleague just sent me a document that was created in a Japanese version of adobe. It is still a pdf file, but I cannot open it. I get a message saying some components needed to complete thte operation are missing, and would I like to go to the Adobe page on the web to look for them? If I say yes it takes me to the Adobe page, but I can't find anything obvious to add.
    In the file's properties, it said the application is [some japanese characters]v1.12Rev0480
    Please help

    Maybe you need to download and install the Japanese font pack from http://www.adobe.com/support/downloads/detail.jsp?ftpID=3979 (Windows)

  • Help With PDF FILE Conversion

    Hi,
    I’ve been using Flash Professional CS 5.5 to create a “simple presentation” for a project I want funding for, which must be presented in a PDF format. I used CS5.5 thinking that the simple presentation template and the program in general was simple enough to just convert into a PDF, but I guess there are a lot of coding issues that don’t make that easy.
    So what I’m asking for help on is how to convert my presentation (which has no animations...only graphics, texts, and a total of 8 key frames) into a PDF file.
    It appears the closest I’ve gotten to this is to add the jpeg format in the "publishing settings" window (which I can than turn into a PDF file right?), but for some reason the jpeg file is not showing up on my computer (I also cant preview SWF file because it only appears to be accessible when I am using the file during editing).
    thanks for reading!
    Daniel

    Try File -> Export -> Export movie (PNG sequence)
    This should work just fine if you don't have any actionscript in the presentation (AS is ignored).

  • Help with PDF files

    Would anybody know if a PDF file can be imported into an
    excel spreadsheet? if so HOW?

    Hi Erin,
    Thank you for posting to our forums.
    These forums are for Acrobat.com's services, and don't cover
    questions specific to the Acrobat desktop products, or the MS
    office products.
    For office support, you'll want to look through microsoft's
    support pages.
    For acrobat support, here is a
    Link to
    Acrobat Forums
    I'm not sure if this web page will cover what you're needing
    to do, but a google search found this page, and maybe it'd be a
    start for you..
    PDF
    tables in excel
    Hope this points you in the right directions!
    Take care,
    Pete

  • Need help with backup files made by HP Recovery.

    So in 2011 I had made a post about a DV9 series HP laptop I had that I felt needed a harddrive. Well the laptop has been sold to a friend of mine and he has since fixed the issue it had. My curent deboggle is trying to deal with the 36GB of data it backed up onto an external USB powered harddrive. The information was saved from a system that ran Windows VISTA, on that same DV9 Pavilion. I have a new laptop and it's a Pavilion DV6 running windows 7. Is there some sort of 3rd party application or an uncommon HP utility that can open, run or modify. Specificaly I need to some files but not all, but if my only option is to extract all then that would be fine also. There is an executible in the backup folder but it doesn't extract anything it just locks up. 
    For the TLR portion, need to access backup files made on an older HP laptop with windows vista to a newer HP latop running windows 7.

    Terribly sorry for the post, I should have researched more before posting. I found the answer to my issue in another thread here on the HP forums! Thanks so much!!

  • Need help with fla.file

    Hi!
    I'm always having trouble with a fla.file in cs3 professional. Every time i try to reopen the file in flash i get this:
    failed to open document/users.desktop/jason/social.fla
    pls help reopen this file
    jay

    create a new directory and move your fla there and try and open.  if that fails, change the file's name and try and reopen.  if that fails and you created the fla, it's probably corrupt.

  • Need help with batch file for javac.exe and java.exe

    I have this in my batch file:
    c:\jdk1.3.1_05\bin\javac
    What symbol do I need to be able to run this from cprompt with any file following it

    Thanks could remember that for nothing

  • Need help with copying files onto external drive

    I need help! Trying to copy downloaded movie files from Vuze (which have downloaded successfully) and copy onto external hard drive to view them but it wont let me copy over to the external device. Any ideas how to fix this please???

    Can you explain the steps you used, and the error message (or symptom), that says the copy did not work? 

  • Need help with a file i am trying to print

    i try to print this file using adobe reader with all updates and it says
    can not print pdf
    it is trying to flatten the file before the print
    it still sends it to the printer but my boss says it should not give us an error message
    please help me
    https://www.dropbox.com/s/8ts56kjul4o3ygk/13-118%20IP%202013-11-8.pdf

    You don't need an Event Structure, a simple State Machine would be more appropriate.
    There are many examples of State Machines within this forum.
    RayR

Maybe you are looking for

  • Unable to print to Canon iR-Adv C5045 from MacBook Pro that is connected to Windows computer and shared on the network

    I am unable to print to a Canon iR-Adv C5045 from a MacBook Pro (OS X 10.9.4) that is connected to Windows NT computer and shared on the company network.  I am connected to the network by ethernet. I was able to add the printer manually by going to A

  • Recipes app iPhone?

    Hi! I have been sarching for an app where I can create my own recipes (pictures and text) via computer and have it synced into my iPhone. In this app I also want to get a grocery list for the recipes that I choose. I go grocery shopping once a week a

  • Auto number generation in custom table

    Hi, Is it possible to auto generate number in custom table. My requirement is to generate the number once anyone makes entry in the table. I guess there is a way to put code in tables but I have no clue how that can be acheived. If anyone has such ki

  • Beware: icloud control panel DOES NOT WORK for icloud email

    Opposing evidence is welcome. Please comment. After dozens of hours, emails and chat sessions with both MS and Apple tech support (the latter escalated as high as it could go - "after this we have to refer you to engineering"), I was finally told by

  • Conflicts with multiple VIs

    Hi, we have a setup where we would like 2 VIs to read from a common high speed ADC. The first VI is a "housekeeping" VI which monitors a few channels on the ADC, mostly monitoring temp and pressure in a dewar. The second VI sends commands to an outsi