Adobe reader error when openning an email attachment on ipad.

I can not open Adobe documents sent via email on my iPad since upgrading the app. This is the message:
Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document. You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting  http://www.adobe.com/go/reader_download. For more assistance with Adobe Reader visit  http://www.adobe.com/go/acrreader. Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries.

Your PDF document is a special type of form called a "dynamic XFA form".
Currently, Adobe Reader mobile products (for iOS, Android, Windows Phone) do not support static or dynamic XFA forms that are created with Adobe LiveCycle Designer.  (This is not a new problem, however.)
The message "Please wait..." is displayed when a dynamic content is not supported by a PDF viewer.
Please use the desktop version of Adobe Reader on a Windows or Mac computer to fill out XFA forms.
Sorry for the inconvenience.

Similar Messages

  • Outlook 2010 gives error when opening a PowerPoint attachment.

    Outlook 2010 gives error when opening a PowerPoint attachment. 
    Hi All,
    We have several VIP employees that are getting the following error on all PowerPoint documents that come as attachments from Outlook.
    I have researched and tried the following steps and verified these settings are already applied.
    I did find a work around but not a fix and our security team will NOT allow me to change this setting however if I uncheck the setting all employees can open the outlook attachment.
    Any other ideas on a fix for this if I am unable to uncheck Enable Protected View.

    Hi Matthew,
    This is a perennial problem, here is a thread which has a deep discussion about this issue:
    http://social.technet.microsoft.com/Forums/office/en-US/07f710a5-a6ca-4256-8f27-6aac41a6b37e/outlook-2010-unable-to-open-word-excel-and-power-point-attachments-from-an-email?forum=outlook
    It looks like nobady really find a solution there, the only workaround is what you have found - change the protected view setting in Trust Center. You will lose some security by doing this but it seems to be the only solid solution currently.

  • Adobe Reader error when downloading a Form (IMM5257E - required for CIC - Canadá)

    I received an error when downloading a file viwh the Adobe Reader version 11.0.07.
    A message like this appear:
    To view the full contents of this document, you need a later version of the PDF viewer.

    Pat Willener!
    GREAT THANKS! GREAT THANKS! GREAT THANKS!
    I was using Google Chrome, and did not suspect that this could be the
    problem.
    I used I.E. and the download worked. So that's it.
    Great thanks again.
    Vilson Drehmer
    Rua Balduíno Pedro Vier, 693
    CEP 95.880-000 - Estrela - RS
    Fone: (51) 8401.2253
    E-mail: [email protected] <[email protected]>
    CRA-RS 6364
    2014-05-28 5:26 GMT-03:00 Pat Willener <[email protected]>:
        Adobe Reader error when downloading a Form (IMM5257E - required for
    CIC - Canadá)  created by Pat Willener<https://forums.adobe.com/people/pwillener>in *Adobe
    Reader* - View the full discussion<https://forums.adobe.com/message/6414530#6414530>

  • Error when opening the PDF attachment

    Hi,
    We are able to successfully send the PDF attachment to external email id  from SAP SCRIPT:
    but when we are opening the PDF attachment we are getting the following error:
    "Adobe Reader could not open because it is not either a supported file type or the file has been damaged ..etc.."
    Is any logic need to write for the above or any parameters are missing .
    Can any one help...
    Thanks in advance.

    Hi Ramana,
                Just try below given example code.....In which I have just different function Module to convert from OFT to PDF....
       AT END OF VSTEL.
          IF R_EMAIL = 'X'.
    *--Opening Layout set for Printing
            PERFORM CLOSE_FORM.
           SELECT SINGLE SMTP_ADDR INTO V_EMAIL
           FROM ADR6
           WHERE ADDRNUMBER = T_ADRC-ADDRNUMBER.
            CLEAR T_LIPS.
            READ TABLE T_LIPS WITH KEY VBELN = T_LIKP-VBELN.
            CLEAR T_VBAK.
            READ TABLE T_VBAK WITH KEY VBELN = T_LIPS-VGBEL.
            CLEAR V_ADRNR.
            SELECT SINGLE ADRNR
            INTO V_ADRNR
            FROM T001
            WHERE  BUKRS = T_VBAK-BUKRS_VF.
            REFRESH T_CC_EMAIL.
            CLEAR T_CC_EMAIL.
            SELECT  SMTP_ADDR INTO TABLE T_CC_EMAIL
            FROM ADR6
            WHERE ADDRNUMBER = V_ADRNR.
         SELECT SINGLE smtp_addr
         INTO cc_email
         FROM adr6
         WHERE addrnumber = v_adrnr.
            IF T_TO_EMAIL[] IS INITIAL.
              CLEAR T_CC_EMAIL.
              REFRESH T_CC_EMAIL.
            ENDIF.
            PERFORM BUILD_PDF_DATA_TABLE.
    Populate message body text
            PERFORM POPULATE_EMAIL_MESSAGE_BODY.
            CONCATENATE  T_LIKP-VSTEL '-' 'Warehouse Release' INTO V_SUBJECT SEPARATED BY SPACE.
    Send file by email as .xls speadsheet
            PERFORM SEND_FILE_AS_EMAIL_ATTACHMENT
                                         TABLES IT_MESSAGE
                                                PT_CONTENTS_BIN       "LINES    "it_attach
                                          USING V_EMAIL
                                                V_SUBJECT
                                                'PDF'
                                                'Delivery'
                                                'Deliveries'
                                       CHANGING GD_ERROR
                                                GD_RECIEVER.
      Instructs mail send program for SAPCONNECT to send email(rsconn01)
            PERFORM INITIATE_MAIL_EXECUTE_PROGRAM.
          ENDIF.
        ENDAT.
    ***---/End by sagun
      ENDLOOP. "loop at t_likp.
    ***---/added by sagun 25.05.2007
      IF R_EMAIL = 'X'.
        WRITE /01 SY-ULINE(180).
        WRITE :/55 'End of Report'.
      ENDIF.
    ***---/end by sagun
    ENDFORM.                    " PRINT_DELIVERY
    *&      Form  close_form
          text
    -->  p1        text
    <--  p2        text
    FORM CLOSE_FORM .
      IF R_PRINT = 'X'.                   " added by sagun 24.05.2007
        CALL FUNCTION 'CLOSE_FORM'
    IMPORTING
      RESULT                         =
      RDI_RESULT                     =
    TABLES
      OTFDATA                        =
         EXCEPTIONS
           UNOPENED                       = 1
           BAD_PAGEFORMAT_FOR_PRINT       = 2
           SEND_ERROR                     = 3
           SPOOL_ERROR                    = 4
           CODEPAGE                       = 5
           OTHERS                         = 6
        IF SY-SUBRC <> 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.                             " added by sagun 24.05.2007
      IF R_EMAIL = 'X'.
    *otf_table  like itcoo occurs 0 with header line
        CALL FUNCTION 'CLOSE_FORM'
         IMPORTING
           RESULT   = .
             TABLES
               OTFDATA  = HOTFDATA
             EXCEPTIONS
               UNOPENED = 3.
      ENDIF.
    ENDFORM.                    " close_form
    *&      Form  BUILD_PDF_DATA_TABLE
          text
    -->  p1        text
    <--  p2        text
    FORM BUILD_PDF_DATA_TABLE .
      DATA :  LC_FORMAT(3) TYPE C VALUE 'PDF'.
    DATA: lt_tline TYPE tp_tline_standard_table,
      DATA :  L_BIN_FILESIZE TYPE I,
              PC_CONTENTS_BIN_LINES TYPE I.
      CALL FUNCTION 'CONVERT_OTF'
        EXPORTING
          FORMAT                = LC_FORMAT
        IMPORTING
          BIN_FILESIZE          = L_BIN_FILESIZE
        TABLES
          OTF                   = HOTFDATA
          LINES                 = LINES
        EXCEPTIONS
          ERR_MAX_LINEWIDTH     = 1
          ERR_FORMAT            = 2
          ERR_CONV_NOT_POSSIBLE = 3
          OTHERS                = 4.
      IF SY-SUBRC = 0.
        CALL FUNCTION 'QCE1_CONVERT'
          TABLES
            T_SOURCE_TAB         = LINES
            T_TARGET_TAB         = PT_CONTENTS_BIN
          EXCEPTIONS
            CONVERT_NOT_POSSIBLE = 1
            OTHERS               = 2.
        IF SY-SUBRC = 0.
          DESCRIBE TABLE PT_CONTENTS_BIN LINES PC_CONTENTS_BIN_LINES.
        ELSE.
    ... -->
        ENDIF.
      ELSE.
    An OTF conversion error occured
    -->
      ENDIF.
    ENDFORM.                    " BUILD_PDF_DATA_TABLE
    *&      Form  POPULATE_EMAIL_MESSAGE_BODY
          text
    -->  p1        text
    <--  p2        text
    FORM POPULATE_EMAIL_MESSAGE_BODY .
      REFRESH IT_MESSAGE.
      IT_MESSAGE = 'Please find enclosed here with our Warehouse Release Document(s)'.
      APPEND IT_MESSAGE.
      CLEAR IT_MESSAGE.
      APPEND IT_MESSAGE.
      APPEND IT_MESSAGE.
      APPEND IT_MESSAGE.
      APPEND IT_MESSAGE.
      IT_MESSAGE = 'For United Phosphorous Inc.'.
      APPEND IT_MESSAGE.
      CLEAR IT_MESSAGE.
    APPEND it_message.
    APPEND it_message.
    APPEND it_message.
      IT_MESSAGE = 'TEST EMAIL from 520 clinet please ignore it'.
      APPEND IT_MESSAGE.
    ENDFORM.                    " POPULATE_EMAIL_MESSAGE_BODY
    *&      Form  SEND_FILE_AS_EMAIL_ATTACHMENT
          text
         -->PIT_MESSAGE  text
         -->PIT_ATTACH  text
         -->P_EMAIL  text
         -->P_MTITLE  text
         -->P_FORMAT   text
         -->P_FILENAME   text
         -->P_ATTDESCRIPTION   text
         -->P_SENDER_ADDRESS   text
         -->P_SENDER_ADDRES_TYPE   text
         <--P_ERROR  text
         <--P_RECIEVER  text
    FORM SEND_FILE_AS_EMAIL_ATTACHMENT  TABLES    PIT_MESSAGE
                                                  PIT_ATTACH
                                            USING P_EMAIL
                                                  P_MTITLE
                                                  P_FORMAT
                                                  P_FILENAME
                                                  P_ATTDESCRIPTION
                                                  P_SENDER_ADDRESS
                                                  P_SENDER_ADDRES_TYPE
                                         CHANGING P_ERROR
                                                  P_RECIEVER.
      DATA: LD_ERROR    TYPE SY-SUBRC,
           ld_reciever TYPE sy-subrc,...
             LD_MTITLE LIKE SODOCCHGI1-OBJ_DESCR,
             LD_EMAIL LIKE  SOMLRECI1-RECEIVER,
             LD_FORMAT TYPE  SO_OBJ_TP ,
             LD_ATTDESCRIPTION TYPE  SO_OBJ_NAM ,
             LD_ATTFILENAME TYPE  SO_OBJ_DES ,
             LD_SENDER_ADDRESS LIKE  SOEXTRECI1-RECEIVER,
             LD_SENDER_ADDRESS_TYPE LIKE  SOEXTRECI1-ADR_TYP,
             LD_RECEIVER LIKE  SY-SUBRC.
    p_filename  = 'INVOICE'.
      LD_EMAIL   = P_EMAIL.
      LD_MTITLE = P_MTITLE.
      LD_FORMAT              = P_FORMAT.
      LD_ATTDESCRIPTION      = P_ATTDESCRIPTION.
      LD_ATTFILENAME         = P_FILENAME.
      LD_SENDER_ADDRESS      = P_SENDER_ADDRESS.
      LD_SENDER_ADDRESS_TYPE = P_SENDER_ADDRES_TYPE.
    Fill the document data.
      W_DOC_DATA-DOC_SIZE = 1.
    Populate the subject/generic message attributes
      W_DOC_DATA-OBJ_LANGU = SY-LANGU.
      W_DOC_DATA-OBJ_NAME  = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR = LD_MTITLE .
      W_DOC_DATA-SENSITIVTY = 'F'.
    Fill the document data and get size of attachment
      CLEAR W_DOC_DATA.
      READ TABLE PIT_ATTACH INDEX W_CNT.
      W_DOC_DATA-DOC_SIZE =
         ( W_CNT - 1 ) * 255 + STRLEN( PIT_ATTACH ).
      W_DOC_DATA-OBJ_LANGU  = SY-LANGU.
      W_DOC_DATA-OBJ_NAME   = 'SAPRPT'.
      W_DOC_DATA-OBJ_DESCR  = LD_MTITLE.
      W_DOC_DATA-SENSITIVTY = 'F'.
      CLEAR T_ATTACHMENT.
      REFRESH T_ATTACHMENT.
      T_ATTACHMENT[] = PIT_ATTACH[].
    Describe the body of the message
      CLEAR T_PACKING_LIST.
      REFRESH T_PACKING_LIST.
      T_PACKING_LIST-TRANSF_BIN = SPACE.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM = 0.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE IT_MESSAGE LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE = 'RAW'.
      APPEND T_PACKING_LIST.
    Create attachment notification
      T_PACKING_LIST-TRANSF_BIN = 'X'.
      T_PACKING_LIST-HEAD_START = 1.
      T_PACKING_LIST-HEAD_NUM   = 1.
      T_PACKING_LIST-BODY_START = 1.
      DESCRIBE TABLE T_ATTACHMENT LINES T_PACKING_LIST-BODY_NUM.
      T_PACKING_LIST-DOC_TYPE   =  LD_FORMAT.
      T_PACKING_LIST-OBJ_DESCR  =  LD_ATTDESCRIPTION.
      T_PACKING_LIST-OBJ_NAME   =  LD_ATTFILENAME.
      T_PACKING_LIST-DOC_SIZE   =  T_PACKING_LIST-BODY_NUM * 255.
      APPEND T_PACKING_LIST.
    Add the recipients email address
      CLEAR T_RECEIVERS.
      REFRESH T_RECEIVERS.
      LOOP AT T_TO_EMAIL WHERE EMAIL <> SPACE.
        CLEAR T_RECEIVERS.
        T_RECEIVERS-RECEIVER = T_TO_EMAIL-EMAIL.
        T_RECEIVERS-REC_TYPE = 'U'.
        T_RECEIVERS-COM_TYPE = 'INT'.
        T_RECEIVERS-NOTIF_DEL = 'X'.
        T_RECEIVERS-NOTIF_NDEL = 'X'.
        APPEND T_RECEIVERS.
        CLEAR T_RECEIVERS.
      ENDLOOP.
    copy email address
      CLEAR T_RECEIVERS.
      IF NOT T_RECEIVERS[] IS INITIAL.
        LOOP AT T_CC_EMAIL.
          T_RECEIVERS-RECEIVER = T_CC_EMAIL-EMAIL.
          T_RECEIVERS-REC_TYPE = 'U'.
          T_RECEIVERS-COM_TYPE = 'INT'.
    t_receivers-notif_del = 'X'.
    t_receivers-notif_ndel = 'X'.
          T_RECEIVERS-COPY       = 'X'.
          APPEND T_RECEIVERS.
          CLEAR T_RECEIVERS.
        ENDLOOP.
      ENDIF.
      CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = W_DOC_DATA
          PUT_IN_OUTBOX              = 'X'
          SENDER_ADDRESS             = LD_SENDER_ADDRESS
          SENDER_ADDRESS_TYPE        = LD_SENDER_ADDRESS_TYPE
          COMMIT_WORK                = 'X'
        IMPORTING
          SENT_TO_ALL                = W_SENT_ALL
        TABLES
          PACKING_LIST               = T_PACKING_LIST
          CONTENTS_BIN               = T_ATTACHMENT
          CONTENTS_TXT               = IT_MESSAGE
          RECEIVERS                  = T_RECEIVERS
        EXCEPTIONS
          TOO_MANY_RECEIVERS         = 1
          DOCUMENT_NOT_SENT          = 2
          DOCUMENT_TYPE_NOT_EXIST    = 3
          OPERATION_NO_AUTHORIZATION = 4
          PARAMETER_ERROR            = 5
          X_ERROR                    = 6
          ENQUEUE_ERROR              = 7
          OTHERS                     = 8.
    Populate zerror return code
      LD_ERROR = SY-SUBRC.
    Populate zreceiver return code
    LOOP AT t_receivers.
       ld_receiver = t_receivers-retrn_code.
    ENDLOOP.
      IF SY-SUBRC = 0.
        FORMAT COLOR COL_NORMAL ON.
        LOOP AT T_LOG.
          WRITE :/03 T_LOG-VBELN,
                  19 SY-VLINE,
                  20 T_LOG-KUNNR,
                  34 SY-VLINE,
                  35 T_LOG-NAME1,
                  76 SY-VLINE,
                  77 T_LOG-EMAIL,
                  110 SY-VLINE,
                  111 'Email Sent Successfuly',
                  180 SY-VLINE.
        ENDLOOP . "t_log
        FORMAT COLOR COL_NORMAL OFF.
        CLEAR T_LOG.
        REFRESH T_LOG.
      ENDIF.
      IF SY-SUBRC NE 0.
        CASE LD_ERROR.
          WHEN   1.
            V_ERROR =  'too_many_receivers' .
          WHEN   2.
            V_ERROR =  'Email address not found in Customer Master' .
          WHEN   3.
            V_ERROR =  'document_type_not_exist'.
          WHEN   4.
            V_ERROR =  'operation_no_authorization'.
          WHEN   5.
            V_ERROR =  'Email address not found in Customer Master'.
          WHEN   6.
            V_ERROR =   'x_error'.
          WHEN   7.
            V_ERROR =   'enqueue_error'.
          WHEN   8.
            V_ERROR =   'Error in sending email' .
        ENDCASE.
        FORMAT COLOR COL_NEGATIVE ON.
        LOOP AT T_LOG.
          WRITE :/03 T_LOG-VBELN,
             19 SY-VLINE,
             20 T_LOG-KUNNR,
             34 SY-VLINE,
             35 T_LOG-NAME1,
             76 SY-VLINE,
             77 T_LOG-EMAIL,
             110 SY-VLINE,
             111 V_ERROR,
             180 SY-VLINE.
        ENDLOOP . "t_log
        FORMAT COLOR COL_NEGATIVE OFF.
        CLEAR T_LOG.
        REFRESH T_LOG.
      ENDIF.
    ENDFORM.                    " SEND_FILE_AS_EMAIL_ATTACHMENT
    *&      Form  INITIATE_MAIL_EXECUTE_PROGRAM
          text
    -->  p1        text
    <--  p2        text
    FORM INITIATE_MAIL_EXECUTE_PROGRAM .
      WAIT UP TO 2 SECONDS.
      SUBMIT RSCONN01 WITH MODE = 'INT'
                    WITH OUTPUT = 'X'
                    AND RETURN.
    ENDFORM.                    " INITIATE_MAIL_EXECUTE_PROGRAM
    Reward Point If it usefull....
    Cheers,
    Sagun Desai....

  • ADobe Reader error while opening CRYSTAL REPORT

    i HAVE INVOKED A CRYSTAL REPORT USING A JSP , AND COULD EVEN EXPORT THAT TO A PDF FILE ,but when i try to open that particular file using the adobe reader am getting the error given below.
    Acrobat could not open MyReport[1].pdf.pdf because it is either not a
    supported file type or because the file has been corrupted (for example it
    was sent as an email attachment and wasn���t correctly decoded).
    Can anyone tell why this is happening ??

    Hi Deep,
    Try these links:
    http://boardreader.com/thread/ERROR_SvcMgr_exe_Entry_Point_Not_Found_5cb3X2r3z.html
    http://www.tek-tips.com/viewthread.cfm?qid=1505754&page=11
    I hope they will help.
    Jesper

  • Acrobat error when opening pdf email attachments

    I have a user who has the latest version of Adobe Acrobat and Reader installed on his PC running Windows 7 Pro SP1 which is up to date on patches.
    He was unable to open any pdf documents attached to email and was getting an error from Acrobat saying it couldn't open them. I changed the default file association for .pdf file from Acrobat to Reader and now he can open most pdf attachments. The only ones he is having a problem with are ones that come from his bank in what he was told by his banker are secure emails.
    What happens when he clicks on the pdf attachment in the emails from his bank is that he gets a popup with Adobe Acrobat in the title bar of the popup and the message that says "Cannot use Adobe Reader to view PDF in your web browser. Reader will now exit. Please exit your browser and try again." The buttons to click on are OK and Cancel. If he clicks OK, the popup goes away and the pdf then opens in Reader.
    So while he can view the pdf, he gets the annoying popup that he has to click through. Is there any way to get rid of that error message popup so when he clicks on the pdf in the secure emails, that it just opens without error like the pdf's do from non-secure emails?
    Jonathan

    Post your question in the forum for Adobe Reader.

  • Adobe Reader Error in Opening PDF Form

    Why do I get this error message when I try to open PDF Application Form using Adobe Reader?
    "Error encountered while processing node xfa[0].form[0].form1[0].#subform[5].ApplicationEligibility[0]. Unable to find suitable font for Japanese encoding."

    Hi Deepak - I am a different user with the same problem as the guy above. I created a form in LiveCycle and when users open it in Reader it gives the error:
    "Error encountered while processing node xfa[0].form[0].form1[0].#subform[0].#draw[2]. Unable to find suitable font for Japanese encoding."
    Before I try to recreate the form from scratch, do you know how to fix this? For the record, the form was NOT built using any Japanese fonts.
    Thanks,
    Michael

  • Adobe Reader closes when opened...

    My adobe reader keeps closing when being opened.
    The error message can be seem below:
    http://s1023.photobucket.com/albums/af354/methoddingo/?action=view&current=adobeerror.jpg
    However, I have no problem viewing adobe files from my microsoft outlook previewer.
    Any advice?

    Uninstall Reader using http://labs.adobe.com/downloads/acrobatcleaner.html
    then download and reinstall from http://get.adobe.com/reader/enterprise/

  • Adobe Reader crashes when opening any PDF

    Hello!
    I have the latest Adobe Reader installed on my parent's laptop. When we try to open ANY PDFs in it, the program crashes and displays the "Adobe Reader has stopped working...." message. I have tried uninstalling and reinstalling the program multiple times and still can't fix the issue. My dad needs it to fill out tax forms when the time comes.
    Specs:
    PROCESSOR*Intel® Core™ i7-4700MQ ProcessorOPERATING SYSTEM*Windows 7 Professional (available through downgrade rights from Windows 8.1 Pro)GRAPHICS ENGINE*NVIDIA® GeForce® GT 740M graphics with Optimus TechnologyGRAPHICS MEMORY*2GB DDR3 discrete graphics memory
    M
    EMORY*
    16GB DDR3 memory
    HARD DRIVE*
    1.0TB (5400 RPM, Serial ATA)
    OPTICAL DRIVE*
    DVD-SuperMulti drive (+/-R double layer)
    Audio and Video
    DISPLAY SIZE
    15.6" widescreen
    DISPLAY TYPE*
    HD TruBrite® LED Backlit display
    DISPLAY RESOLUTION
    1366x768 (HD), 16:9 aspect ratio, Supports 720p content
    AUDIO
    DTS Studio Sound™, Headphone jack (stereo), Microphone jack (mono), harman/kardon® stereo speakers
    Communication
    WEBCAM
    HD Webcam and Microphone
    WIRELESS LAN*
    Wi-Fi® Wireless networking (802.11b/g/n)
    BLUETOOTH
    No Bluetooth (No Antenna)
    LAN
    10/100/1000 Ethernet LAN
    The issue is only happening on their computer. I have the same computer model, but 2 lower and I have no problems doing anything in AR. What could be the problem and how can I help my parents fix it? Any help would be greatly appreciated. Thank you!!

    Hi raptorsama,
    Is there any specific error that comes?
    You might need to navigate to ''C:\Program Files (x86)\Adobe\Reader 11.0\Reader'', then double-click on Eula.exe and accept the license agreement.
    If this does not work, then follow these standard steps as given below:
    > Enable the hidden Admin Account on Windows 7 (Ref: http://www.howtogeek.com/howto/windows-vista/enable-the-hidden-administrator-account-on-wi ndows-vista/ )
    > Disable all Non-Microsoft Startup Services
    (Ref : http://helpx.adobe.com/x-productkb/global/disable-startup-items-services-windows.html )
    > Disable all the Antivirus softwares like CA, Norton,Mc Afee etc. temporarily from the computer.
    > Reboot and try installing in the new enabled Admin user account and check
    You can also go for a repair option by selecting 'Repair Adobe Reader Installation' option under the Help menu.
    Regards,
    Anubha

  • Error when opening, via email, files from PC computers

    Whenever I receive a file through email from another person who has created the file on a PC (i.e., a Word or Adobe Acrobat file), the file won't open and I receive this message:
    "Word (or other application, adobe, etc.) cannot open this document. The document might be in use or might not be a valid Word document."
    I do know that the files aren't corrupted because they do open successfully when I open them on a PC.
    What do I do to solve this problem?
    Thanks.

    Welcome to the discussions!
    You can always ctrl-click the document and choose Get Info > Open with > ( Choose from the dropping menu or assign ) the application you want.

  • Adobe DRM error when opening a digital book

    Hi. I receive the following error when I attempt to open a digital version of a book that I purchased a few years ago:-
    Borland_C___Builder__The_Co.pdf:
    Adobe DRM Error
    System:  7
    State:  4
    Class:  15
    Code:  31
    Message:  Error on response from server.
    Scroll below or view error.log for more details.
    Your Adobe software could not be activated.
    HTTP error on Adobe DRM Activator request.
    Adobe DRM Activator error.
    Client Code:  31 - HTTP Code:  555
    Fault location:  15
    --- end ---
    Can any one help me to resolve it please?
    Marcus

    What a truly awful policy.
    So, here I am coming back to an ebook I purchased three years ago, only to find that it's *my* fault I cannot access the book I paid for, because I should have been studiously following the intricacies of your petty updates and server migrations, or else I simply lose my rights to access the book (access rights, by the way, that are apparently now controlled not by the author -- whom I know personally -- or the publisher, but by you clowns at Adobe!?!).
    Really lame, adobe. Really lame.
    I should have bought the hard copy, which I could have taken off the shelf whenever I wanted, years after purchase, without having to worry about whether or not I migrated my license to whatever server, etc etc.
    Really appalled by this.

  • Adobe reader crashes when opening, both local and from Firefox

    Running Windows XP, Firefox 3.6.    Adobe 9.3 crashes Firefox when I attempt to view a downloaded pdf.  When I start adobe reader from Windows "Start" it begins to start with Adobe ID screen, then stops with no other effect or error message.
    Reader 9.3 worked successfully for months.  Problem started after computer maintenance and cleaning up of excess files and services running in the background.  I have not experienced problems with any other programs.
    When the problem arose I uninstalled with Windows Add/Remove Program.  Rebooted then reinstalled 9.3.  Same problem.
    I used Windows Installer Cleanup Utility to clean up adobe.  Notice that many files and folders still exist in /Program Files/Adobe/Reader 9.0 , so I renamed folder to "OLD Reader 9.0"
    Reinstalled 9.3 ....still did not work.  Uninstalled, rebooted, then installed Reader 8.2.  Still not working.
    Somewhere in the process I also uninstalled Adobe Air and Acrobat.com.
    What would cause Adobe Reader to not fully start, and to crash Firefox when it does try to start as a plug-in?  How can I manually uninstall ALL of Adobe Reader?
    Thanks for any input,
    Mark

    Ok, I just went to start up Reader 8.0, it failed with no event on screen.  Event viewer gave me no report under Application.  Under System I found a slewof these...
    Thoughts??  Thank you,
    Mark
    Event Type:    Error
    Event Source:    Disk
    Event Category:    None
    Event ID:    7
    Date:        3/17/2010
    Time:        10:39:54 AM
    User:        N/A
    Computer:    MARKCOMPUTER
    Description:
    The device, \Device\Harddisk0\D, has a bad block.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Data:
    0000: 03 00 68 00 01 00 b6 00   ..h...¶.
    0008: 00 00 00 00 07 00 04 c0   .......À
    0010: 00 01 00 00 9c 00 00 c0   ....&#156;..À
    0018: 00 00 00 00 00 00 00 00   ........
    0020: 00 be fc 09 00 00 00 00   .¾ü.....
    0028: 1d 02 30 00 00 00 00 00   ..0.....
    0030: ff ff ff ff 01 00 00 00   ÿÿÿÿ....
    0038: 40 00 00 84 02 00 00 00   @..&#132;....
    0040: 00 20 0a 12 40 03 20 40   . ..@. @
    0048: 00 00 00 00 0a 00 00 00   ........
    0050: 00 00 00 00 70 06 87 83   ....p.&#135;&#131;
    0058: 00 00 00 00 c8 eb 6c 83   ....Èël&#131;
    0060: 02 00 00 00 5f fe 04 00   ...._þ..
    0068: 28 00 00 04 fe 5f 00 00   (...þ_..
    0070: 08 00 00 00 00 00 00 00   ........
    0078: f0 00 03 00 00 00 00 0b   ð.......
    0080: 00 00 00 00 00 00 00 00   ........
    0088: 00 00 00 00 00 00 00 00   ........

  • Rusty Solomon : Adobe Reader Error while opening pdf files

    Hello everyone,
    I have a systematic error opening PDF files with Adobe Reader X (10.1.1)
    "Adobe Reader has encountered a problem and needs to close. Please excuse us for the inconvenience."
    By waiting I installed Foxit but I would understand.
    I uninstalled Adobe and reinstalled but it's still the same.
    Thank you for your answers in advance
    Rusty Solomon

    First I would try to update to 11.1.8.
    If that does not fix it, tell us your operating system.

  • Adobe X error when using the email button

    I recieve an error stating "An error occured while sending mail"
    I have set Outlook to be the deault, uninstalled Adobe X, repaired Office, etc. Nothing seems to help.
    It was working untl my last update.
    Any help would be great.
    Windows XP SP3
    Office 2003
    Adobe Reader X
    Thanks
    Danny

    Hi Danny,
    Without knowing all the variables (recent updates, security settings, etc.) it is difficult to tell what the problem is. The best way to find out if the problem is localized to your machine is to possibly troubleshoot on another machine.
    If it is localized to your machine then there have been enough changes made that it has affected how you email pdf's, and if you have already done a clean install of Adobe Reader X that would take you to the next step, to look at Outlook (besides running the repair tool). Again troubleshooting on another machine might be helpful.
    The reason I impress troubleshooting is that I maintain over 70 (destop/laptop) machines that have the current version of Reader X and they run various versions of Outlook from 2003 to 2010; the only time I have run into the issue you speak of is with Outlook 2010 64 bit, which there is no current fix. I had to roll those machines back to 32bit in order for them to be able to email PDFs.
    Best Regards
    Jeff

  • "Read error " when opening  a .odt file

    Hi when i try to open the .odt file following error is diplayed
    " Read Error.
    Format error discovered in the file in subdocument styles.xml at 2,2795(row,column)
    plz help me out its urgent.
    tahnks and regards

    Hi Andreas Mann ,
    Thanks for your reply.
    I dont have access to choose tools in Tcode SXDB.
    Error msg: "You are not authorized to use Transaction SXDA_TOOLS"
    So can you pls Elaborate on this would be helpful in resolving the issue.
    Regards
    Jithu

Maybe you are looking for

  • ITunes won't show library on external hard drive

    I have just bought a MacBook Pro but I don't know how to get library on external hard drive to show in iTunes...  Any suggestions please?

  • All appointments gone from iphone calendar for last year

    For some reason, all the events in my calendar prior to Jan 1, 2012 are no longer on my iPhone. (3gs) All is synced with pc in outlook, and iCloud (apparently). I NEED these on my phone for business and reference. My settings for iTunes: the "do not

  • Cramming for solving a java problem

    I got a problem , my java code is reffering a class method of a jar file (which comes along with installation). But while debugging I found that it could not found that method so it is throwing the following exception java.lang.UnsatisfiedLinkError:

  • Add Title w/ Transparent background

    Earlier today I learned through the list how to add a title to the entire length of a movie. Now I'm trying to figure out how to have this title (URL actually) added without a background to the title (transparent background so all your that shows up

  • Resizing in Illustrator CC using the Bounding Box is no longer accurate. What happened?

    In Illustrator CC, resizing an object using the bounding box is no longer accurate. Snapping to other objects or the grid or anything is completely wrong and, worse, inconsistent. Here is a single box being resized 3 times to the same object. Each ti