How can I avoid crashes of elements 9

How can I resolve crashes of Elements 9? All software updates are current.

Thanks you
See, whenever it crashes, you must be getting a crash report, right after the crash. Can you please copy paste the detailed contents of the crash somewhere here? A look into the crash logs will tell us where the crash is happening.
Also, you didn't tell whether the crash is happening for Editor module or Organizer module?
Has it always been like this.. crashing?? A third party s/w is often responsible for such crashes, so any updates there?
Thanks
Andaleeb

Similar Messages

  • How can I avoid crash of my iphone 5.

    How can I avoid crash of my iphone 5.

    You swipe left to right on the song, press the red delete button.
    If that does not work, turn off iTunes Match and try again.

  • How Can I Avoid Crashing on Pressing Backbutton?

    Customized hardware backbutton crashed in C++, but OK in C#:
    //in the constructor
    Windows::Phone::UI::Input::HardwareButtons::BackPressed += ref new Windows::Foundation::EventHandler<Windows::Phone::UI::Input::BackPressedEventArgs ^>(this, &AppExit::MainPage::OnBackPressed);
    //Handler
    void AppExit::MainPage::OnBackPressed(Object^ sender, Windows::Phone::UI::Input::BackPressedEventArgs^ e)
    Windows::UI::Xaml::Controls::Frame^ frame = safe_cast<Windows::UI::Xaml::Controls::Frame^> (Window::Current->Content);
    if (frame == nullptr)
    return;
    if (frame->CanGoBack)
    frame->GoBack();
    e->Handled = true;
    Exception:
    First-chance exception at 0x77AD210B in AppExit.exe: Microsoft C++ exception: Platform::DisconnectedException ^ at memory location 0x0124ECCC. HRESULT:0x80010108 The object invoked has disconnected from its clients.
    WinRT information: The object invoked has disconnected from its clients.
    Stack trace:
    [External Code]
    CoreUIComponents.dll!767de357()
    CoreUIComponents.dll!767dd6b5()
    CoreUIComponents.dll!767da92d()
    CoreUIComponents.dll!7678c446()
    CoreUIComponents.dll!767626f4()
    CoreUIComponents.dll!767d2443()
    CoreUIComponents.dll!767b735b()
    CoreUIComponents.dll!767ae183()
    CoreUIComponents.dll!767acd00()
    CoreUIComponents.dll!767a752c()
    CoreUIComponents.dll!767ab703()
    CoreUIComponents.dll!7679dfc5()
    CoreUIComponents.dll!7676576f()
    [External Code]
    But it works well in C#:
    //constructor
    Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed;
    //handler
    private void HardwareButtons_BackPressed(object sender, Windows.Phone.UI.Input.BackPressedEventArgs e)
    Frame frame = Window.Current.Content as Frame;
    if (frame == null)
    return;
    if (frame.CanGoBack)
    frame.GoBack();
    e.Handled = true;
    Can I avoid this crash?

    Hi Sal,
    I've tested it and I can see the first-chance exception thrown, but the error message does not look same:
    First-chance exception at 0x77776FB2 in App44.exe: Microsoft C++ exception: Cn::XH at memory location 0x018AF218.
    First-chance exception at 0x77776FB2 in App44.exe: Microsoft C++ exception: Cn::XH at memory location 0x018AE350.
    First-chance exception at 0x77776FB2 in App44.exe: Microsoft C++ exception: Cn::XH at memory location 0x018AE350.
    First-chance exception at 0x77776FB2 in App44.exe: Microsoft C++ exception: Cn::XH at memory location 0x018AE350.
    Actually we don't need to care about first chance exception, here is a blog:
    http://blogs.msdn.com/b/davidklinems/archive/2005/07/12/438061.aspx even its long time ago but still helpful:
    Does a first chance exception mean there is a problem in my code?
    First chance exception messages most often do not mean there is a problem in the code. For applications / components which handle exceptions gracefully, first chance exception messages let the developer know that an exceptional situation was encountered
    and was handled.
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can i avoid restarting tomcat server when servlet is modified?

    please advice me that how can i avoid restarting the tomcat server, whenever a servlet file is modified in my application. is their any way ?

    No probs. Here's how I do things...
    1. Install tomcat as normal (e.g. I install to C:\Apps\jakarta-tomcat-5.5.4)
    2. Create a webapps directory in your eclipse project with the following directory structure
    MyEclipseProject
       - src
       - conf
       - webapps
          - MyApplication
             - META-INF
             - WEB-INF
                - classes
                - lib
                - pages3. Set the project's output folder (e.g. bin folder) to webapps/MyApplication/WEB-INF/classes
    4. Put all your jar files in the lib directory
    5. Put JSPs / HTML in the pages directory (you may also want to create additional directories for TLDs, config files etc)
    6. Ensure your web.xml is in the WEB-INF directory
    7. Although it isn't essential I create a context.xml file and store it in META-INF, e.g.
    <Context reloadable="true">
        <!-- Default set of monitored resources -->
         <WatchedResource>WEB-INF/web.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/struts-config.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/tiles-defs.xml</WatchedResource>
         <WatchedResource>WEB-INF/conf/struts/validation.xml</WatchedResource>     
    </Context>I use this to set monitored resources that will trigger an automatic appliation reload and to configure JAAS (not shown). See the Tomcat documentation for additional information.
    8. In the 'conf' directory I create a server.xml file used to configure Tomcat (you can copy the one from your <TOMCAT_HOME>/conf/server.xml).
    After copying the file change appBase attribute in the host element to be the full path to the webapps directory. You can also change the HTTP and HTTPS ports if you wish
    9. Download and install the Tomcat Launcher plugin from Sysdeo.
    10. In Eclipse's Preferences menu you will see a new entry for Tomcat. Click this then
    a. Set your Tomcat Version
    b. Set your Tomcat Home
    c. Set "Context declaration mode" to server.xml
    d. Set the configuration file to the full path to your server.xml file created in step 8
    On the "Advanced " sub page select all relevant projects to add to the Tomcat classpath
    On the "JVM Settings" page add all the jars in your WEB-INF lib directory to the class path
    On the "Source Path" page select all relevant projects
    Now if you start Tomcat using the Tomcat icon, you will be able to remote debug your application. If you change web.xml (or any other file in your context.xml watched resources) it will automatically reload. Any changes to JSPs will automatically be picked up (providing your tell your browser not to use the page in cache - e.g. CTRL+F5 in IE)
    There are some limitations that I'm still working on however. Primarily that I haven't included the Tomcat Manager application in my webapps directory, so Sysdeo cannot perform a reload. This means that if I change a source file, and eclipse auotmatically rebuilds, Tomcat doesn't pick up the change unless I either change a watched resource file (e.g. web.xml) or stop and restart Tomcat.
    There's no reason why this can't be fixed, I just haven't got round to it yet.
    I'm sure there are lots of other (probably better) ways of achieving the same thing. This was the first method I tried and it worked, so I stuck with it. I'm not a Tomcat config guru and I'm sure other forum users could provide some improvements should they wish.
    Post if you get into trouble, however I won't be able to respond until next week.
    Cheers,
    Steve

  • How can i avoid iPad?

    How can i avoid iPad 1 crashes?

    What are you doing when the iPad crashes?
    What version of iOS are you running on the iPad?
    If there is an error message, what is the exact wording?
    What troubleshooting have you done? What were the results?

  • How can I deactivate Adobe photoshop elements 9 when its un-installed?

    How can I deactivate Adobe photoshop elements 9 when its un-installed? I told my husband I had to get it off the third computer but he trying to help me did not deactivate it before he  un-installed it!!!!
    Now what? I am only using this on 2 computers and I'm told I am using it on a 3rd and I'm not.
    How can I fix this?
    It wont work on the 3rd one anyway because its so old and limited it crashes every time I try. But I need this on my 2 good computers.

    One way could be to reinstall it on the third computer and then deactivate it and uninstall it.
    If that doesn't work out or if you'd rather try this route it should work... contact Adobe Support either by chat or via phone and they should be able to help.  Chat is usually 24/7
    Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • How can I avoid referencing nilvce.dll

    Dear all
    When I build an application from my project LabView asks for nilvce.dll. As this DLL is not installed on the computer I press ignore item and LV goes on build the application. Finally the execute is successfully build and I can execute it. How can I avoid referencing nilvce.dll?
    But I observe that this executable is consuming almost all processor power while waiting for GUI-events. This does not occur in the development system and there is no wait missing in any of the loops in the program. Occationally the program hangs while executing Enqueue Element At Opposite End.VI from the Queues palette.
    Is there a link between these topic and referencing nilvce.dll?
    Regards,
    Jörn
    P.S.: I am working with LabView 8.6.1f1
    Message Edited by Jörn on 2009-11-10 10.11.2009 11:17 AM

    Hi muks,
    you could have known from this threat that your tip does not exactly meet the point. nilvce.dll does not exist. But it is referenced by some elements. I suspect that these elements might cause my other problem. And furthermore building the executable and running it (up to some point) works without having this DLL on my computer. So would like to gather some information about the objects referencing nilvce.dll in the hope that I can remove them to get rid of my second problem.
    Regards,
    Jörn

  • Hi. I purchased a new ipad mini and my brother already has iphone 4,so how can i avoid sharing the same contents that are on his phone? Will creating an other apple id help us in seperating our facetime and icloud accounts as we share our laptop to sync ?

    Hi. I purchased a new ipad mini and my brother already has iphone 4,so how can i avoid sharing the same contents that are on his phone? Will creating an other apple id help us in seperating our facetime and icloud accounts as we share our laptop to sync ?

    Have a read here...
    https://discussions.apple.com/message/18409815?ac_cid=ha
    And See Here...
    How to Use Multiple iDevices with One Computer

  • I have made a book of my I Photo pictures. In certain layouts there is a textframe. How can I avoid the frame becoming visible in the print if I don't want to write anything? Should I just leave it or should I delete the text "Write your text here" ?

    I have made a book of my iPhoto pictures. In certain layouts there is a text frame. How can I avoid the frame becoming visible in the print if I don't want to write anything?  Should I just leave it untouched or should I delete the instructing text "Write your text here"?

    Most pages have layouts for pictures only or pictures with text boxes. Either select the same layout for that page but the one without the text box or put a space in the text box.
    Putting a space in the text box will avoid getting the warning when ordering that there's an unfilled text box in the book. The box will not be visible in the final product.  You can and should check the book before ordering by previewing it as described in this Apple document: iPhoto '11: Preview a book, card, or calendar before you order or print it
    Happy Holidays

  • How can I access the selected element of a DropDownByIndex-box?

    Hi,
    I want to create a WebDynpro with two web services. I created the first request with the first web service and the results are displayed in a DropDownByIndex-Box. Now the user should choose one of the results and I would like to use this for the request with my second web service. How can I access the selected Element of a DropDownByIndexBox in the Code?
    Thank you!!
    Julia

    Hi Julia,
    when user select one element in drop down it automatically set lead selection of node binded to dropdown.
    For example if you bind a dropdown to node myNode with value attribute myAttribute the lead selection of node myNode is set in the position of element choose from user.
    So to take this chooised element use this code:
    wdContext.currentMyNodeElement.getmyAttribute()
    bye
    Andrea

  • How can I move my Premiere elements 8 from my old pc to my new imac?

    How can I move my Premiere elements 8 from my old pc to my new imac?

    tenfootprints
    Does your imac come with a Windows Mac interface?
    If not, you cannot. There is no Premiere Elements 8 Mac version. And, you cannot install Premiere Elements 8 Windows on
    a Mac computer. As I recall, Premiere Elements 9.0/9.0.1 was the first Premiere Elements version to be offered in Windows and Mac versions.
    Please explain with more details.
    Thanks.
    ATR

  • I upgraded my computer to 64bit.  How can I transfer my Premiere Elements 8.0 (32bit) to new computer?

    In October 2014, I purchased Adobe Premier Elements 8.0 (and the APE Templates 8.0) for my work computer (32bit Windows 7).  Now they gave me a new computer which is 64bit (Windows 7).  How can I get my Premier Elements program back on my new computer without having to purchase it all over again?  I only had the program for a couple of months before they upgraded my computer  to a 64bit  I submitted my question through "Adobe Chat" and they said they couldn't help and I would need to check the forums.  Thanks to anyone who can help!   Jay
    [Moved from Premiere PRO forum to Premiere Elements... Mod]

    jaym
    What did you have for installation...
    a. installation files from a purchased download from Adobe
    or
    b. installation disc from boxed packaging of the product?
    If you have an installation disc, then insert the disc into the burner tray and follow the instructions for the installation
    that present sequentially. Remember that Premiere Elements 8 on Windows 7 64 bit is still going to be a 32 bit application.
    It will be running in the 32 bit compatibility mode of the 64 bit computer and the 32 bit limitations would apply. But Premiere Elements
    8 will install on Windows 7, 8, or 8.1 64 bit but not as a 64 bit application.
    Now if you purchased an download, those downloads are typically specific to the operating system to which it was downloaded.
    Whether or not installation files downloaded to a 32 bit computer will work on 64 bit computer is questionable. Best advice is to
    try it. You will get an immediate message from the computer and program if it is a no go.
    Please review and let us know the outcome.
    Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR
    Add On...Premiere Elements Windows is a 64 bit application only when it is version 10, 11, 12, or 13 run specifically on
    Windows 7, 8, or 8.1 64 bit computer.

  • How can I avoid (on a mac) getting called on Skype...

    How can I avoid (on a mac) getting called on Skype when I'm not signed in?
    It's really annoying.
    I'm not sure if it's supposed to be that way, but suddenly I get the skype-calling-sound, and I have to log into the skype app to abort the call. The persistent calling bastards kept on calling after I aborted the call and left the app, so I ended up muting my speakers for a while. It really shouldn't have to be this troublesome.

    That's like asking how many cows can I get into a field.  It depends on the size of the field, size of the cows, the terrain of the field, etc.  We could use a bit more information on what you're trying to accommplish:
    1 - where are the photos being downloaded from.
    2 - how big are the photos?
    3 - where are you going to put the photos, i.e. into folders, into an iPhoto library?
    4 - how big is the hard drive in the Mac Pro and how much free space do you have on it?
    etc., etc, etc......

  • How can i avoid displaying runtime error in intractive report

    hi gurus
    my question is, in interactive report when i reach 20th secondary list after that am getting runtime error when i click again. So i wanted to know how can i avoid that run time error.
    regars
    imran

    Hi Imran,
    Basically we can have one basic list and 20 interactive lists.
    Once when we reached to 20th list then it goes to shortdump.
    So, inorder to avoid that we can modify the system field
    SY-LSIND.
    Just see this example and try this. I hope this will be useful for you.
    REPORT  ZSAMPLE1111.
    data: begin of itab occurs 0,
            matnr like mara-matnr,
            mtart like mara-mtart,
            mbrsh like mara-mbrsh,
            end of itab.
    data: begin of jtab occurs 0,
          maktx like makt-maktx,
          spras like makt-spras,
          end of jtab.
    select matnr mtart mbrsh into table itab from mara up to 10 rows.
    loop at itab.
    write:/ itab-matnr, itab-mtart, itab-mbrsh.
    hide itab-matnr.
    endloop.
    at line-selection.
    select maktx spras into table jtab from makt where spras = 'EN' .
    case sy-lsind.
    when '1'.
    loop at jtab.
    write:/ jtab-maktx, jtab-spras.
    endloop.
    when '20'.             * changes see here.
    sy-lsind = 1.
    when others .
    write:/ 'name',sy-lsind.
    endcase.
    I hope this will be helpful for you.
    <REMOVED BY MODERATOR>
    Cheers,
    Swamy kunche
    Edited by: Alvaro Tejada Galindo on Apr 15, 2008 4:01 PM

  • How can I avoid a full scan when ...

    Hello
    How can I avoid a full scan with I apply the aggregate function "MIN"
    SQL> select min(c1) from hh;
       MIN(C1)
             1
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE
       1    0   SORT (AGGREGATE)
       2    1     TABLE ACCESS (FULL) OF 'HH'Regards
    James King

    The table 'hh' does not have statistics. Assuming that there is an index on the column c1, statistics are computed on the table and its indexes, you may see a
    INDEX (FULL SCAN (MIN/MAX)) of the index on column 'c1'.

Maybe you are looking for

  • I can't search any videos on YouTube/Download any app from the App Store

    Hi, I am using movistar 3G network (Spain), full signal. Everything works fine, Stock app, Weather app, Mail, Safari... but I can't search for any videos on YouTube and can't download any app from the App Store. I can see videos on YouTube app but on

  • How many times can you download a free trial, on the same computer?

    about how many times are you allowed to download the same free trial software on the same computer?

  • VPN Certificate Based Authentication

    I understand people are using their internal PKI for authentication on wired and wireless networks, but it now has me thinking about VPN authentication. If the internal PKI has been setup for both machine and user certificates already, can we use tha

  • Nokia navigator 6110 prob sending texts please he...

    i have a nokia nacvigator 6110 and it wont send texts i can recieve texts and send and recieve calls but i think i may have a virus if so how do i fix ive plugged into my laptop and run my norton antivirus but it doesnt find n e thing i tried spybot

  • Reader 8 and Presto PageManager

    I am unable to load a scanned pdf file in Reader 8.0 through a program named Presto PageManager. The message returned is: There was an error opening this document. The file cannot be found. I recently had my workstation upgraded which necessitated th