Problems implementing comboboxes and having the program work

import java.text.DecimalFormat; //class for format decimals
import java.awt.*;
import javax.swing.*;
import java.applet.Applet;
import java.awt.event.*;
public class MortgageCal2 extends JApplet {
JLabel principal_Label;
JLabel interestRate_Label;
JLabel termYear_Label;
JTextField principal_TF;
JTextField interestRate_TF;
JComboBox interestRate_CB;
JTextField termYear_TF;
JComboBox termYear_CB;
JButton calculate_button;
JButton clear_button;
JLabel monthlyPI_Label;
JLabel payment_Label;
//*********************Main Program for MortgageCal2 Class***************************
public static void main(String[] args) {
     JFrame calculator = new JFrame();
     MortgageCal2 calc = new MortgageCal2();
     calculator.getContentPane().add(calc);
     calc.init();
     calculator.pack();
     calculator.setVisible(true);               
public void init() {
     MortgageCalLayout customLayout = new MortgageCalLayout();
     Container con1 = getContentPane();
     con1.setLayout(customLayout);
     principal_Label = new JLabel("PRINCIPAL:");//1
          con1.add(principal_Label);
     interestRate_Label = new JLabel("INTEREST RATE:");//2
          con1.add(interestRate_Label);
     termYear_Label = new JLabel("TERM YEARS:");//3
          con1.add(termYear_Label);
     principal_TF = new JTextField();//4
          con1.add(principal_TF);
          interestRate_TF = new JTextField();//5
          con1.add(interestRate_TF);
          String[] interestArray = {"5.35", "5.50", "5.75"};
          interestRate_CB = new JComboBox(interestArray);
          termYear_TF = new JTextField();//6
          con1.add(termYear_TF);
          String[] termArray = {"7", "15", "30"};
          termYear_CB = new JComboBox (termArray);
          JButton calculate_button = new JButton("CALCULATE");//7
          con1.add(calculate_button);
     monthlyPI_Label = new JLabel("MONTHLY P&I: ");//8
          con1.add(monthlyPI_Label);
     JButton clear_button = new JButton("CLEAR");//9
          con1.add(clear_button);
     payment_Label = new JLabel();
          con1.add(payment_Label);
          if (termYear_CB.getSelectedItem().equals ("7"))
               interestRate_CB.setSelectedIndex(1);
                    else if(termYear_CB.getSelectedItem().equals ("15"))
               interestRate_CB.setSelectedIndex(2);
                    else if(termYear_CB.getSelectedItem().equals ("30"))
               interestRate_CB.setSelectedIndex(0);
     //********Listener for Interest Rate ComboBox***********************
     interestRate_CB.addItemListener(new ItemListener(){
          public void itemStateChanged(ItemEvent ev)
          int idx=interestRate_CB.getSelectedIndex();
          termYear_CB.setSelectedIndex(idx);
     //*********Listener for Calculate Button*****************************
     calculate_button.addActionListener(
          new ActionListener() {
public void actionPerformed(ActionEvent h) {
//***********************Decimal Format**************************
java.text.DecimalFormat DF = new DecimalFormat("###,###.00");
//***************Variables***************************************
double principal = Double.parseDouble(principal_TF.getText());
double interestRate = Double.parseDouble(interestRate_TF.getText());
double monthlyInterest;
double termYear = Double.parseDouble(termYear_TF.getText());
double termMonthly;
double monthlyPI;
//*****************Calculations************************************
monthlyInterest = interestRate / 12 / 100;
termMonthly = termYear * 12;
monthlyPI = (principal * monthlyInterest) / (1 - Math.pow(1 + monthlyInterest, -termMonthly));
//*****************Displays Payment***********************************
payment_Label.setText("$" + DF.format(monthlyPI));
//***************Listener for Clear Button************************
clear_button.addActionListener(
new ActionListener() {
public void actionPerformed(ActionEvent h) {
principal_TF.setText("");
interestRate_TF.setText("");
termYear_TF.setText("");
payment_Label.setText("");
class MortgageCalLayout implements LayoutManager {
     //***********Constructor for the MortgageCal Layout object*************************
     public MortgageCalLayout() { }
     //********Adds a feature to the LayoutComponent attribute for the MortgageCal Layout object**********
     public void addLayoutComponent(String name, Component comp) {
     //**************Method description************************
public void removeLayoutComponent(Component comp) {
     public Dimension preferredLayoutSize(Container parent) {
          Dimension dim = new Dimension(0, 0);
          Insets insets = parent.getInsets();
     dim.width = 250 + insets.left + insets.right;
     dim.height = 250 + insets.top + insets.bottom;
return dim;
     public Dimension minimumLayoutSize(Container parent) {
     Dimension dim = new Dimension(0, 0);
return dim;
     public void layoutContainer(Container parent) {
     Insets insets = parent.getInsets();
     Component c;
     c = parent.getComponent(0);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 10, 100, 25);
     c = parent.getComponent(1);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 40, 100, 25);
     c = parent.getComponent(2);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 72, 100, 25);
     c = parent.getComponent(3);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 10, 115, 25);
     c = parent.getComponent(4);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 40, 115, 25);
     c = parent.getComponent(5);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 75, 115, 25);
     c = parent.getComponent(6);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 105, 115, 25);
     c = parent.getComponent(7);
               if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 140, 100, 25);
     c = parent.getComponent(8);
          if (c.isVisible()) {
          c.setBounds(insets.left + 115, insets.top + 200, 120, 25);
     c = parent.getComponent(9);
          if (c.isVisible()) {
          c.setBounds(insets.left + 115, insets.top + 140, 75, 25);

import java.text.DecimalFormat; //class for format decimals
import java.awt.*;
import javax.swing.*;
import java.applet.Applet;
import java.awt.event.*;
public class MortgageCal2 extends JApplet {
JLabel principal_Label;
JLabel interestRate_Label;
JLabel termYear_Label;
JTextField principal_TF;
JTextField interestRate_TF;
JComboBox interestRate_CB;
JTextField termYear_TF;
JComboBox termYear_CB;
JButton calculate_button;
JButton clear_button;
JLabel monthlyPI_Label;
JLabel payment_Label;
//*********************Main Program for MortgageCal2 Class***************************
public static void main(String[] args) {
     JFrame calculator = new JFrame();
     MortgageCal2 calc = new MortgageCal2();
     calculator.getContentPane().add(calc);
     calc.init();
     calculator.pack();
     calculator.setVisible(true);               
public void init() {
     MortgageCalLayout customLayout = new MortgageCalLayout();
     Container con1 = getContentPane();
     con1.setLayout(customLayout);
     principal_Label = new JLabel("PRINCIPAL:");//1
          con1.add(principal_Label);
     interestRate_Label = new JLabel("INTEREST RATE:");//2
          con1.add(interestRate_Label);
     termYear_Label = new JLabel("TERM YEARS:");//3
          con1.add(termYear_Label);
     principal_TF = new JTextField();//4
          con1.add(principal_TF);
          interestRate_TF = new JTextField();//5
          con1.add(interestRate_TF);
          String[] interestArray = {"5.35", "5.50", "5.75"};
          interestRate_CB = new JComboBox(interestArray);
          termYear_TF = new JTextField();//6
          con1.add(termYear_TF);
          String[] termArray = {"7", "15", "30"};
          termYear_CB = new JComboBox (termArray);
          JButton calculate_button = new JButton("CALCULATE");//7
          con1.add(calculate_button);
     monthlyPI_Label = new JLabel("MONTHLY P&I: ");//8
          con1.add(monthlyPI_Label);
     JButton clear_button = new JButton("CLEAR");//9
          con1.add(clear_button);
     payment_Label = new JLabel();
          con1.add(payment_Label);
          if (termYear_CB.getSelectedItem().equals ("7"))
               interestRate_CB.setSelectedIndex(1);
                    else if(termYear_CB.getSelectedItem().equals ("15"))
               interestRate_CB.setSelectedIndex(2);
                    else if(termYear_CB.getSelectedItem().equals ("30"))
               interestRate_CB.setSelectedIndex(0);
     //********Listener for Interest Rate ComboBox***********************
     interestRate_CB.addItemListener(new ItemListener(){
          public void itemStateChanged(ItemEvent ev)
          int idx=interestRate_CB.getSelectedIndex();
          termYear_CB.setSelectedIndex(idx);
     //*********Listener for Calculate Button*****************************
     calculate_button.addActionListener(
          new ActionListener() {
public void actionPerformed(ActionEvent h) {
//***********************Decimal Format**************************
java.text.DecimalFormat DF = new DecimalFormat("###,###.00");
//***************Variables***************************************
double principal = Double.parseDouble(principal_TF.getText());
double interestRate = Double.parseDouble(interestRate_CB.getText());
double monthlyInterest;
double termYear = Double.parseDouble(termYear_CB.getText());
double termMonthly;
double monthlyPI;
//*****************Calculations************************************
monthlyInterest = interestRate / 12 / 100;
termMonthly = termYear * 12;
monthlyPI = (principal * monthlyInterest) / (1 - Math.pow(1 + monthlyInterest, -termMonthly));
//*****************Displays Payment***********************************
payment_Label.setText("$" + DF.format(monthlyPI));
//***************Listener for Clear Button************************
clear_button.addActionListener(
new ActionListener() {
public void actionPerformed(ActionEvent h) {
principal_TF.setText("");
interestRate_TF.setText("");
termYear_TF.setText("");
payment_Label.setText("");
class MortgageCalLayout implements LayoutManager {
     //***********Constructor for the MortgageCal Layout object*************************
     public MortgageCalLayout() { }
     //********Adds a feature to the LayoutComponent attribute for the MortgageCal Layout object**********
     public void addLayoutComponent(String name, Component comp) {
     //**************Method description************************
public void removeLayoutComponent(Component comp) {
     public Dimension preferredLayoutSize(Container parent) {
          Dimension dim = new Dimension(0, 0);
          Insets insets = parent.getInsets();
     dim.width = 250 + insets.left + insets.right;
     dim.height = 250 + insets.top + insets.bottom;
return dim;
     public Dimension minimumLayoutSize(Container parent) {
     Dimension dim = new Dimension(0, 0);
return dim;
     public void layoutContainer(Container parent) {
     Insets insets = parent.getInsets();
     Component c;
     c = parent.getComponent(0);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 10, 100, 25);
     c = parent.getComponent(1);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 40, 100, 25);
     c = parent.getComponent(2);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 72, 100, 25);
     c = parent.getComponent(3);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 10, 115, 25);
     c = parent.getComponent(4);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 40, 115, 25);
     c = parent.getComponent(5);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 75, 115, 25);
     c = parent.getComponent(6);
          if (c.isVisible()) {
                    c.setBounds(insets.left + 115, insets.top + 105, 115, 25);
     c = parent.getComponent(7);
               if (c.isVisible()) {
                    c.setBounds(insets.left + 20, insets.top + 140, 100, 25);
     c = parent.getComponent(8);
          if (c.isVisible()) {
          c.setBounds(insets.left + 115, insets.top + 200, 120, 25);
     c = parent.getComponent(9);
          if (c.isVisible()) {
          c.setBounds(insets.left + 115, insets.top + 140, 75, 25);
MortgageCal2.java:122: cannot resolve symbol
symbol : method getText ()
location: class javax.swing.JComboBox
double interestRate = Double.parseDouble(interestRate_CB.getText());
^
MortgageCal2.java:124: cannot resolve symbol
symbol : method getText ()
location: class javax.swing.JComboBox
double termYear = Double.parseDouble(termYear_CB.getText());
Everything worked until I added the combo boxes. Now I get these errors.

Similar Messages

  • Having challenges installing Digital Editions 2.0 and having the program initialize correctly.

    I need to install Adobe Digital Editions (ADE) 2.0 so I can download books for my daughter's Nook from our local library. 
    I have tried installing ADE 2.0 way too many times to absolutely no avail.  After downloading the ADE 2.0 install program, I have tried installing with Norton virus and firewall software turned off, turned on, restarting my computer after an ADE 2.0 install attempts with virus protection off and on, and everytime I have tried to do anything with the supposedly installed ADE 2.0, it crashes and Microsoft opens its error mesaging window because ADE 2.0 has encountered a problem. 
    On a couple times I have also received this error message:
    Digital Editions.exe - Application Error Instructions at "0x8514c483" referenced memory at "0x8514c483".  The memory could not be "read".  Click "ok" to terminate the program.
    I have also re-downloaded the install program numerous times under different anti virus software operating scenarios (software enabled/disabled, etc), and everytime after the installation is complete, the program crashes.  Each time an install attempt failed, I uninstalled the program and went through a full ADE 2.0 install.  Sometimes still using the same install program and also after re-downloading the ADE 2.0 install program.  Everything I have tried has failed.
    I am also using an older Windows XP PC, but despite being a relatively older computer, this install and initialization challenge should not be occurring. 
    Short of finding a copy of the ADE 1.7 version and seeing if that will work (was suggested by user sjgt when replying to a post by su-anster on 26 Dec at 0358), does anyone have any suggestions?  This should not be such a challenge.  Thx

    Thanks for our reply.  I already have installed Overdrive Media Console
    without any challenge.  What I have ended up doing as a quick fix is I
    located and downloaded the ADE 1.7 version and after doing so, everything is
    working fine.  Obviously I am not using Adobe's latest and greatest ADE 2.0
    version with whatever associated bells and whistles, but ADE 1.7 is doing
    what I need to do to and that is allow me to download Adobe Epub files from
    our local library and to create an interface to my daughter's Nook.  If
    using the 3M Cloud app provides some greater functionality I might try that
    as well, but my problem is not connectivity with my daughter's Nook.  It is
    ADE 2.0 not installing and initializing on my computer.  I never got to the
    point of trying to download files because ADE 2.0 was constantly crashing
    when I opened the supposedly, correctly installed program. 
    Jess Brown
    ***-***-**** (office)  --  Removed by Mederator
    ***-***-**** (mobile) -- --  Removed by Mederator
    Notice: It's OK to print this email. Paper is a biodegradable, renewable,
    sustainable product made from trees. Growing and harvesting trees provides
    jobs for millions of Americans. Working forests are good for the environment
    and provide clean air and water, wildlife habitat and carbon storage. Thanks
    to improved forest management, we have more trees in America today than we
    had 100 years ago.  Wood products support forests.
    Message was edited by: Arpit Kapoor

  • TS5376 I'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.

    'm having a problem with downloading and installing the new version of itunes for windows (11.1.4)  I have done everything the troubleshooting article has said and it is still not working properly.  I have even done a repair to see if that works and it has not.  Has anyone else found a new way to get it working?

    Try Troubleshooting issues with iTunes for Windows updates.
    tt2

  • So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    So I download photoshop cc (2014) and when I go to open the program, it gives me an error message and shuts the program down. It says," A problem cause the program to stop working correctly. Windows will close the program." Can someone help me please?

    I've got the same issue and it affects all my adobe software.  You are not alone as I have seen several postings looking for the answer to this help request.

  • I Cannot get my organizer to work for Elements 13. "A problem caused the program to stop working correctly. Windows will close the program......" is the error I get. I've uninstalled and reinstalled the program and tried various other things based on the

    I Cannot get my organizer to work for Elements 13. "A problem caused the program to stop working correctly. Windows will close the program......" is the error I get. I've uninstalled and reinstalled the program and tried various other things based on the MANY other complaints with this same issue and nothing is working. How can this problem be corrected?

    Hi,
    Which operating system are you running on?
    Are you upgrading from a previous version of Photoshop elements or is this your first?
    Are you trying to load the organizer or the editor or do both fail?
    Brian

  • Having trouble getting Skype to work.  It did when I first got the computer about a yr ago but then quit.  I've trashed and reinstalled the program and set the preferences to allow Skype but nothing is working.  Any suggestions?

    Having trouble getting Skype to work.  It did when I first got the computer about a yr ago but then quit.  I've trashed and reinstalled the program and set the preferences to allow Skype but nothing is working.  Any suggestions?

    all I can suggest is completley unistall as here
    https://support.skype.com/en/faq/FA12073/how-can-i-completely-uninstall-and-then -reinstall-skype-for-mac-os-x
    Then reinstall
    http://www.skype.com/en/download-skype/skype-for-mac/

  • My macbook is loaded with microsoft work and every time I try and open the program I get an error reading and it will not open.  Powerpoint and the other applications still respond!

    my macbook is loaded with microsoft word for macs and every time I try and open the program I get an error reading and it will not open. This is what it says:
    The application Microsof Word quit eunexpectedly.  Powerpoint and the other applications still respond!

    The joys of Microsoft!
    Maybe the preferences file is corrupted.  You should be able to find the Word preferences file in the folder:
    your user name/Library/Preferences
    Its name is com.microsoft.Word.plist
    I suggest you drag this another folder and try Word again. 
    If that doesn't work then you might find clearing the cache files will fix the problem.  You can do this manually but I never bother. Instead I use a program like Snow Leopard Cache Cleaner (shareware) or Onyx (free). These programs do lots of other maintenance jobs so it's worth having at least one of them.
    Bob

  • I have reloaded Icloud on my Windows 7 PC and it just says it stopped working and closes the program after I enter my apple password, what can I do?

    I am unable to use Icloud on my Dell PC. I have uninstalled it twice and reloaded it. When I enter my Apple password, it tells me that it has stopped working and closes the program. What can I do to correct this.

    Hi MamaTabs,
    If you are having issues signing in to iCloud on your Windows machine, you may find some of the troubleshooting in the following article helpful:
    iCloud: Account troubleshooting
    http://support.apple.com/kb/ts3988
    Also, you may want to make sure that you are running the most recent version of iCloud Control Panel for Windows:
    Apple: iCloud Control Panel 3.1 for Windows
    http://support.apple.com/kb/dl1455
    Regards,
    - Brenden

  • Just downloaded and installed new LR CC.  No apparent problems with the D/I on my iMac, OS 10.10.3. however LR CC will not start.  I get a momentary flash of the opening screen and then the program  shuts down.   From the posts it looks like this if a ver

    Just downloaded and installed new LR CC.  No apparent problems with the D/I on my iMac, OS 10.10.3. however LR CC will not start.  I get a momentary flash of the opening screen and then the program  shuts down.   From the posts it looks like this if a very common problem.  Any help would be appreciated. Thanks.

    Have you tried logging out of your CC desktop app, then logging back in again? Quit/Restart won't work, but logging out and back in should. See here: https://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

  • Every time i try to start itunes it trys to backup my ipad and says an error stopped the program working and closes down??

    Every time i try to start itunes it trys to backup my ipad and says an error stopped the program working and closes down??

    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!

  • I have tried to install iTunes 5 but when Windows it starts to install it  says there`s a problem with my Windows installer Paket and cancel the Program

    i have tried to install iTunes 5 but when Windows it starts to install it  says there`s a problem with my Windows installer Paket and cancel the Program. I`ve searched for answears in the web and they said ischould waste my old Itunes version and try it again. But it happend the same again! Now i havent any iTunes version and iAlso can`t Load a new one!!!! Pllease help me !!!

    I solved it myself, after the "note" which came back from FF/Mozilla just as I finished my message, commenting on what it was that my system had , I wnnt back to check my plug-ins etc. I downloaded the latest Java, BOTH 32bit AND 64 bit versions and latest Firefox.
    Now all is working.
    Thanks,
    B.

  • Why do i have to keep clicking my left mouse button to make the program work it just stops and if left click it starts working

    Why do i have to keep clicking my left mouse button to make the program work it just stops and if left click it starts working. I'v only just started to use this program and It's no good at all if I go to a website and click a button I have to keep clicking it to finish what its doing.

    hello jeffsprig, can you try to replicate this behaviour when you launch firefox in safe mode once?
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    multiple other affected users have reported that this was an issue caused by malware on their pc. please run a scan of your system with [http://www.bleepingcomputer.com/download/adwcleaner/ adwcleaner] and the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes].
    [[Troubleshoot Firefox issues caused by malware]]

  • Register Applications photoshop CC   Lightroom 300 baht per month Creative Cloud desktop install and load the program into Lightroom down normally open normally, but the work load photoshop program installed. Open access Like we use it to fill a 30-day tr

    Register Applications photoshop CC   Lightroom 300 baht per month Creative Cloud desktop install and load the program into Lightroom down normally open normally, but the work load photoshop program installed. Open access Like we use it to fill a 30-day trial version, serial no.

    1) WHAT if I juse JUST ONE Adobe program pretty often? 
    They have a single use subscription for $20/mo.  Similar to upgrading extended version every 1.5 years.
    2)  WHAT if I created projects like 2 months ago and I didn't use Photoshop for a full month.  Who assures us that with the CC series the projects are opened with the old CS ones?Or don't use it every day?
    Same problem if you own it.  If upgrade price is $400 every 1.5 year that is same as $16/month.  You can choose not to update and version will be same as when you last used it.
    3) WHAT if I don't use Adobe 24/7?  and 5) Making an day-based subscription??  Same problem if you own it.  If upgrade price is $400 every 1.5 year that is same as $16/month.
    4) Adobe, do you think to be the only one making these softwares?
    Competition is always a factor in market.
    6) After all this mess, you discriminate Europeans, too?
    Taxes charged by Governments and municipalities are not controlled by Adobe.

  • Hello. Tell how to enter the program and to start working in it.  I paid, loaded and installed the program Photoshop CC

    help please to start working... with English at me in any way without translator... if somebody can explain in Russian as to start the program, I will be very grateful
    Tell how to enter the program and to start working in it.  I paid, loaded and installed the program Photoshop CC

    Online Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html

  • When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    When I click on any of my movie or TV shows in Itunes I immediately get an error message that says Itunes has stopped working and closes the program. I can sync the movies and shows to my phone okay but I can't watch on Itunes. Can anyone help?

    Let's try the following user tip with that one:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

Maybe you are looking for

  • Digital Download with DVD not working like it should

    I purchased the Mickey Mouse Clubhouse Space Adventure from Walmart.  I love to buy the ones that include the digital download, that way if we are stuck somewhere I can whip out my iPad or iPhone and entertain a 3 year in the blink of an eye.  Howeve

  • Flickering problem with 2011 macbook pro unibody

    I have a 17" 2011 Macbook Pro Unibody and when I connect the computer to the TV via Mini Display Port (HDMI), the TV is either not receiving any signal, or screen is flickering, however, my other 13" 2010 Macbook Pro Unibody has no problem when conne

  • Error in global conversion rule for InfoObject when Activating 2LIS_11_V_IT

    Hello, I am facing several issues while activating the Content. For 2LIS_11_V_ITM I get the following message: Error in global conversion rule for InfoObject 0INCOTERMS2 Message no. RSAR263 Diagnosis Errors with the global conversion rule for the fie

  • Error While Confirmation: Grant 0 does not exist

    Hello Experts, We have SRM 4.0 While doing confirmationuser got error: 'Grant 0 does not exist'. (SC with,Service line item with Acct Assignment Category : Asset valuated GR(E) with asset number but no GL acct),                                       

  • Latest version doesn't work. How to return to 3.6.11 in OS X?

    OS X 10.6.4... FF3.6.12 doesn't work at a forum website I have up 24/7. I just followed the instructions to replace it with 3.6.11, but after three tries, .12 refuses to be out of my life. All goes as well..., I'm asked if I want to replace the exist