Runtime error c++ w elements 9

when i attempt to open the organizer i get a popup "microsoft visual c++ runtime library, application has requested the runtime to terminate it in an unusual way.  please contact the applications support team for more information."  HELP!  i am able to open to edit, but not the organizer. 

cappedup
1. I tried to rename the preferences file, but, and this is weird, i couldnt find a folder named 'application data'. Searched my whole PC, a few times. Not really sure what thats about, but it was a dead end, nonetheless.
Go the path in Windows 7, 8, or 8.1 64 bit
Local Disc C
Users
Owner
AppData
Roaming
Adobe
Premiere Elements Folder
11.0 Folder
and in the 11.0 Folder is the Adobe Premiere Elements Prefs file that you delete. The key is to be working with Folder Option Show Hidden Files, Folders, and Drive active so that you can see the complete path.
If the above does not help, then delete the whole 11.0 Folder in which the Adobe Premiere Elements Prefs file exists.
Another important aspect of your presenation is "Is this problem with just this one project or does it apply to new projects as well?"
If it applies to just this one project, then we need to dig deeper into this project.
Please review and then we can decide what next.
Thank you.
ATR

Similar Messages

  • Runtime error in Premiere elements?

    runtime error in premiere elements

    uvagreg11
    You will need to supply a lot more information than just "runtime error in premiere elements" in order for us to help you.
    1. What version of Premiere Elements are you using and on what computer operating system is it running?
    2. What are you using a the project preset for your project? And, what are the properties of the source media that are being used on the Timeline?
    3. Is this a "it worked before but now" or "it never worked before" type of problem?
    4. What is the description of your computer and its resources?
    5. What troubleshooting have you done so far...
    a. flushing preferences
    b. deactivation, uninstall, reinstall
    c. other
    The following is an Adobe document on run time error troubleshooting.
    http://helpx.adobe.com/x-productkb/global/troubleshoot-c-runtime-errors-products.html
    Let us start here and then decide what next based on your details.
    Thanks.
    ATR
    Add On..I did not see SG's post until after I had posted mine.

  • Why do I keep getting a runtime error in Photoshop Elements 6.0?

    I have had Photoshop Elements 6.0 for several years now with no issues at all.  Recently my computer crashed and I bought a new ASUS touchscreen laptop (Q301L model).  I have tried, with no luck, to get Photoshop to work. After a few actions, it will come up with a window that says "Could not complete your request because of a program error" and occasionally it will come up with a "Runtime Error!" notification that says "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 searched all the existing forums on this subject and none of the solutions presented have worked.  I have tried: re-installation (5 times now), running as an administrator, deleting the MediaDatabase.db3 file, renaming the MediaDatabase.db3 file to MediaDatabase.old and allowing to rebuild, repairing with the installation disk, troubleshooting and running in compatibility mode, holding down Ctrl+Alt+Shift as Editor opens and then deleting preferences, allowing Photoshop through my firewall.  I am out of ideas and I really need this program to work.  Please help!

    It might be a bug in the new version of Adobe Reader.  http://support.microsoft.com/default.aspx?scid=kb;en-us;125749
    Looking at my system, the path for AcroRd32.exe for Adobe Reader 9.1 is C:\Program Files\Adobe\Reader 9.0\Reader\AcroRd32.exe.  I don't know if you mistyped your path, but you do not have \Reader\ in it.  If you mouse over the file AcroRd32.exe, it should show you version 9.1.
    Did you uninstall the previous version before installing the latest version?  That is the recommended way to do it.  I filled out my Federal Tax forms with Adobe Reader 9.1 without a problem.  This is on Windows XP SP3, fully updated.

  • Runtime error for ui element multipane

    hello.
    i have a question.
    i implemented uielement multipane example in wda.
    it worked very well in only first trying, but it occured a runtime error -that is Access via 'NULL' object reference not possible.- from second trying.
    context -
    hd                               <node>
    attribute1            <hd of attribute>
    attribute2            <hd of attribute>         
    item                    <hd of subnode>
    attribute1 <item of attribute>
    attribute2 <item of attribute>
    below is source.
    ==========================================================
      DATA: node_hd        type ref to if_wd_context_node,
                 node_item     type ref to if_wd_context_node,
                 itab_hd        type wd_this->elements_hd,
                 stru_hd        type wd_this->element_hd,
                 itab_item      type wd_this->elements_item,
                 rt_auart type ref to data,
                 rt_vbeln type ref to data.
      field-symbols: <fs_auart> type table,
                           <fs_vbeln> type table.
    retrieve the data from the select option
      rt_auart = wd_this->m_handler->get_range_table_of_sel_field( i_id = 'AUART' ).
    assign it to a field symbol
      assign rt_auart->* to <fs_auart>.
    retrieve the data from the select option
      rt_vbeln = wd_this->m_handler->get_range_table_of_sel_field( i_id = 'VBELN' ).
    assign it to a field symbol
      assign rt_vbeln->* to <fs_vbeln>.
    retrieve that data from the database.
    Normally it is suggested to encapsulate the data retrieval in a separate class.
    For simplicity, the select statement has been implemented here.
      select * into corresponding fields of table itab_hd
      from vbak
      where vbeln in <fs_vbeln>
      and auart in <fs_auart>.
    bind the data to the context
      node_hd = wd_context->get_child_node( name = 'HD' ).
      node_hd->bind_table( itab_hd ).
    bind the data to the context  
      loop at itab_hd into stru_hd.
    retrieve item_node object each sy-tabix
    i could't get item_node object when sy-tabix is 1.
    i hope to know why i can't get item_node object when sy-tabix is 1.  
          node_hd->get_child_node(
            exporting
              index = sy-tabix
              name = 'ITEM'
            receiving
              child_node = node_item ).
          when index = 1
          node_item object is null.
          why node_item object is null?????
          i don't got it.
          can sombody explain about it???
          because of this matter, i can't acess frist node_item to insert value.
          do you have a solving this matter? 
            select * into corresponding fields of table itab_item
            from vbap
            where vbeln = stru_hd-vbeln.
            node_item->bind_table( itab_item ).
      endloop.

    Hi Regina.
    So you say if it is not declared as singleton it is created for each element. But
    when I declare my subnode with cardinality 0..1 I face the same problem.
    This is what I do:
    I bind the elements to the parent node. Afterwards I loop all elements of the parent
    node and try to get the subnode with element->get_child_node( ). If cardinality of
    the sub node is 0..1 or 0..n the reference is NULL. If cardinality is 1..1 or 1..n the
    reference is not initial.
    At what step does the frameowrk create the subnode then?
    Cheers,
    Sascha

  • Runtime Error Project/WBS Element

    Hello,
    I am getting a Runtime error (statement message 'E') every time i search in the match code for either a Project or a WBS Element, regardless of what transaction they appear in.
    Can anyone help me with this?
    Stephen

    Did you make any changes to the project coding masks? This error could happen as result in changes to the mask. Project numbers which were valid as per earlier masks may not be fit as per new masks.
    If above is a reason implement the note 453280 - Conflicting coding mask and project/WBS element
    Regards
    Sreenivas

  • Runtime error sur photoshop element 11

    Bonjour, j'ai acheté photoshop element 11 et l'ai installé. Après quelques jours d'utilisation, il a cessé de fonctionner et le message runtime error est apparut a l'écran. J'ai désinstallé le programme et j'ai effectué la réinstallation avec succès. Par la suite encore après quelques jours, le même problème et message de Runtime error est réapparut...Sur les liens j'ai trouvé les recommandations d'un expert d'Adobe qui disait de modifier le fichier Mediadatabase.db3 par mediadatabase.old sauf que je ne trouve pas ce dit fichier...
    Pourriez vous me donner la cause et la solution a ce problème une fois pour toute ?? Merci de l'attention

    Les systèmes d'exploitation modernes le stockent comme un fichier masqué spécial dans le système de fichier.
    Suivez le lien (désolé c'est en anglais) pour trouver le fichier caché.
    http://forums.adobe.com/message/5139244#5139244

  • Permanent solution to Runtime Error

    I have a "Microsoft Visual C++ Runtime Error" using Photoshop Elements 11 and have cleared it by renaming the MediaDatabase.db3 file as suggested. The only problem is, it occurs every time I start Photoshop and it's getting a bit tiresome having to go through the same process before I can open the software.  Is there a more permanent solution?

    Hi,
    first of all please read the forum rules:
    << Do not post the same question across a number of forums >>
    And second: I already moved your first thread about this problem to the correct forum. It is not necessary to open a second one again in the wrong forum. It is like doing the same fault twice.
    Anja (Moderator)

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

  • Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes.  What do I do?

    Help.  Photoshop Elements 10 will not open.  I get Error message that says "Runtime Error!" and closes. What do I do?  What does it mean?  I bought Elements 10 at a retail store.  It did work for a while.

    Hi,
    Can you post back with the following.
    1.  The full Model No. and Product No. of the notebook ( from the service tag underneath your notebook ) - see Here for a further explanation.
    2.  The full version of the operating system you are using ( ie Windows 7 32bit ).
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • How can I free my Elements 5 Organizer from a "Runtime Error!" message that won't quit?

    I recently installed Elements 5 on my new Windows 7 computer, and I've spent many hours re-creating hundreds of stacks and tags that I developed on my old XP computer.  Elements 5 has worked perfectly well for several days.   But when I asked it to re-connect with missing files and it started looking for a file that was in a folder that I had changed the name of after importing it from my old computer, it was taking a very long time, so I tried to get it to just quit.  Instead, I now  thave a message that reads, "Runtime Error!  This application has requested the runtime to terminate it in an unusual way.  Please contact the application's support team for more information."  Even though I can get Windows to close the program, the same message comes up when I re-start Elements 5, even after shutting down the computer, and the program can't be used.  How can I get rid of that message and keep all the work I've put into my stacks and tags, which would be lost if I uninstalled?  Please help!

    Try this.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • Adobe Premiere Elements 11 unable to launch - User receives Debug & Runtime Errors

    Adobe Premiere Elements 11 unable to launch - User receives Debug & Runtime Error.  The Adobe program launches and the Premiere Elements splash screen displays.  Once the "Loading ImportQuicktime.pm" function completes the following errors display:
    The program has been re-installed without success.  The only way to open the program is to "Run as Different User" windows 7 function, using the local admin account.  The Preferences Folders have been deleted and recreated without success.  Any information for this error will be great.  Thank you for your time.

    Hi UBDEV,
    Thanks for posting on the Adobe forums.
    Please tell us if this system is on Network, if yes please make sure that My Documents Folder should be on the local drive not on the Network drive.
    Regards,
    Sandeep

  • Photoshop Elements 10 in Windows 8 will not open. Adobe Photoshop Elements 10 Error Message: "Microsoft Visual C++ Runtime Library Runtime Error. This application has requested the Runtime to terminate it in an unusual way. Please contact the application'

    How to get Elements 10 to open in Windows 8 ?
    See the error message quoted above in the subject line.

    See this help document:
    https://helpx.adobe.com/photoshop-elements/kb/microsoft-c-runtime-error-launcing.html

  • Photoshop elements 10 won't start. Message is. 'Runtime error.  Application has requested the runtime to terminate in an unusual way.  Please contact support team for more information' 'microsoft Visual C   Runtime Library.  How do I fix this or can I jus

    photoshop elements 10 won't start. Message is. 'Runtime error.  Application has requested the runtime to terminate in an unusual way.  Please contact support team for more information' 'microsoft Visual C   Runtime Library.  How do I fix this or can I just uninstal and then re-instal (without losing my spare licence that I want to use elsewhere)  It is a PC not a Mac

    See if anything here helps:
    Troubleshoot C++ runtime errors | Adobe products | Windows

  • I have a visual C    runtime error stopping my pse elements 10 running in win 8.1. I am not a techie so am looking for a very clear way to resolve teh issue without needing too much technical ability. Can anyone help?

    I had been using my elements 10 for much of the day so do not know what I have done to upset it! I was starting up again and it began to load then offered me this line of script re a 'runtime error'. That means nothing to me except that it no longer works. I have had a peek on Google and see various suggested fixes from sources I don't know whether to trust. Also some fixes give a list of do's that to a non techie like me are not followable. Can anyone offer me some understandable guidance so I can get back to playing with my photos?

    You'll need to ask in the Photoshop Elements forum whose members can better answer this.
    Photoshop Elements
    Also keep a brief summary in the subject line and use the main posting window to describe your issue in detail.
    Subject: Visual C runtime error    as an example.

  • I have been getting a "Runtime Error" and can't open Adobe Photoshop Elements Editor

    We are using Adobe Photoshop Elements version 9.0.3 (20110328.m.11320).  For several weeks it has not been possible to open the Editor, although the Organizer opens as usual.  We get an error message that says "Runtime Error! Program: ...\Adobe\Photoshop Elements 9\PhotoshopElementsEditor.exe This application has requested the Runtime to terminate it in an unusual way.  Please contact the application's support team for more information."  What can we do to correct this problem?

    Thanks, Ken!  I have to reply by e-mail, as the Forum site has been down
    for maintenance since last night.
    I am running Windows 7 Professional SP1.
    Uninstalling and booting should be straightforward.  I saved the
    following files in my Downloads folder from my initial installation of
    Adobe PSE 9.0 on 4/22/11:
    Adobe_Photoshop_Elements_9-AkamaiDLM.exe (355 kb application)
    PhotoshopElements_9_LS15.exe (1,200 kb application)
    PhotoshopElements_9_LS15.7z (1,838,546 kb WinRAR archive)
    Will these suffice for reinstalling the program?  Can you tell me how I
    should go about the reinstallation?  (I tried to find a page to download
    the Adobe PSE 9.0 program on the Adobe website, but could only locate a
    patch for 9.0.3, which I think must already have been included in the
    original installation.)
    Also, there are four folders, corresponding to four catalogs, in
    C:\ProgramData\Adobe\Elements Organizer\Catalogs.  Will those survive
    the uninstall/reinstall process?  Should I back them up just prior to
    uninstalling to preserve them for restoration after the reinstall?
    Finally, should I back up the 9.0 and Organizer folders in
    C:\ProgramData\Adobe\Elements Organizer for restoration as well?  And
    the C:\ProgramData\Adobe\Photoshop Elements folder?
    Thank you.  I am grateful for your help!
    Peter

Maybe you are looking for