Runtime error--can someone please help me?!

ok so when i try to open my itunes (i have itunes 7) it opens but almost immediately a window pops up that says "software application has encountered a problem and needs to close. we are sorry for the inconvenience." it also says that they prepared an error report to send to microsoft about the problem. i've tried sending it but nothing has happened so now i click the "don't send" option. then a window pops up titled "Microsoft Visual C++ Runtime Library" and it says "Runtime Error! Program: C:\Program Files\iTunes\iTunes.exe This application has requested the Runtime terminate it in an unusual way. Please contact the application's support team for more information." i've tried uninstalling quicktime and then repairing iTunes but that doesn't fix it. i don't know what else to do. can someone please help me?!

NoClassDefFoundError happens because the JVM cannot find some class from your program, not because the OS cannot find your JVM (PATH regulates the latter, but not the former). JVM looks up classes in directories (or JAR files) specified through the -classpath option, like "java -classpath c:\myclasses MyMainClass". Read the online doc for the "java" launcher for more info.

Similar Messages

  • After Installing the OS x Mountain Lion some o the softwares are asking for Java SE 6 Runtime. Can someone please help me find a solution.

    After Installing the OS x Mountain Lion some o the softwares are asking for Java SE 6 Runtime. Can someone please help me find a solution.

    By default, ML no longer comes with the Java runtime preinstalled. I believe the route to enabling Java if you are going to need it is to run the Java Preferences app found in Utilities. It will inform you of Java's absence and offer to install the latest version and activate it. On subsequent runs, the Preferences app will allow you to fine tune how the runtime operates.
    Note that the new default operation is for the applet plugin to be disabled. You need to enable it as needed and it self-deactivates if unused in awhile. Also important to note that Java comes in both 32 and 64 bit versions and you can set the preferred order. Default is 64-bit but I've had issues with some applets failing to run and have had to switch the order.

  • I keep getting an error can someone please help

    i am trying to develop a web application using tomcat. i have a servlet that will not compile because of two things. firstly, it says that package beans does not exist and secondle it gives an error becuase im using a user bean here to set some attributes but it keeps saying it cannot resolve symbol User. can someone please help me sort this out. thanks

    You need to package the bean classes in the proper package (in your case beans), and then place them in WEB-INF/classes/<package dirs>.
    Then you need to import the classes in the JSP.
    Cheers!
    ***Annie***

  • Update failed error, can someone please help?

    I've been trying since last night to update from 1.1 to 2.0 and can't seem to get it to work. I select update from Apple TV settings and it downloads the update. Once completed, I select Update now and begins the process and starts to fill-in the progress bar, then shortly it states that the Update failed and asks to press the menu button. I do so and I am greeted by 3 choices: Diagnostics (which I've run about 3 times now and everything comes back okay); Restart (which I've done as well and only reboots the device); Factory Restore (which I did 2 times and only restores the device back to factory defaults).
    I can't get the update to work at all. Aside from that, the device works perfectly fine, without any issues. My DSL line is 6mbps and works very well. The Apple TV is connected via Wifi (802.11n) and that's fast too, so I really don't know how to resolve it, short of bringing it to a local Apple store for a replacement.
    If anyone can help me out and at least point me in the right direction, I'd gladly appreciate it.
    Thanks in advance!
    Message was edited by: tokyo-shock

    Thank You for the suggestions, I really appreciate the help!
    But...Since the Apple TV was only about 11 days old, I contacted Apple's 800 support line and explained the issue I was having. They said that they hadn't really heard of anyone having that problem and asked me to do the usual troubleshooting steps (diagnostics, restart and factory default). Since that didn't solve the problem they told me I could either get an exchange through Apple via mail or I could take it to a local Apple store with the receipt and they would exchange it for a new model.
    I opted for the latter. I was curious about resolving the issue and seeing what was being affected, but truthfully, I was more interested in getting my Apple TV updated and working to full capacity.
    So that's it. I took it in today and got an exchange immediately. The new device updated like a charm and plays beautifully.
    Thanks again for all the help and support, really appreciated!

  • Incompatable Types error  Can someone please help me working 1 wk on this

    Incompatable Types error found : double required javax.swing.JTextField
    private void CalculateButtonActionPerformed(java.awt.event.ActionEvent evt) {
    try {
    double num1 = Double.parseDouble(LoansField.getText());
    double num2 = Double.parseDouble(WagesField.getText());
    double num3 = Double.parseDouble(OtherField.getText());
    double num4 = Double.parseDouble(RentField.getText());
    double num5 = Double.parseDouble(FoodField.getText());
    double num6 = Double.parseDouble(OtherField2.getText());
    String op1 = (String)LoanComboBox.getSelectedItem();
    String op2 = (String)WagesComboBox.getSelectedItem();
    String op3 = (String)OtherComboBox.getSelectedItem();
    String op4 = (String)RentComboBox.getSelectedItem();
    String op5 = (String)FoodComboBox.getSelectedItem();
    String op6 = (String)Other2ComboBox.getSelectedItem();
    //Below I am adding the loans, wages & other field so that it total correctly Incompatable types error below
    TotalIncomeField = (num1 + num2 + num3);
    TotalSpendingField = (num4 + num5 + num6);
    //Here above I am adding the rent, food & other field so that it total correctly incompatable types error above
    double result = 0;
    if (op1.equals("Weekly"))
    result = num1 * 4.3333333;
    else if (op1.equals("Monthly"))
    result = num1;
    else if (op1.equals("Yearly"))
    result = num1 / 12;
    else if
    (op2.equals("Weekly"))
    result = num2 * 4.3333333;
    else if (op2.equals("Monthly"))
    result = num2;
    else if (op2.equals("Yearly"))
    result = num2 / 12;
    else if
    (op3.equals("Weekly"))
    result = num3 * 4.3333333;
    else if (op3.equals("Monthly"))
    result = num3;
    else if (op3.equals("Yearly"))
    result = num3 / 12;
    TotalIncomeField.setText(String.format("%.2f",result));
    if
    (op4.equals("Weekly"))
    result = num4 * 4.3333333;
    else if (op4.equals("Monthly"))
    result = num4;
    else if (op4.equals("Yearly"))
    result = num4 / 12;
    else if
    (op5.equals("Weekly"))
    result = num5 * 4.3333333;
    else if (op5.equals("Monthly"))
    result = num5;
    else if (op5.equals("Yearly"))
    result = num5 / 12;
    else if
    (op6.equals("Weekly"))
    result = num6 * 4.3333333;
    else if (op6.equals("Monthly"))
    result = num6;
    else if (op6.equals("Yearly"))
    result = num6 / 12;
    TotalSpendingField.setText(String.format("%.2f",result));
    } catch (NumberFormatException ex) {
    * @param args the command line arguments
    */

    Incompatable Types error found : double required
    javax.swing.JTextField Please use code tags and include the entire class as well as the entire stack trace for the error.
    This error occurs because somewhere you have a JTextField wher you should have a double. (There should be a line number to tell you exactly where).

  • I was using my wifi last night when I got an error message stating my ip address had been taken over.  Then safari stopped working and i can no longer access the internet. I looked at my ip address and it states 000.000.000....can someone please help?

    I was using my wifi last night when I got an error message stating my ip address had been taken over.  Then safari stopped working and i can no longer access the internet. I looked at my ip address and it states 000.000.000....can someone please help?

    Sounds like a bogus pop up. In any case power down your Mac, your modem, your router. Then power back up in 1 minute sequence; modem, router, Mac.

  • TS1368 I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

    I am recieving the following message when attempting to sign into my iTunes store - An unknown error has occurred. can someone please help me I have reset my password but still unable to log in. help!!

  • When i turn on itunes, it crashes automatically with the error message saying "itunes has encountered a problem and needs to close." I've tried reinstalling itunes but its the same. CAN SOMEONE PLEASE HELP!!!

    when i turn on itunes, it crashes automatically with the error message saying "itunes has encountered a problem and needs to close." I've tried reinstalling itunes but its the same. CAN SOMEONE PLEASE HELP!!!

    Try:
    iOS: If you can't back up or restore from a backup in iTunes

  • I've tried to install flash player several different times ans each time i get a connection error message.It downloads fine and when i run the file to start install,it installs up to 5% and then i get the connection error message.Can someone please help m

    I've tried to download the flash player several different times and each time i get a connection error message.It downloads fine and when i run the file to start install, it installs up to 5% and then i get the connection error message. I've tried disabling my antivirus software, closing my browser for install and nothing.Can someone please help me? I'm using Firefox.

    Hi!
    I had the exact same issue, being on a mac. If you are on a mac and the connection error message occurs, then use this link http://fpdownload.macromedia.com/pub/flashplayer/latest/help/install_flash_player_osx.dmg
    It allows you to download it offline, which is what I used.
    Hope I was help!
    -Haroon

  • HT4061 i have a iphone 3gs and recently I Erase All Contents and Settings, now my phone is asking me to update to itunes but when I do it comes up with the message...error 10.15, can someone please help?

    i have a iphone 3gs and recently I Erase All Contents and Settings, now my phone is asking me to update to itunes but when I do it comes up with the message...error 10.15, can someone please help?

    Your headline says iPhone 3GS, but your text says 3G.
    iPhone 3G is not compatible with iOS5. 3GS is.

  • TS3694 I'm trying to update my Iphone Software to the the new IOS 7 but it says there as an uknown error (6). Can someone please help me? Thanks

    I'm trying to update my Iphone Software to the the new IOS 7 but it says there as an uknown error (6). Can someone please help me? Thanks

    http://support.apple.com/kb/TS3694
    Check the section on
    Errors related to third-party security software

  • I have an iPhone 4 that is stuck in a recovery loop. i try to restore it but it comes up with an error code (-1) towards the end of the restore. can someone please help me?

    i have an iPhone 4 that is stuck in a recovery loop. i try to restore it but it comes up with an error code (-1) towards the end of the restore. can someone please help me?

    i just baught it off someone.. so im unsure if it was jailbroken or not.. and i dont think its under warranty now.
    is there a software or something along those lines that would indicate what peice of hardware is faulty?
    i baught it in this recovery loop thinking it was going to be a cheap way of getting a new phone without having to do much.. but now im starting to think its a brick

  • When attempting to start iTunes, I get the following: "The iTunes library file cannot be saved. An unknown error occurred (-50)." Can someone please help me get this fixed?

    When attempting to start iTunes, I get the following: "The iTunes library file cannot be saved. An unknown error occurred (-50)." Can someone please help me get this fixed?

    Same problem here since latest update.  As usual poor support from Apple with no answer or fix for this bug.

  • Can Someone please help me with ERROR 4251

    I have tried everything! even slowing down the burn speed.
    Can someone please help with error 4251 when burning.
    I have my diagnostics report done as well.
    Thank you to anyone who can help.

    I did a quick google search for "iTunes error 4251" and this was the first result.
    http://forums.techarena.in/motherboard-processor-ram/1215316.htm
    The last post in that forum said a few things.
    1.Restart computer
    2.Disable anti-virus/security programs
    3.Update hardware and software drivers.(I'm guessing mainly the cd-rom drive drivers)
    Try those things and see if it is still a problem.
    ~Bill L.

  • Windows thinks my itouch is a camera and itunes says this ipod can't be used because the software isn't installed - reinstall itunes.  i've done that and continue to get the same error.  can someone please help?

    windows thinks my itouch is a camera and itunes says this ipod can't be used because the software isn't installed - reinstall itunes.  i've done that and continue to get the same error.  can someone please help?

    (apologies for barging in, lllass.)
    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/download.htm
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, does your device connect without that message now?

Maybe you are looking for