C++ Runtime Error on Adobe Acrobat 9 Startup

The error received upon starting up Adobe Acrobat 9.0 is a Visual C++ Runtime error. the exact message is:
Runtime Error!
Program: C:\Program Files\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
This began when Intuit Quickbooks 2009 was installed onto the system. Quickbooks was installed and attempted to be activated several times all of which ended in failure (retail purchased software) and the activation for the software was eventually locked out by the vendor.
This is when it was noticed that Acrobat was no longer functioning, and upon startup of the program it gives the above error message, which it does after displaying the acrobat window, but before it finishes loading.
Both repairing the installation of Acrobat and a complete Uninstallation/registry cleaning(with CCleaner)/Reinstallation was unsuccessful in fixing this issue. The error-fix documented in knowledgebase article kb404597 (http://kb.adobe.com/selfservice/viewContent.do?externalId=kb404597&sliceId=2) was also unsucessful in solving this issue.
Having looked into the windows event viewer, the error does produce and entry as follows:
Description:
Faulting application Acrobat.exe, version 9.0.0.332, time stamp 0x4850eb76, faulting module scrchpg.dll, version 7.0.1.325, time stamp 0x47ac76e7, exception code 0x40000015, fault offset 0x00010329, process id 0x3608, application start time 0x01c9a04e7e0e994f.
==========================
Computer is an Asus M70 Series laptop
3gb memory
Windows Vista Premium

Try http://www.adobe.com/go/kb401589
Especially solution 4.

Similar Messages

  • How do I deal with a Runtime Error on Adobe Acrobat 9.5?

    How do I deal with a Runtime Error on Adobe Acrobat 9.5? The instructions say to contact the support team but I have to pay in order to do so.

    What operating system and what is the statement of the error. Typically you would first run a repair on Acrobat from the help menu (or in Windows you can do that from the Control Panel>Add/Remove Programs).

  • Runtime error in adobe acrobat 8 shutting down software

    Runtime errror in Adobe Acrobat 8 Shutting Down Software.

    Hi Chandra,
    you can try following.
    Before saving PDF form, put external breakpoint in FM
    AC_FLUSH_CALL_INTERNAL.
    Save PDF Form, i guess it should go to this FM. Check which exception is setting sy-subrc = 2.
    (There are different checks in this FM for checking ActiveX, javabeen support etc).
    Hope this will help.
    Although, I never encountered the error you mentioned
    Regards,
    Mohaiyuddin

  • When I try to open a PDF downloaded from Adobe DC I get an error message:Adobe Acrobat Reader DC could not open 'nrneph.2015.33.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email

    When I try to download a PDF from Adobe DC, I get an error message: "Adobe Acrobat Reader DC could not open 'nrneph.2015.33.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)"
    I am using a Macbook Pro, OSX 10.9.5, Safari browser. Previous versions of Adobe Acrobat have worked fine for years.
    WGC

    What's the name of the file you are attempting to open?  Is it "ScreenFlow_4.5.2.dmg"?  If it is the correct name then the message is correct and you are attempting to open a file with DMG files extension and not one with a PDF file extension.  Adobe Reader opens PDF files an not any other file type.

  • I just migrated everything from an old Mac to a new one, but now Acrobat Professional will not launch. I get an error message: "Adobe Acrobat 8 Professional cannot be launched at this time......"

    I just migrated everything from an old Mac to a new one, but now Acrobat Professional will not launch. I get an error message: "Adobe Acrobat 8 Professional cannot be launched at this time......"

    I used "Migration Assistant" to send everything from my old mac to my new which included my copy of Adobe Acrobat 8 Professional. I tried downloading an update but when it asked me to find the version of acrobat to replace it was grayed out and I was unable to select it. My OS is 10.9.4

  • Error 1923: Adobe Acrobat Update Service (AdobeARMService) could not be installed

    When I try to update my copy of Adobe Reader, I get
    Error 1923: Adobe Acrobat Update Service (AdobeARMService) could not be installed.
    Verify that you have sufficient privileges to install system services.
    This occurs even when I run the install program with "Run as Administrator".
    And it occurs for release 11 and the older release 10.
    How do I get around this problem?

    Hi,
    Please check the following thread for solution: http://forums.adobe.com/message/4789492
    Thanks

  • Error:1602 , Adobe Acrobat Updater - Update Failed

    My operating system is Windows 7 Professional, 64-bit
    After installing Creative Suites 4 and downloading updates, I received an Acrobat Updater notification that Updates were available.
    I clicked on the Adobe Acrobat Updater icon and ultimately got the following Error.
    Adobe Acrobat Updater, Update Failed, Error:1602
    This was solved by going to C:\ProgramData\Adobe\Acrobat\9.2\ARM
    I deleted the contents of the ARM folder and then ran "Check for Updates" from Adobe Acrobat. This re-populated the ARM folder with the correct folder and files. Updater ran and I followed the instructions to restart my computer and now it works well.

    Ronald Segerstrom for questions regarding an Acrobat specific update please repost your inquiry to the Acrobat Windows forum.

  • VBA Code error with Adobe Acrobat 10 Type Library

    Hi,
    I have some code I created in Word VBA to combine several separate PDFs into a single PDF.  The code works fine with the Adobe Acrobat 9.0 Type Library and Adobe Reader 9.0 installed.
    But, with the Adobe Acrobat 10 Type Library and Adobe Reader 10 installed, the code fails at the marked code below.  Any suggestions??
        Dim acrobatApp As Acrobat.acroApp
        Set acrobatApp = CreateObject("AcroExch.App")
        Dim mainPDF As Acrobat.AcroPDDoc
        Set mainPDF = CreateObject("AcroExch.PDDoc")  ****THIS IS WHERE THE CODE STOPS WITH A "TYPE MISMATCH" ERROR****
        Dim nextPage As Acrobat.AcroPDDoc
        Set nextPage = CreateObject("AcroExch.PDDoc")
        Dim numPages As Integer
        'Loop through all selected VLS, and add each one to the end of the main PDF
        For i = 0 To lstSelected.ListCount - 1
            mainPDF.Open CurDir & "\" & Replace(ThisDocument.Name, ".doc", "") & ".pdf"
            numPages = mainPDF.GetNumPages
            nextPage.Open lstSelected.List(i)
            If mainPDF.InsertPages(numPages - 1, nextPage, 0, nextPage.GetNumPages, True) = False Then
                MsgBox "Cannot insert pages"
            End If
            If mainPDF.Save(PDSaveFull, CurDir & "\" & Replace(ThisDocument.Name, ".doc", "") & ".pdf") = False Then
                MsgBox "Cannot save"
            End If
            'MsgBox lstSelected.List(i)
            nextPage.Close
        Next i

    What if you start with a really simple VBA example? Take a look at this:
    Private Sub CommandButton1_Click()
        Dim AcroApp As Acrobat.CAcroApp
        Dim theDocument As Acrobat.CAcroPDDoc
        Dim bm As Acrobat.AcroPDBookmark
        Dim thePath As String
        thePath = "c:\temp\test.pdf"
        Set AcroApp = CreateObject("AcroExch.App")
        Set theDocument = CreateObject("AcroExch.PDDoc")
        theDocument.Open (thePath)
        MsgBox "Number of pages: " & theDocument.GetNumPages
        theDocument.Close
        AcroApp.Exit
        Set AcroApp = Nothing
        Set theDocument = Nothing
        Set bm = Nothing
        MsgBox "Done"
    End Sub
    If this still does not work, I would reinstall Acrobat to make sure that
    the TLB is not corrupt.
    Karl Heinz Kremer
    PDF Acrobatics Without a Net
    [email protected]
    http://www.khkonsulting.com

  • Any one else have Microsoft C++ runtime error in Adobe Photoshop Elements 11 (non cloud version)

    I have been using Adobe Photoshop Elements 11 for 9 months successfully with no issues.  Last night, for no reason, it stopped working , giving me a Microsoft C++ runtime error.  I have tried every trouble shooting suggestion, including resetting the computer, deleting recent updates, disk cleanup, etc.  I finally un installed the program, and when I attempted to re-install, it got almost to the end of the install, and then I get a message " The installation process encountered an error using Shared Technologies".   Can anyone help me?  Technical support for store bought copies of this program is non existant.  It took me 2 hours to find a  phone number that works and that was only for cloud users, and the only support they offer is a chat room , which disappeard from my screen this morning, and is no being offered at least today.   I must have this program for my photography classes I take 2 x a week.  Please help!

    Moving this discussion to the Photoshop Elements forum.

  • Microsoft C++runtime error in Adobe Photoshop_10, editor,Windows 7

    Would like to fix this.
    Program opens, when I click on editor, Visual Runtime error occurs, and program will shut down when I closed window or click to cancel.
    I have been coming up with some solutions on the forum but some people have not been successful for other versions & I hve not found the specific one question like mine. Can some one send me the correct link for this fix for my particular stats
    Thank you

    Follow the steps in article:
    http://helpx.adobe.com/photoshop-elements/kb/microsoft-c-runtime-error-launcing.html

  • Adobe Acrobat X Pro - Error Message : "Adobe Acrobat Has Stopped Working"

    I use Windows 7 - 64bit / CS6 Master Collection that has Adobe Acrobat x Pro.
    When the computer is on for a little while, Acrobat would generate the error message that it has stopped working and then shuts down. Once that error message occurs, I cannot get Acrobat to stay open. It opens the PDF document, stays open for a few seconds then the error message occurs and it shuts down.
    What helps for a short term is to restart the computer. This seems to temporarily remove the error until the computer is on for a while then the error returns.
    This problem repeats. Product repair feature does not work. This has nothing to do with the license, I tried that fix and it made no differnce. I do not have this issue with other Adobe products included in the master collection.
    It seems fruitless and frustrating to send a message to Adobe Support, the run around with pages and links is like smacking walls on every turn, it is obvious Adobe does not want people contacting their support. Service from Adobe for their products is poor.
    I hope that someone here has the answer to the problem. Anyone?

    Ok, here is the update.
    The link: http://helpx.adobe.com/creative-suite/kb/acrobat-failed-launch-30-days.html , leads to a webpage that says to download a fix ZIP file named: "Acrofix.ZIP". It contains the file "acrofix.exe".
    I did use this "exe" file about 2 months ago and it did nothing to fix the issue. I used it again today, because the same issue of "Adobe Acorbat has stopped working", occurred again and again it did not work, the problem of "Adobe Acrobat stopped working" presists. Again the only work around, which is temporary, is to reboot the computer.
    So far these do not work:
    Relicensing or Registering the Licence
    Acrofix.exe
    Anyone else have an answer? - or am I the only one suffering this really annoying issue?

  • Runtime error in Adobe forms

    Hi,
    I am getting a run time error when i create ADOBE form and try to save. I am using SAP GUI 7.10 and ADOBE livecycle version 7.1. I did tried with ADOBE livecycle version 8.0 and getting same problem.
    NOTE:  This is the first ADOBE form i am trying to create in company.
    Below are the dump details ...Please let me know if any of you  have faced similar problem....Thanks
    Short text
        The current application triggered a termination with a short dump.
    What happened?
        The current application program detected a situation which really
        should not occur. Therefore, a termination with a short dump was
        triggered on purpose by the key word MESSAGE (type X).
    Error analysis
        Short text of error message:
        Control Framework : Error processing control
        Long text of error message:
         Diagnosis
             An error occurred when the system tried to process the commands
             from the Automation Queue on the presentation server.
             There are several possible reasons for this:
             - The installation of the SAP GUI on the presentation server is
             faulty or obsolete.
             - There is an error in the application program
             - There is an error in the SAPGUI or an integrated control
         Procedure
             1. Make sure that you have imported the appropriate Support
             Package, the current kernel, and GUI patch for the release of your
             system
             2. Check whether the error occurs locally on one or a few PCs, or
             generally on all PCs. Note whether the error only occurs for some
             users, for example because of a specific Customizing setting.
             If it only occurs locally, this suggests an installation problem
             with the PC. Check the installation; if necessary, reinstall the
             software. In the dump, search for the SY-MSGLI field, since it may
             point to the cause of the error.
             3. Activate the Automation Trace (in accordance with SAP Note
             158985).
             4.Start the transaction and continue until the screen immediately
             before the dump.
             5. From the System -> Utilities menu, choose Autom. Queue,
             Synchronous Processing.
             The status bar of the GUI displays the text:
                "Automation synchron flush mode on"
             6. If you now proceed with the application, the short dump will
             display the ABAP call that caused the error; the Automation Trace
             will contain the error on the presentation server.
             7. If necessary, load the short dump and trace files on to
             sapservX, so that SAP can analyze them.
        Technical information about the message:
        Message class....... "CNDP"
        Number.............. 006
        Variable 1.......... " "
        Variable 2.......... " "
        Variable 3.......... " "
        Variable 4.......... " "
    Trigger Location of Runtime Error
        Program                                 SAPLOLEA
        Include                                 LOLEAU02
        Row                                     29
        Module type                             (FUNCTION)
        Module Name                             AC_SYSTEM_FLUSH
    Source Code Extract
    Line  SourceCde
        1 FUNCTION AC_SYSTEM_FLUSH .
        2 *"----
        3 ""Lokale Schnittstelle:
        4 *"  IMPORTING
        5 *"     VALUE(CALLED_BY_SYSTEM) TYPE  C OPTIONAL
        6 *"  EXCEPTIONS
        7 *"      CNTL_SYSTEM_ERROR
        8 *"      CNTL_ERROR
        9 *"----
       10   data: sysubrc like sy-subrc.
       11
       12   CALL FUNCTION 'AC_FLUSH_CALL'
       13        EXPORTING
       14             SYSTEM_FLUSH = 'X'
       15             CALLED_BY_SYSTEM = CALLED_BY_SYSTEM
       16        IMPORTING
       17             MESSAGE_NR   = sysubrc
       18             MESSAGE_TEXT = SY-MSGLI.
       19
    20   sy-subrc = sysubrc.
    21
    22   CASE SY-SUBRC.
    23     WHEN 0.
    24     WHEN 1.
    25 *     system_error
    26       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 007 RAISING CNTL_SYSTEM_ERROR.
    27     WHEN 2.
    28 *     method_call_error
    >>       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.
    30     WHEN 3.
    31 *     property_set_error
    32       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.
    33     WHEN 4.
    34 *     property_get_error
    35       MESSAGE ID 'CNDP' TYPE 'X' NUMBER 006 RAISING CNTL_ERROR.
    36     WHEN OTHERS.
    37       RAISE CNTL_ERROR.
    38   ENDCASE.
    39
    40 ENDFUNCTION.

    Hi Chandra,
    you can try following.
    Before saving PDF form, put external breakpoint in FM
    AC_FLUSH_CALL_INTERNAL.
    Save PDF Form, i guess it should go to this FM. Check which exception is setting sy-subrc = 2.
    (There are different checks in this FM for checking ActiveX, javabeen support etc).
    Hope this will help.
    Although, I never encountered the error you mentioned
    Regards,
    Mohaiyuddin

  • Error with Adobe Acrobat X "error opening the document. The file is damaged and could not recover"

    Good morning,
    I have a problem when generating PDF files with Adobe Acrobat X.
    When I give print a Word document 2003 ... 2007 ... 2010 ... and select a network drive to save the PDF file, I get the following error "error opening the document. Thefile is damaged and not could recover."
    The file is saved on your drive well ... but I always get this error.
    Any ideas???
    Thank you.

    First of all thanks for responding.
    The installed version of Adobe's Adobe OS X and Windows XP machines is thelatest patch level.
    The local system .... works well ... Open Office 2010 ... create a new Word document and save it locally ... and all good.
    The problem is though that same machine ... it enters network (not Windows network. OES2 is a network with Novell network client) ... and to open and create a new document to WORD .... when printing the PDF printer ... select a network drive... and when the document is saved well ... but it shows the error.
    I have an amount of hours lost with this ... I hope you can help me find a solution.
    Thank you very much.

  • Runtime Error in Adobe Reader 8.1.2

    When attempting to open a PDF document in Adobe Reader 8.1.2, get the following error;
    Runtime Error!
    Program: C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe
    This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information.
    I have uninstalled and reinstalled the application. I have attempted the fixes I found online, but with no success. I have installed Version 9.0 it resolved the error. however we are not useing version 9.0 yet.
    The only other change has been we have recently upgrade to Microsoft Office 2007.
    I am with the help desk at womack Army Medical center. Does anyon eknow of a fix for this issue?

    @Ryan: Are you working for Bayer? We have the same problem here at Bayer since users personal folders are mapped to drive M:.
    It is a result of the preinstallation procedure "cost initialize/cost finalize" windows installer does. If users My Documents or My Pictures folders are redirected through registry HKU\...\UserShellFolders\... and the drive is not available, cost finalize will fail to check available disk space on the missing drive.
    If you can use a script to execute the installer, first check for drive M: and if not available, substitute e.g. C:\Temp to M: (subst M: C:\Temp), then execute the installer and when finished, delete substituted drive by "subst M: /D".

  • Runtime Error with Adobe

    When I try loading a PDF document I get the following error:
    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program: C:\Program Files\Adobe\Reader 10.0\Reader\AcroRD32.exe
    This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information.
    I have uninstalled, reinstalled, nothing seems to work.
    Can anyone give advice on what this could be?  I'm using Windows 7 Ultimate.
    Thanks in advance!

    I have the same issue too. Slight difference is I'm running on Windows XP Pro but using Office 2010.
    Any email with a PDF attachment can be opened - just comes up with a Runtime error as described by 'Ladyk362003'.
    If you save the file somewhere on the systems hard disk and then double click it it opens fine.
    This did work before, but not sure what could have changed.
    I've uninstalled Reader and then downloaded the latest this morning from their website and still the problem is present.
    Anyone got any ideas.
    Thanks

Maybe you are looking for

  • ITunes error -42408 with iTunes 10.4

    I know it was common with itunes 9.0.3 but i have itunes 10.4... Please help!

  • SDHC card in the DVD slot

    A co-worker put an SDHC card in the DVD slot of our work's iMac.  How in the heck am I supposed to get it out? Let me stress: A co-worker.  Not me.  Seriously.

  • Managed Server is not responding

    Hi All, I have an application (UCM 11g 11.1.1.5) running on WLS (10.3.5) like one Admin Server and 2 managed servers (UCM,IBR). Yesterday when i tried to access the application, its not responding. I am not getting error, waited for around 15 mints.I

  • How do I enable TPM in the bios on Product name: HP Pavilion dv7 Notebook PC

    Hi, I have run into a problem trying to enable MS Bitlocker on Windows 8.1 on Product name: HP Pavilion dv7 Notebook PC BIOS version is: F.1C In the Windows UI, the TPM (Trusted Computing Module) management console says that I need to enable TPM in t

  • Error Message: Change of update mode not possible due to open V3 update

    Hi Gurus, I got error message when i change update mode (LBWE) from V3 to Direct or Queued delta method. Error Message: Change of update mode not possible due to open V3 update Long text: You are not allowed to change the update mode for application