Help Please I am new to programming Java1.3.1

I am having the following problem with the appletviewer for the following code and screen print of error message. I would greatly aperciate any help i can get.Thanks Adera...
my e-mail address is [email protected]
Sorry the screen print will not copy into here so i will type it out.
java.lang.ClassCastException:Calculator
at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
at sun.applet.AppletPanel.run(AppletPanel.java:293)
at java.lang.Thread.run(Thread.java:484)
Here is my code..
//Adera Currie Student Id# 31248
//Course Title: Internet Programming
//Due Date: August 13th, 2002
//calculator.Java
//Hilltop Library Calculator Java Project
//import javax.swing.*;
//import javax.swing.JOptionPane;
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
//import java.awt.Container;
public class Calculator extends JFrame implements ActionListener
int chioce, i;
//integer variable to hold stringnums in
double calcone, calctwo;
//variables for mouse clicks
double numone, numtwo, total, holdnum, decimalCount;
String calctot, calctot1, calctot2, negnum, holdnumonetwo;
//declare text area
TextField text1;
//declare button array
Button calcbutton[], clear;
//string array to convert textfield values, string manipulation
String textfield;
String bpressedEvaluated;
//declare panel object
Panel bpanel,text2,Cpanel;
//declare variable arrays to hold the name and numbers of the buttons that
//will be created on the applet
String bnames[] = {"7","8","9","/","Sin","4","5","6",
"*","Cos","1","2","3","-","Tan",
"0",".","=","+","Neg"};
//arrays for holding the items to check for when the action click event is called
String holdOperatorVisual[] = {"/","*","-","=","+"};
String holdNumNames[] = {"0","1","2","3","4","5","6","7","8","9",".","Neg"};
String holdSciFiVisuals[] = {"Sin","Cos","Tan"};
//declare boolean values to keep track of numbers and operators either
//in use or what should be terminated
boolean operators,operators2;
boolean firstnum;
boolean secondnum;
boolean numberpressed,decimalPressed,negPressed;
public void init()
//create the panels to hold applet objects
bpanel = new Panel();
text2 = new Panel();
Cpanel = new Panel();
//set up the applet layout for the buttons and such
//BorderLayout layout = new BorderLayout(5,5);
setLayout(new BorderLayout(5,5));
//create a container object
//Container c = this.getContentPane();
//c.setLayout(new FlowLayout());
//this.setLayout( new FlowLayout() );
//set up the panels with layout manager
bpanel.setLayout( new GridLayout (4,5));
text2.setLayout(new GridLayout(1,1));
Cpanel.setLayout(new GridLayout(1,1));
//create my text field to hold the display for the user
text1 = new TextField(20);
//make it so the user cannot enter text from the keyboard
text1.setEditable(false);
text1.setBackground(Color.cyan);
text2.add(text1);
//add teh panel to the container
add(text2, BorderLayout.NORTH);
//instantiate button object
calcbutton = new Button[bnames.length];
     for ( int i = 0; i < bnames.length; i++ )
calcbutton[i] = new Button(bnames);
calcbutton[i].addActionListener(this);
//(new ActionListener()
     calcbutton[i].setBackground(Color.cyan);
//add the new button from teh array into the panel for buttons
bpanel.add(calcbutton[i]);
//add the button panel to the container object
add(bpanel, BorderLayout.CENTER);
//create the clear button to be displayed at the bottom of the screen
clear = new Button("Clear");
//add the action listener for this object
clear.addActionListener(this);
clear.setBackground(Color.cyan);
//add the clear button to the panel for the clear button
Cpanel.add(clear);
//add the clear button panel to the container
add(Cpanel, BorderLayout.SOUTH);
     public void actionPerformed(ActionEvent e)
     String bpressed = (e.getActionCommand());
     checkButtonPressed(bpressed);
     if(bpressedEvaluated=="notFound")
//JOptionPane.showMessageDialog(null, "Invalid button selection!",
// "System Message", JOptionPane.INFORMATION_MESSAGE);
public void checkButtonPressed(String valueIn)
          String me;
          String takeValueIn = valueIn;
          double tot=0;
          String tat;
          for (i=0;i<holdNumNames.length;i++)
     if(takeValueIn == holdNumNames[i])
     //if there is a second operator in memory, then clear the contents of the
     //text box and start over adding in new numbers from the user
     if (takeValueIn == ".")
     if (decimalPressed == true)
//JOptionPane.showMessageDialog(null, "This function cannot be used with any other operatorsdecimalPressed== " + decimalPressed,"System Message.", JOptionPane.INFORMATION_MESSAGE);
break;
else
decimalPressed = true;
if(takeValueIn == "Neg")
     if(numberpressed == false && negPressed == false)
negPressed = true;
takeValueIn = "-";
else
break;
if (operators2 == true)
     String nothing;
     nothing = "";
     text1.setText(nothing);
     operators2 = false;
//if there is no data in the text box, then set this number as the new text
     if (text1.getText().length() == 0)
text1.setText(takeValueIn);
//if there is text contained in the text field, then append this number to
//to the text field and set the new text view for the user
else if (text1.getText().length() != 0)
holdnumonetwo = text1.getText();
holdnumonetwo += takeValueIn;
text1.setText(holdnumonetwo);
numberpressed = true;
bpressedEvaluated = "Found";
break;
for (i=0;i<holdOperatorVisual.length;i++)
if(takeValueIn == holdOperatorVisual[i])
if (takeValueIn == "=")
if (operators == true)
//convert text to number two for calculation
numtwo = Double.parseDouble(text1.getText());
//do the math
if(calctot1=="-")
tot = numone-numtwo;
else if(calctot1=="+")
tot = numone+numtwo;
else if(calctot1=="/")
tot = numone/numtwo;
else if(calctot1=="*")
tot = numone*numtwo;
//convert total to string
tat = String.valueOf(tot);
//set the visual value to the screen for the user
text1.setText(tat);
//update the new number one to be used in the next calculation
numone = tot;
decimalPressed = false;
negPressed = false;
numberpressed = false;
break;
else
if (operators != true && text1.getText().length()!= 0)
calctot1 = takeValueIn;
numone = Double.parseDouble(text1.getText());
String t;
t = "";
text1.setText(t);
firstnum = true;
operators = true;                                    decimalPressed = false;
negPressed = false;                               numberpressed = false;                                    break;
else if (operators == true && text1.getText().length()!= 0)
{                                                                                                                                                     calctot2 = takeValueIn;                                                                                                                                                     numtwo = Double.parseDouble(text1.getText());                                                                                                                                                     //do the math                                                                                                                                                if(calctot1=="-")                                                                                                                                                       {                                                                                                                                                     tot = numone-numtwo;                                                                                                                                                    }                                    else if(calctot1=="+")                                    {                                                                                                                                                        tot = numone+numtwo;                                                                                                                                                        }                                    else if(calctot1=="/")                                    {                                                                                                                                                            tot = numone/numtwo;                                                                                                                                                            }                                    else if(calctot1=="*")                                    {                                                                                                                                                                tot = numone*numtwo;                                                                                                                                                               }                                    //convert total to string                                    tat = String.valueOf(tot);                                    //set the visual value to the screen for the user                                    text1.setText(tat);                               //update the new number one to be used in the next calculation                               numone = tot;                               operators2 = true;                               decimalPressed = false;                               negPressed = false;                               }                               calctot1 = calctot2;                               //set the flags                               firstnum = true;                               decimalPressed = false;                               negPressed = false;                               numberpressed = false;                               bpressedEvaluated = "found";                               break;                               }                          }                     }                          for(i=0;i<holdSciFiVisuals.length;i++)                     {                                                                                                                                                         if(takeValueIn == holdSciFiVisuals[i])                     {                                                                                                                                                        if (text1.getText().length()!= 0 && operators != true)                                                                                                                                                            {                                                                                                                                                               double s=0;                                                                                                                                                                numone = Double.parseDouble(text1.getText());                                                                                                                                                            if(takeValueIn == "Sin")                                                                                                                                                                 s = Math.sin(numone);                                                                                                                                                            if(takeValueIn == "Cos")                                                                                                                                                                  s = Math.cos(numone);                                                                                                                                                            if(takeValueIn == "Tan")                                                                                                                                                                  s = Math.tan(numone);                                                                                                                                                                  firstnum = true;                                                                                                                                                                  String ch;                                                                                                                                                                  ch = String.valueOf(s);                                                                                                                                                                  text1.setText(ch);                                                                                                                                                                  operators2 = true;                                                                                                                                                            }                     else if (operators == true)                     {                                                                                                                                                                 //JOptionPane.showMessageDialog(null, "This function cannot be used with any other operators",                                                                                                                                                          //"System Message", JOptionPane.INFORMATION_MESSAGE);                                                                                                                                                                     break;                                                                                                                                                               }                          bpressedEvaluated = "found";                          decimalPressed = false;                          negPressed = false;                          numberpressed = false;                     }                }                          bpressedEvaluated = "notFound";                     if(takeValueIn == "Clear")
//reset all the values that are either presently in use, or that will be the
//first values to be used after the text field is cleared, to start from square one
numone = 0;
numtwo = 0;
//set the flags
firstnum = false;
secondnum = false;
operators = false;
operators2 = false;
decimalPressed = false;
negPressed = false;
numberpressed = false;
//declare string to help clear the text field
String cn;
cn = "";
//set the text field to nothing, an empty string
text1.setText(cn);
     //execute application
     public static void main (String args[])
     Calculator application = new Calculator();
//     addMouseListener(this);
     application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

//Adera Currie Student Id# 31248
//Course Title: Internet Programming
//Due Date: August 13th, 2002
//calculator.Java
//Hilltop Library Calculator Java Project
//import javax.swing.*;
//import javax.swing.JOptionPane;
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
import javax.swing.*;
//import java.awt.Container;
public class Calculator extends JFrame implements ActionListener
     int chioce, i;
     //integer variable to hold stringnums in
     double calcone, calctwo;
     //variables for mouse clicks
     double numone, numtwo, total, holdnum, decimalCount;
     String calctot, calctot1, calctot2, negnum, holdnumonetwo;
     //declare text area
     TextField text1;
     //declare button array
     Button calcbutton[], clear;
     //string array to convert textfield values, string manipulation
     String textfield;
     String bpressedEvaluated;
     //declare panel object
     Panel bpanel,text2,Cpanel;
     //declare variable arrays to hold the name and numbers of the buttons that
     //will be created on the applet
     String bnames[] = {"7","8","9","/","Sin","4","5","6",
"*","Cos","1","2","3","-","Tan",
"0",".","=","+","Neg"};
     //arrays for holding the items to check for when the action click event is called
     String holdOperatorVisual[] = {"/","*","-","=","+"};
     String holdNumNames[] = {"0","1","2","3","4","5","6","7","8","9",".","Neg"};
     String holdSciFiVisuals[] = {"Sin","Cos","Tan"};
     //declare boolean values to keep track of numbers and operators either
     //in use or what should be terminated
     boolean operators,operators2;
     boolean firstnum;
     boolean secondnum;
     boolean numberpressed,decimalPressed,negPressed;
     public Calculator()
          //create the panels to hold applet objects
          bpanel = new Panel();
          text2 = new Panel();
          Cpanel = new Panel();
          //set up the applet layout for the buttons and such
          //BorderLayout layout = new BorderLayout(5,5);
          getContentPane().setLayout(new BorderLayout(5,5));
          //create a container object
          //Container c = this.getContentPane();
          //c.setLayout(new FlowLayout());
          //this.setLayout( new FlowLayout() );
          //set up the panels with layout manager
          bpanel.setLayout( new GridLayout (4,5));
          text2.setLayout(new GridLayout(1,1));
          Cpanel.setLayout(new GridLayout(1,1));
          //create my text field to hold the display for the user
          text1 = new TextField(20);
          //make it so the user cannot enter text from the keyboard
          text1.setEditable(false);
          text1.setBackground(Color.cyan);
          text2.add(text1);
          //add teh panel to the container
          getContentPane().add(text2, BorderLayout.NORTH);
          //instantiate button object
          calcbutton = new Button[bnames.length];
          for ( int i = 0; i < bnames.length; i++ )
               calcbutton[0] = new Button(bnames[0]);
               calcbutton[0].addActionListener(this);
               //(new ActionListener()
               calcbutton[0].setBackground(Color.cyan);
               //add the new button from teh array into the panel for buttons
               bpanel.add(calcbutton[0]);
          //add the button panel to the container object
          getContentPane().add(bpanel, BorderLayout.CENTER);
          //create the clear button to be displayed at the bottom of the screen
          clear = new Button("Clear");
          //add the action listener for this object
          clear.addActionListener(this);
          clear.setBackground(Color.cyan);
          //add the clear button to the panel for the clear button
          Cpanel.add(clear);
          //add the clear button panel to the container
          getContentPane().add(Cpanel, BorderLayout.SOUTH);
          pack();
          show();
     public void actionPerformed(ActionEvent e)
          String bpressed = (e.getActionCommand());
          checkButtonPressed(bpressed);
          if(bpressedEvaluated=="notFound")
               //JOptionPane.showMessageDialog(null, "Invalid button selection!",
               // "System Message", JOptionPane.INFORMATION_MESSAGE);
     public void checkButtonPressed(String valueIn)
          String me;
          String takeValueIn = valueIn;
          double tot=0;
          String tat;
          for (i=0;i<holdNumNames.length;i++)
               if(holdNumNames.equals(takeValueIn + ""))
                    //if there is a second operator in memory, then clear the contents of the
                    //text box and start over adding in new numbers from the user
                    if(takeValueIn == ".")
                         if (decimalPressed == true)
                              //JOptionPane.showMessageDialog(null, "This function cannot be used with any other operatorsdecimalPressed== " + decimalPressed,"System Message.", JOptionPane.INFORMATION_MESSAGE);
                              break;
                         else
                              decimalPressed = true;
                    if(takeValueIn == "Neg")
                         if(numberpressed == false && negPressed == false)
                              negPressed = true;
                              takeValueIn = "-";
                         else
                              break;
                    if (operators2 == true)
                         String nothing;
                         nothing = "";
                         text1.setText(nothing);
                         operators2 = false;
                    //if there is no data in the text box, then set this number as the new text
                    if(text1.getText().length() == 0)
                         text1.setText(takeValueIn);
                    //if there is text contained in the text field, then append this number to
                    //to the text field and set the new text view for the user
                    else if (text1.getText().length() != 0)
                         holdnumonetwo = text1.getText();
                         holdnumonetwo += takeValueIn;
                         text1.setText(holdnumonetwo);
                    numberpressed = true;
                    bpressedEvaluated = "Found";
                    break;
          for (i=0;i<holdOperatorVisual.length;i++)
               if(holdOperatorVisual.equals(takeValueIn+""))
                    if (takeValueIn == "=")
                         if (operators == true)
                              //convert text to number two for calculation
                              numtwo = Double.parseDouble(text1.getText());
                              //do the math
                              if(calctot1=="-")
                                   tot = numone-numtwo;
                              else if(calctot1=="+")
                                   tot = numone+numtwo;
                              else if(calctot1=="/")
                                   tot = numone/numtwo;
                              else if(calctot1=="*")
                                   tot = numone*numtwo;
                              //convert total to string
                              tat = String.valueOf(tot);
                              //set the visual value to the screen for the user
                              text1.setText(tat);
                              //update the new number one to be used in the next calculation
                              numone = tot;
                              decimalPressed = false;
                              negPressed = false;
                              numberpressed = false;
                         break;
                    else
                         if (operators != true && text1.getText().length()!= 0)
                              calctot1 = takeValueIn;
                              numone = Double.parseDouble(text1.getText());
                              String t;
                              t = "";
                              text1.setText(t);
                              firstnum = true;
                              operators = true; decimalPressed = false;
                              negPressed = false; numberpressed = false; break;
                         else if (operators == true && text1.getText().length()!= 0)
                         { calctot2 = takeValueIn; numtwo = Double.parseDouble(text1.getText()); //do the math if(calctot1=="-") { tot = numone-numtwo; } else if(calctot1=="+") { tot = numone+numtwo; } else if(calctot1=="/") { tot = numone/numtwo; } else if(calctot1=="*") { tot = numone*numtwo; } //convert total to string tat = String.valueOf(tot); //set the visual value to the screen for the user text1.setText(tat); //update the new number one to be used in the next calculation numone = tot; operators2 = true; decimalPressed = false; negPressed = false; } calctot1 = calctot2; //set the flags firstnum = true; decimalPressed = false; negPressed = false; numberpressed = false; bpressedEvaluated = "found"; break; } } } for(i=0;i<holdSciFiVisuals.length;i++) { if(takeValueIn == holdSciFiVisuals) { if (text1.getText().length()!= 0 && operators != true) { double s=0; numone = Double.parseDouble(text1.getText()); if(takeValueIn == "Sin") s = Math.sin(numone); if(takeValueIn == "Cos") s = Math.cos(numone); if(takeValueIn == "Tan") s = Math.tan(numone); firstnum = true; String ch; ch = String.valueOf(s); text1.setText(ch); operators2 = true; } else if (operators == true) { //JOptionPane.showMessageDialog(null, "This function cannot be used with any other operators", //"System Message", JOptionPane.INFORMATION_MESSAGE); break; } bpressedEvaluated = "found"; decimalPressed = false; negPressed = false; numberpressed = false; } } bpressedEvaluated = "notFound"; if(takeValueIn == "Clear")
                                   //reset all the values that are either presently in use, or that will be the
                                   //first values to be used after the text field is cleared, to start from square one
                                   numone = 0;
                                   numtwo = 0;
                                   //set the flags
                                   firstnum = false;
                                   secondnum = false;
                                   operators = false;
                                   operators2 = false;
                                   decimalPressed = false;
                                   negPressed = false;
                                   numberpressed = false;
                                   //declare string to help clear the text field
                                   String cn;
                                   cn = "";
                                   //set the text field to nothing, an empty string
                                   text1.setText(cn);
     //execute application
     public static void main (String args[])
          Calculator application = new Calculator();
          // addMouseListener(this);
          application.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}

Similar Messages

  • Help please with my new ipad 4 Retna.

    Please help find a solution to my problem with my new ipad 4 Retna. The keyboard seems to have a mind of its own and keeps jumping up and down on the screen without any assistance from me.
    I did have the screen replaced and I am not sure whether that is the reason or whether it is a known software problem as I had only had it for one day before the screen got broken.
    It seems to settle down for a while. The longest it has been normal without a problem is 3 weeks and now it is doing the same thing again.
    Please anyone can you help.???

    The Basic Troubleshooting Steps are:
    Restart... Reset... Restore from Backup...  Restore as New...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414
    If you try all these steps and you still have issues... Then a Visit to an Apple Store or AASP (Authorized Apple Service Provider) is the Next Step...
    Be sure to make an appointment first...

  • Help Please On My New WordPress Site

    Please Help with my Wordpress Site? I have a big problem with slider pics not showing correctly and blogs missing on menu. Can anyone please help?
    Site is www.azbodybuilding.com

    There are tutorial websites available on the web, you can search out for the solution, as of now, have read a post recently.. http://blog.pixelcrayons.com/wordpress/beginners-guide-to-launch-a-wordpress-plugin/
    Hope this helps you.. Or you can hire wordpress developers for the same.

  • Need help with updates and new apple programs

    something happened to my pc. having problems with my pc when it restarts.
    wondered if anyone whichapple updates require a restart, and which don't?
    if they require a restart to finish installation, they fail, and my pc crashes, and i have to resintall os.
    i know the iwork does not require a restart, where ilife does. so for now, i can install iwork, but not ilife.
    in anyone familiar with 10.5.6 knows which updates/add ond require a restart and which don't, please post. any help appreciated. 4th re install now.

    Hey network --
    Sorry to hear of your problems . . .
    What Mac are you running there?
    Did the installation of 10.5.6 finally go well?
    You're having problems with iLife, but what about Snow Leopard?

  • Help Please, forgot my new   admin password..  so im stuck at password prompts.. any ideas to retireve it or make a new one?

    I went to turn off file vault andafter much prompting i had to change my password to login. After trying to use the new password i made it turns out it isnt correct...
    i know i did something wrong in the process..any ideas?

    Hi R%%^Y,
    Since you changed your admin password via the Install disc, your keychain passwod is stil set to the old one. You need to make the keychain password the same as your login password.
    First, try opening Keychain First Aid by opening Keychain Access and going to Keychain Access (right next to the Apple menu) and coming down to Keychain First Aid.
    Click Verify and see what happends. If it comes up with issues, hit the repair button.
    if for some reason, you can't repair it, take a look at keychain Access asks for keychain "login" after changing login password.
    Hope this helps and let me know how it goes.

  • Need help please - or this new Zx flys out of the window..

    Got the Soundblaster Zx now, my good old X-FI went out of order..
    The new Control-tool is horrible.. I cant find Settings for my Creative Cambridge Soundworks 2.1 Speakers.. I always hear cracking sounds and besides it sounds rather dull.. where are my surround Settings, I mean.. hall/reverb..
    with set to stero direct I got less cracking.. with 5.1 removing rear Speakers I do not got I got least cracking.. but I cant really turn up the volume.. bass Settings are not available.. I connected the Speakers with a 3,5mm/3,5mm on the front Speaker jack at the soundcard.. as you should do, if you only got 2.0 or 2.1.. it seems the soundcard gives too much bass on the Speakers.. with my x-fi everything was fine.. nothing to Change at Settings.. connect.. fine.. my active subwoofer takes the bass, and sends what necessary to the Desk Speaker.. it doesnt work if you Change any Settings like "fullrange" Speakers in the Settings.. often they are not available like in "Stereo direct" .. it doesnt Change anything when u disable fullrange, and surround Speaker Option not available, and bass crossover also not available.. in Stereo it is even worse.. much to much bass cracking even below 20-volume..

    See Kappy's great User Tips.
    See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities https://discussions.apple.com/docs/DOC-4551
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Send Apple an email request for help at: Apple - Support - iTunes Store - Contact Us http://www.apple.com/emea/support/itunes/contact.html
    Call Apple Support in your country: Customer Service: Contacting Apple for support and service http://support.apple.com/kb/HE57
     Cheers, Tom

  • Help with Defining a new Concurrent Program using Parameters

    I wrote a very simple sql script and I want to register it as an Oracle Concurrent Program. I included a parameter field in the sql script to allow the entry of value to determine the number of days prior for the script. The script runs successfully in SQL*Plus, but when I try to register it as an Oracle Concurrent Program I get the following errors below:
    This works in SQL* PLUS
    SELECT emp_id, amount
    FROM tblSalaries
    WHERE hire_date > SYSDATE-&Days;
    Enter value for Days: 7
    old    3: hire_date > SYSDATE-&Days
    new  3: hire_date > SYSDATE-7
    And it provides my results....Although when I register this as a concurrent program and assign the parameter in the setup, and run the concurrent program and enter the number in the parameter field, the job completes in ERROR with the following:
    Enter value for Days: EXEC FND_CONC_STAT.COLLECT;
    hire_date > SYSDATE-EXEC FND_CONC_STAT.COLLECT; and
    ERROR at line 3:
    ORA-00933: SQL command not properly ended If I put single quotes around '&Days', in line 3, I get a different error:
    ERROR at line 3:
    ORA-01722: invalid number Do you know what could be the problem?
    Thanks for reviewing!

    Duplicate post - Setup for Defined Concurrent Program with Parameters - SQL Script
    Srini

  • I want to update my Mac from 10.6.8 to Mavericks, but every time it says update unavailable for this computer. How do I check for space available or how much space I  have used? Help please, I am new to using Mac computers.

    I am a new Mac user and I bought a refrubished Mac that has Mac OS X VERSION 10.6.8. I have been wanting to upgrade to Mavericks, but every time I go to do that a message comes up saying OS X Mavericks cannot be installed on this computer. Is there anyway I can instal it? Better yet how can I look up how much GB of memory I have and the available storage?

    1. No, but you might be able to upgrade to Lion. Choose About this Mac from the Apple menu, check that the computer has at least a Core 2 Duo(not Core Duo) CPU, and if so, click here.
    2. Check the RAM from the About this Mac window, choose Computer from the Finder's Go menu, control-click the internal drive, and choose Get Info. If the computer has a 32-bit EFI, it can't be upgraded to Mountain Lion or above regardless of the RAM and free drive space.
    (111990)

  • 8530 HELP PLEASE! Installed new driver

    I installed the new driver last night (2/17/2012).  There was no warning that the new driver no longer uses Intellisync and only syncs with MS Outlook.  All of my contacts and calendar are in a 3rd party software which uses Intellisync.   I have been compiling contacts in this software since 2004.  So I am screwed now in regard to synchronization .  I do not want to migrate to MS Outlook because my current 3rd party database software links contact records and calendar events.
    I had to abandon my perfectly good Palm when I upgraded to Windows 7 and bought the BB because it did synch with my database software.  How do I revert back to the previous driver which will use Intellisync?
    It would have been customer-friendly if there had been a warning prior to my installing the new driver upgrade (as in "what changes").  This is unforgivable!!!!!!! 

    Cameron,
    You guessed correctly - before you can restore from backup, you must format the drive. Select the drive in Disk Utility, click on the "Erase" tab and format the drive as "Mac OS Extended (Journaled)" and give it a name ("Macintosh HD" is Apple's default name for internal drives) and then click erase. Your drive will be formatted in a minute or so and you can proceed with Time Machine restoration.
    Good luck,
    Clinton

  • Help please... new at this

    I just started in a Java class and installed jdk1.2.1 from a disc in the textbook. My problem is that when I tried to run the following application:
    import javax.swing.JOptionPane;
    public class Circle
         public static void main(String args[])
              String getRadius;
              double radius, circ, diam, area;
              getRadius = JOptionPane.showInputDialog("Enter the Radius");
              radius = Double.parseDouble(getRadius);
              diam = 2 * radius;
              circ = 2 * Math.PI * radius;
              area = Math.PI * ( 2 * radius);
              JOptionPane.showMessageDialog(null, "The diameter is: " + diam +
                                                   "\nThe circumference is: " + circ +
                                                   "\nThe area is: " + area, "Results",
                                                   JOptionPane.PLAIN_MESSAGE );
              System.exit(0);
    } It compiled, but when I tried to run it, I got the following:
    Exception in thread "main" java.lang.NoClassDefFoundError: Circle
    I tried a sample application that was included on the disc and got the same message. When I ran a similar program that was as an applet it worked fine.
    Hope this is something simple... any ideas.
    Thanks

    don't forget the separator, ie:
    in windows
    set CLASSPATH=.;%CLASSPATH%
    Exception in thread "main"java.lang.NoClassDefFoundError: Circle
    Sounds like an improper classpath... type "set
    classpath=.%classpath%" in dos prompt, then try
    running again.

  • Iam not able to use all the options in my ichat and neither is my sister can anyone help us were both new to macbooks??

    both me and my sister do not have all the options available to us on ichat and we both want to use the video chat help please were both new to the mac worlds. thanks!

    Hi,
    iChat 6 ?
    I have seen one post that suggests the the Connection Doctor (VIdeo Menu) says in the capabilities tab that the AIR will not do Multiway Video or Audio chats.
    I am not sure how true this is as iChat 4 and 5 can.
    Much earlier Mac computers such as G4 signle Processors do have this issue.  I would not have expected it with an Intel Processor.
    File Transfers can be dependent on the Port used being open in your router (As can Video and Audio chats)
    Screen Sharing requires that you use UPnP to open ports in the router (As well as turning it On in the vidoe Menu).
    If you could be more precise I could match my answers to your questions.
    It is late where I am and it will be about 20 hours before I read any reply.
    10:28 PM      Thursday; August 25, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Every time I log off, the imac cannot find the internet and i have to reinput all from preferences. i even locked the changes. no luck. help please

    Everytime I log off,  the computer cannot find the internet.
    i go to preferences and have to reenter everything including network and web id number. i even locked the network after it finds it only to have the same thing happen again. help please.

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Creating a profile":
    *https://support.mozilla.org/kb/profile-manager-create-and-remove-firefox-profiles
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Profile_issues
    Profile Backup and Restore
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • Please help me transfer purchased apps from my current ios6 to new ios7 program.

    Please help me transfer purchased apps from my current ios6 to new ios7 program.

    There is no need to transfer anything.
    Update the device via iTunes or Over the Air... no content on the device should be affected.
    If the device is used as designed and regularly backed up to iCloud or iTunes on the computer, should anything go wrong it can be restored.

  • HT1329 Hi All - My hard drive failed and I am trying to move all my music from my ipod to the new hard drive. I am operating on Win 7 64 bit. Can anyone help please?

    Hi All,
    My hard drive crashed and is no longer usable. I just installed a new drive however, I am not finding any way to export my recorded CD's from the Ipod touch to the new hard drive. Can anyone help please? I thought by enabling syc with Ipod woudl do it but to no avail.
    Thanks

    I used a 3rd party program called copytrans http://www.copytrans.net/ that is not free to move my library from my ipod to my itunes library when I had to start from scratch.  After that happened I started backing up my music that purchased from the itunes store to a dvd so I would always have it if things went south.  Now I always backup my purchased digital music to an optical disc just in case plus everythng else I have is on retail cd's so I can just rebuild my library from scratch again if I have to.  You should also regularly back up your itunes media folder to another disc so your entire library will be backed up just in case you should lose your program drive.

  • Please help me creating a new listener with different port#.

    I have two instances in a server. both have different homes. I want to create a seperate listener for the second one i created.
    But that is not happening.
    here i tried to give name from LISTENER TO LISTENER1 & Port# from 1521 to 1524.
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /apps2/oracle)
    (PROGRAM = extproc)
    LISTENER1 =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = aixth53)(PORT = 1524))
    When I check lsnrctl status with LISTENER1 , it still shows the other instance home with port#: 1521
    Please help me creating a new listener with different port#.
    Thanks,

    marist89 wrote:
    sb92075 wrote:
    marist89 wrote:
    sybrand_b wrote:
    The listener is a broker only and doesn't play any role in normal communications.
    It just forks a process or a thread, and that's it.And the listener is a single point of failure. Listener goes down, you can't connect to the db. That's why you need two listeners.If listener one goes down, then listener two goes down for exact same reason since it is a single executable file.I'm not playing tit-for-tat with you. Fact is, there are situations where people who are not you might want to use more than one listener.Some folks might want to jab a sharp pencil into their eye, too.
    Just because you can do something, it does not necessarily mean it should be done.

Maybe you are looking for

  • Hi - How do I connect an HDTV as a second monitor to Thunderbolt display with macbook pro in clamshell mode?

    I have a Late 2011 Macbook Pro in clamshell mode connected to a Thunderbolt Display with the built in Thunderbolt cable. I want to then connect an HDTV via the Thunderbolt port at the back of the Thunderbolt display. I already had a  cable that I tho

  • Impossible to buy Photoshop Elements 10 online in Croatia

    Adobe massively complains about piracy in Central European contries and yet when you try to buy software online they won't let you. I've been trying to buy PE for a few days now with no success. I'm very annoyed by this and it looks like my only solu

  • Organizing music on iPod Touch

    I don't seem to be able to organize my iPod Touch music via the iTunes window that opens on my iMac when I attach my Touch. I can open the Touch music window, but can only highlite a song, I can't reorder the categories, do a category search, erase a

  • Report Script - Member replace with text

    Hi All, I am writing a report script where I am extracting "FY12" on to the column. Is there a way to replace this "FY12" to "2012" in my extract file? Thanks in advance Rav

  • Do all java sciprts invoke the security pop up bar in IE?

    Hi Rather than use an animated gif for an image crossfade slideshow, I found a cool javascript one. However, it invokes that security pop up bar in IE - is there any way of avoiding this, as I don't want that message scaring people off. If not, is th