Run Time Errors, Please Help.

I am getting errors of:
Exception in thread "main" java.lang.NumberFormatException: feet
at java.lang.FloatingDecimal.readJavaFormatString(Unknown Source)
at java.lang.Double.parseDouble(Unknown Source)
at SquareDriver.main(SquareDriver.java:29)
her is my code:
import cs1.Keyboard;
import java.util.*;
import square;
import java.lang.*;
public class SquareDriver
     public static void main (String [] args)
          double dblLength = 0;
          String strUnits;
          StringTokenizer Tokenizer;
          final String SENTINEL = "0";
          String strPart1= null;
     String strPart2 = null;
          System.out.println("Enter a Side Length Of a Sguare");
          strUnits = Keyboard.readString( );
          Tokenizer = new StringTokenizer (strUnits);
     while (!strUnits.equals(SENTINEL))
          if (Tokenizer.hasMoreTokens())
          { strPart1 = Tokenizer.nextToken();
          dblLength=Double.parseDouble(strPart1);
          if (Tokenizer.hasMoreTokens())
          {strPart2=Tokenizer.nextToken();
square mysquare = new square(dblLength,strPart2);
System.out.println(mysquare);
}//end of main method;
}// end of class;
public class square
     public double dblPart1;
public String strPart2;
public double dblArea;
public double Perimeter;
     public square (double Length, String Units)
          dblPart1 = Length;
          strPart2 = new String(Units);
     public double dblArea()
     {dblArea = (dblPart1 * dblPart1);
       return dblArea;
     public double Perimeter()
     {Perimeter = (dblPart1 * 4);
      return Perimeter;
     public String toString()
     String output= new String("");
          String tab = "\t";
          String newline ="\n";
          output+= "Area" tabdblArea()+strPart2+ "Squared";
          output+=newline;
          output+= "Perimeter"+tab+Perimeter()+strPart2 ;
          output+=newline;
          return output;
} // end of class square

You are trying to parse a string "feet" to a number (double).

Similar Messages

  • Forms9i run time error - Please help

    Hi friends,
    I have a problem , when I use the url like
    http://ram.sembcorpenc.com/....... Its go to search page, but if you the
    http://ip-address:8889/................ Its give error FRM-91201,
    OC4J – Error , Unable to communicate with runtime process .
    Please help if possible, very soon …
    Thank you,
    Selvam

    Hi,
    why is it using port 80 in the first request and port 8889 in teh second? Looks like the first being from OracleAs and the second from Oracle Developer Suite. Did you start the HTTP listener for the developer suite contained OC4J?
    Frank

  • Run-time ERROR! Help Please...

    Hello everyone,
    I got a run time error for my very short program please anyone help me!!!
    My source code is
    //LKOracleDB.java
    public class LKOracleDB
         public static void main()
    I set path to jdk14b2\bin ,
    and I set classpath to jdk14b2\lib
    I compiled it with no error by using
    =>javac LKOracleDB.java
    then when I tried to run it with
    =>java LKOracleDB
    It show this error
    =>Exception in thread "main" java.lang.NoClassDefFoundError: LKOracleDB
    .... What could be the problem? Please help..
    Thanks in advance,
    lenk....

    Is your source file in a package?No, my source file is not in any package what u see is all code in my .java file. Do I need to put it in package? If so please tell me a little bit more.
    Are you running the java command from the same >directory that you compiled the code from?Yes, I recheck it.
    Your main() should be (String[] args) or else it is not >considered a valid main for the JVM to start. I change it but It still not work...?
    Thanks for your opinion
    lenk

  • Help with Run Time Error Please....

    I got this Run Time error when I tried to execute a Swing program I was trying to run and I was wondering if anyone could explain what it meant and how I could go about fixing the situation. The program ran with no problem when I executed it yesterday but this morning, It failed for some reason .
    My Classes name is GUIcheck.java
    Exception in thread "main" java.lang.UnsupportedClassVersionError: GUIcheck (Unsupported major.minor version 49.0)
            at java.lang.ClassLoader.defineClass0(Native Method)
            at java.lang.ClassLoader.defineClass(Unknown Source)
            at java.security.SecureClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.defineClass(Unknown Source)
            at java.net.URLClassLoader.access$100(Unknown Source)
            at java.net.URLClassLoader$1.run(Unknown Source)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClass(Unknown Source)
            at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    I have posted the program below for your viewing ..
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class GUIcheck
        public static void main(String args[])
        JFrame.setDefaultLookAndFeelDecorated(true);
        JFrame frame = new JFrame ("Student Data Sheet");
        //Frame.setDefaultLookAndFeelDecorated(true);
       //Create the top panel.  This panel will use the grid layout and
       //will contain two labels (name and Social Security Number) and
       //two text boxes (nameTextField and ssTextField)
       JPanel topPanel = new JPanel(new GridLayout (2, 2, 5, 5));
       JLabel nameLabel = new JLabel ("Name:");
       topPanel.add(nameLabel);
       JTextField nameTextField = new JTextField(10);
       topPanel.add(nameTextField);
       JLabel ssLabel = new JLabel ("Social Security Number:");
       topPanel.add(ssLabel);
      JPasswordField ssTextField = new JPasswordField(10);
      topPanel.add(ssTextField);
      //Place the topPanel on the North side of the frame
      Container contentPane = frame.getContentPane();
      contentPane.add (topPanel, BorderLayout.NORTH);
      //Create the center panel.  It will be placed in the center of the
      //frame.  It will contain two sub panels.  One sub panel will contain
      //labels (Select sources of news and information and Classification).
      //The second sub panel will contain check boxes and radio buttons)
      JPanel centerPanel = new JPanel (new BorderLayout ());
      JPanel centerTopPanel = new JPanel (new GridLayout (1, 2, 5, 5));
      JLabel sourceLabel = new JLabel
                 ("Select sources of news and information");
      centerTopPanel.add (sourceLabel);
      JLabel classLabel = new JLabel ("Classification");
      centerTopPanel.add (classLabel);
      centerPanel.add (centerTopPanel, BorderLayout.NORTH);
      JPanel centerBottomPanel = new JPanel (new GridLayout (1, 2, 5, 5));
      JPanel checkBoxPanel = new JPanel (new GridLayout (3, 1, 5, 1));
      JCheckBox newspaperCheckBox = new JCheckBox ("Newspaper");
      checkBoxPanel.add (newspaperCheckBox);
    JCheckBox tvCheckBox = new JCheckBox ("TV");
    checkBoxPanel.add (tvCheckBox);
    JCheckBox friendsCheckBox = new JCheckBox ("Friends");
    checkBoxPanel.add (friendsCheckBox);
    centerBottomPanel.add (checkBoxPanel);
    JPanel radioButtonPanel = new JPanel (new GridLayout (4, 1, 5, 1));
    JRadioButton freshmanRadioButton = new JRadioButton ("Freshman");
    radioButtonPanel.add (freshmanRadioButton);
    JRadioButton sophomoreRadioButton = new JRadioButton ("Sophomore");
    radioButtonPanel.add (sophomoreRadioButton);
    JRadioButton juniorRadioButton = new JRadioButton ("Junior");
    radioButtonPanel.add (juniorRadioButton);
    JRadioButton seniorRadioButton = new JRadioButton ("Senior");
    radioButtonPanel.add (seniorRadioButton);
    centerBottomPanel.add (radioButtonPanel);
    centerPanel.add (centerBottomPanel, BorderLayout.SOUTH);
    contentPane.add (centerPanel, BorderLayout.CENTER);
    //creation of button group deleted
    //buttonPanel will contain buttons and will be placed at south side
    //of the frame
    JPanel buttonPanel = new JPanel(new GridLayout (1, 2, 5, 5));
    JButton submitButton = new JButton ("Submit");
    buttonPanel.add (submitButton);
    JButton exitButton = new JButton ("Exit");
    buttonPanel.add (exitButton);
    contentPane.add (buttonPanel, BorderLayout.SOUTH);
      }//end main
    }

    I do have the 1.5 at the moment and I still get the same error. I have removed other instances of JRE from my computer and retried but it still persists... What else can I do?
    Java Newbie

  • ORA-01002 run-time error for help

    Hi, All:
    I modified little in Sample10.pc of PRO*C sample code to fit both NT and
    Linux using 8i version precompiler, with VC++ and GCC Compiler respectively.
    All process were fine when they connected to a DB Server(8i version), but
    when they connected to the other Server(8 version), the error : ORA-01002
    (Fetch out of sequence) was always issued at run-time. I checked the error
    message and found that the program was stuck on the "PREPARE" description. I
    have spent much more time debugging, but it still didn't work. Could you
    help me? I'm so preciated.
    Best regards,
    Yen-Gou Pan
    null

    Hello,
    This error comes when  there is an OpenSQL statement that tries to insert a record into a database table that is already existing.
    You need to implement  SAP Note 196113 and 1041894 along with technical consultant to help and overcome the issue.
    Br,
    Tushar

  • Run-time errors--need help

    Hi everyone,
    I'd greatly appreciate some help with this java program...here's the problem:
    Create a class Person that does the following:
    1. Set the Last Name only
    2. Set the First Name only
    3. Set the Middle Name only
    4. Gets the First Name
    5. Gets the Middle Name
    6. Gets the Last Name
    7. Check whether a given last name is the same as the last name of this person.
    8. Check whether a given last name is the same as the first name of this person.
    9. Check whether a given first name is the same as the middle name of this person.
    10. A method called equals that returns true if two objects contains the same first, middle, and last name
    11. A method called makeCopy that copies the instance variables of a Person object into another Person object.
    12. A method called getCopy that creates and returns the address of the object, which is a copy of another person object.
    13. A method for a copy constructor.
    14. A toString method to print out the name in the form (First Middle Last)
    15. Write the definitions of the methods of the class Person to implement the operations for this class.
    16. Write a test program to test the above.
    This is what I have but I think I'm missing some of the above...also, my if...else statements aren't running the way I want.. '
    public class Person {
    private String firstName;
    private String lastName;
    private String middleName;
    public Person (String first, String middle, String last) {
    firstName = first;
    lastName = last;
    middleName = middle;
    public Person() {
    firstName = "";
    lastName = "";
    middleName = "";
    public String toString() {
    return (firstName + " " + middleName + " " + lastName);
    public void setFirstName(String first) {
    firstName = first;
    public void setMiddleName(String middle) {
    middleName = middle;
    public void setLastName(String last) {
    lastName = last;
    public String getFirstName() {
    return firstName;
    public String getMiddleName() {
    return middleName;
    public String getLastName() {
    return lastName;
    public boolean equals(Person otherPerson) {
    return (lastName.equals(otherPerson.lastName) && firstName.equals(otherPerson.firstName));
    public void makeCopy(Person otherPerson) {      
    lastName = otherPerson.lastName;
    middleName = otherPerson.middleName;
    firstName = otherPerson.firstName;
    public Person getCopy() {
    Person temp = new Person();
    temp.firstName = firstName;
    temp.lastName = lastName;
    temp.middleName = middleName;
    return temp;
    public Person(Person otherPerson) {
    firstName = otherPerson.firstName;
    middleName = otherPerson.middleName;
    lastName = otherPerson.lastName;
    public void printName() {
    System.out.println(firstName + "," + middleName + "," + lastName);
    } and the test program follows
    import java.util.Scanner;
    public class TestProgPerson {
       static Scanner console = new Scanner(System.in);
       public static void main(String[] args) {
          Person myName = new Person("Bill", "Andrew", "Johnson");
          Person yourName = new Person();
          String firstName;
          String middleName;
          String lastName;
          System.out.print("My Name: ");
          myName.printName();
          System.out.println();
          System.out.print("Your Name: ");
          yourName.printName();
          System.out.println();
          System.out.print("Enter your first, middle, and last name: ");
          firstName = console.next();
          middleName = console.next();
          lastName = console.next();
          System.out.println();
          yourName.setName(firstName, middleName, lastName);
          if (myName.equals(yourName))
          System.out.println("Both people are the same.");
          else
          System.out.println("The two people are not the same.");
          myName.setFirstName(firstName);
          myName.setMiddleName(middleName);
          myName.setLastName(lastName);
          System.out.print("My new name: ");
          myName.printName();
          System.out.println();
          yourName.makeCopy(myName);
          System.out.print("After copying myName into yourName, yourName: ");
          yourName.printName();
          System.out.println();
    }

    public class Person {
         private String firstName;
         private String lastName;
         private String middleName;
         public Person (String first, String middle, String last) {
              firstName = first;
              middleName = middle;
              lastName = last;
         public Person() {
              firstName = "";
              lastName = "";
              middleName = "";
         public String toString() {
              return (firstName + " " + middleName + " " + lastName);
         public void setName(String first, String middle, String last) {
              firstName = first;
              middleName = middle;
              lastName = last;
         public void setFirstName(String first) {
              firstName = first;
         public void setMiddleName(String middle) {
              middleName = middle;
         public void setLastName(String last) {
              lastName = last;
         public String getFirstName() {
              return firstName;
         public String getMiddleName() {
              return middleName;
         public String getLastName() {
              return lastName;
         public boolean equals(Person otherPerson) {
              return (firstName == otherPerson.firstName && middleName == otherPerson.middleName &&
                             lastName == otherPerson.lastName);
         public void makeCopy(Person otherPerson) {
              firstName = otherPerson.firstName;
              middleName = otherPerson.middleName;
              lastName = otherPerson.lastName;
         public Person getCopy() {
              Person temp = new Person();
              temp.firstName = firstName;
              temp.lastName = lastName;
              temp.middleName = middleName;
              return temp;
         public Person(Person otherPerson) {
              firstName = otherPerson.firstName;
              middleName = otherPerson.middleName;
              lastName = otherPerson.lastName;
         public void printName() {
              System.out.println(firstName + " " + middleName + " " + lastName);
    //Test Program for the above.
    import java.util.Scanner;
    public class TestProgPerson {
         static Scanner console = new Scanner(System.in);
         public static void main(String[] args) {
              Person myName = new Person("William", "Andrew", "Johnson");
              Person yourName = new Person();
              String firstName;
              String middleName;
              String lastName;
              System.out.print("My Name: ");
              myName.printName();
              System.out.println();
              System.out.print("Your Name: ");
              yourName.printName();
              System.out.println();
              System.out.print("Enter your first, middle, and last name: ");
              firstName = console.next();
              middleName = console.next();
              lastName = console.next();
              System.out.println();
              yourName.setName(firstName, middleName, lastName);
              if (myName.equals(yourName))
              System.out.println("Both people are the same.");
              else
              System.out.println("The two people are not the same.");
              myName.setFirstName(firstName);
              myName.setMiddleName(middleName);
              myName.setLastName(lastName);
              System.out.print("My new name: ");
              myName.printName();
              System.out.println();
              yourName.makeCopy(myName);
              System.out.print("After copying myName into yourName, yourName: ");
              yourName.printName();
              System.out.println();
    }

  • Run time error in VA01 after entering material at item

    Syntax error in program "SAPFV45V ".
    Error in the ABAP Application Program
    The current ABAP program "SAPMV45A" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program "SAPFV45V " in include
      "FV45VF0A_ADD_ATP_DATA_TO_VBAP " in
    line 38:
    "The data object "XVBAP_LOC" does not have a component called "STOCKLOC
    The include has been created and last changed by:
    Created by: "SAP "
    Last changed by: "SAP "
    Error in the ABAP Application Program
    The current ABAP program "SAPMV45A" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Can you please let me know the reason for this error.
    we have completed configuration in DEV and moved all the requests into QAS
    and at the first transaction of [VA01] immediately after entering material and qty
    it is throwing the run time error.
    please let me know, whether this error is from functional side, or from technical
    (BASIS).
    Please also let me know, what can be done immediately.
    Thanks
    Maheshoe

    You need to apply SAP Note to fix this.
    find the note below:
    [NOTE 1072316|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1072316]
    Take assistance from your Basis.

  • Not able to open PDF or do any changes even if the PDF opens. Run Time Error is shown every time when trying to open PDF. Please help

    Hi,
    Not able to open PDF or do any changes even if the PDF opens. Run Time Error is shown every time when trying to open PDF. Please help

    Hi Shilpa ,
    Please refer to the following link and see if that helps you out.
    https://helpx.adobe.com/acrobat/kb/runtime-error-roaming-profile-workflows.html
    Are you trying to access the PDF with Acrobat or Adobe Reader?
    Regards
    Sukrit Dhingra

  • I keep on getting this error when i try to copy files to my 2T Time Capsule, Please help im running out of space on my MacBook Pro.... The operation can't be completed because an unexpected error occurred (error code -50)

    I keep on getting this error when i try to copy files to my 2T Time Capsule, Please help im running out of space on my MacBook Pro....
    The operation can’t be completed because an unexpected error occurred (error code -50)

    I would get an external drive today and copy all your stuff off the TC.. forget trying to load more onto it. There is a good chance after 3years (A 2TB should be only about 2years tops), the disk or the TC itself is on the way out. Do it immediately. If TM is also failing to backup you need to recognise symtoms of impending doom.
    Unfortunately the error messages are archane and it is hard to discover their meaning.
    You also cannot verify a network drive.. you can verify the TM sparsebundle though so do that.
    A5. http://pondini.org/TM/Troubleshooting.html
    Reboot the whole network from off.. certainly if you run later OS it can simply lose the drive..
    If you still fail to be able to copy to the TC.. then get that external and copy off it. Tell us if you can do that.

  • Please help with fixing run time error - what is wrong ?

    Hi
    I am new with JDBC.
    I have compiled a program and am not getting any compile erors, however when trying to run it, am getting errors:
    Advanced Java : Test 1
    Programmer: C.C. Steyn
    Date: 15 July, 2008
    Filename: MakeDB.java
    Purpose: To build an initial database for the ClientNameTaxNrs application
    import java.sql.*;
    import java.io.*;
    public class MakeDB
    public static void main(String[] args) throws Exception
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String url = "jdbc:odbc:ClientNameTaxNrs";
    Connection con = DriverManager.getConnection(url);
    Statement stmt = con.createStatement();
    // The following code deletes each index and table, if they exist.
    // If they do not exist, a message is displayed and execution continues.
    System.out.println("Dropping indexes & tables ...");
    try
    stmt.executeUpdate("DROP INDEX PK_ClientNameTaxNrs ON ClientNameTaxNrs");
    catch (Exception e)
    System.out.println("Could not drop primary key on ClientNameTaxNrs table: "
    + e.getMessage());
    try
    stmt.executeUpdate("DROP TABLE ClientNameTaxNrs");
    catch (Exception e)
    System.out.println("Could not drop ClientNameTaxNrs table: "
    + e.getMessage());
    ///////// Create the database tables /////////////
    System.out.println("\nCreating tables ............");
    // Create ClientNameTaxNrs table with primary key index
    try
    System.out.println("Creating ClientNameTaxNrs table with primary key index...");
    stmt.executeUpdate("CREATE TABLE ClientNameTaxNrs("
    +"ClientName TEXT(50) NOT NULL "
    + "TaxNr TEXT(10) NOT NULL, "
    +")");
    catch (Exception e)
    System.out.println("Exception creating ClientNameTaxNrs table: "
    + e.getMessage());
    // Read and display all ClientNameTaxNrs data in the database.
    ResultSet rs = stmt.executeQuery("SELECT * FROM ClientNameTaxNrs");
    System.out.println("Database created.\n");
    System.out.println("Displaying data from database...\n");
    System.out.println("ClientNameTaxNrs table contains:");
    byte[] buf = null;
    while(rs.next())
    System.out.println("Client Name: = "
    + rs.getString("ClientName"));
    System.out.println("Tax Nr: = "
    + rs.getString("Tax Nr"));
    rs = stmt.executeQuery("SELECT * FROM ClientNameTaxNrs");
    if(!rs.next())
    System.out.println("ClientNameTaxNrs table contains no records.");
    else
    System.out.println("ClientNameTaxNrs table still contains records!");
    rs = stmt.executeQuery("SELECT * FROM ClientNameTaxNrs");
    if(!rs.next())
    System.out.println("ClientNameTaxNrs table contains no records.");
    else
    System.out.println("ClientNameTaxNrs table still contains records!");
    stmt.close(); // closing Statement also closes ResultSet
    } // end of main()
    } // end of class
    ================================================
    here is the run time errors. How do i fix this ?
    Dropping indexes & tables ...
    Could not drop primary key on ClientNameTaxNrs table: [Microsoft][ODBC Microsoft
    Access Driver] Cannot find table or constraint.
    Could not drop ClientNameTaxNrs table: [Microsoft][ODBC Microsoft Access Driver]
    Table 'ClientNameTaxNrs' does not exist.
    Creating tables ............
    Creating ClientNameTaxNrs table with primary key index...
    Exception creating ClientNameTaxNrs table: [Microsoft][ODBC Microsoft Access Dri
    ver] Syntax error in CREATE TABLE statement.
    Exception in thread "main" java.sql.SQLException: [Microsoft][ODBC Microsoft Acc
    ess Driver] The Microsoft Jet database engine cannot find the input table or que
    ry 'ClientNameTaxNrs'. Make sure it exists and that its name is spelled correct
    ly.
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6879)
    at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7036)
    at sun.jdbc.odbc.JdbcOdbc.SQLExecDirect(JdbcOdbc.java:3065)
    at sun.jdbc.odbc.JdbcOdbcStatement.execute(JdbcOdbcStatement.java:338)
    at sun.jdbc.odbc.JdbcOdbcStatement.executeQuery(JdbcOdbcStatement.java:2
    53)
    at MakeDB.main(MakeDB.java:69)
    Press any key to continue . . .

    Are you running Norton Internet Security or anything similar? There have been reports that Norton and similar firewall products treat an upgrade as a new application and so you have to go in and reallow connections for iTunes. Check the settings and if necessary remove and re-enable the exception for iTunes (consult your privacy filter's documentation for the appropriate procedure). You may also need to check the built-in Windows firewall as well.
    Hope this helps.

  • Run time error when we click  "Leave overview " in ESS - pl help

    Hi Gurus ,
    We are getting run time error when we
    click the 'Leave Overview' in
    ESS.
    when emloyee applies for leave he may
    need to wait for aproval during
    that time he cannot access the 'leave
    overview' screen he will be
    facing run time error .
    because of this run time error system
    performance become very slow .
    please help me .i will give points for valid answers .
    :-Suneetha reddy

    Hi ,
    I am soory for late reply ,
    I changed the runtime parameter to 1200 and monitaring the system .
    Now there is no Run time error but still Leave overview is taking time .
    Please help
    Thanks,
    Sunitha

  • Run time error  iview  'Leave Overview' in ESS -  Pl Help

    Hi Gurus ,
    We are getting run time error when we
    click the 'Leave Overview' in
    ESS.
    when emloyee applies for leave he may
    need to wait for aproval during
    that time he cannot access the 'leave
    overview' screen he will be
    facing run time error .
    because of this run time error system
    performance become very slow .
    please help me .i will give points for valid answers .
    :-Suneetha reddy
    Edited by: Sunitha Reddy on Mar 26, 2008 9:47 AM

    Hi ,
    I am soory for late reply ,
    I changed the runtime parameter to 1200 and monitaring the system .
    Now there is no Run time error but still Leave overview is taking time .
    Please help
    Thanks,
    Sunitha

  • I deleted my microsoft office:mac 2011 word from my toolbar. I have Mac OS X version 10.6.8.  I tried to reinstall but it won't work. I get an error message each time. Please help!!!!!!!!!!!!!!

    I deleted my microsoft office:mac 2011 word from my toolbar. I have Mac OS X version 10.6.8.  I tried to reinstall but it won't work. This has never happened before.  I get an error message each time. Please help!!!!!!!!!!!!!!  I don't have time machine. 

    By Toolbar, do you mean the Dock?  The Translucent bar normally at the bottom of the screen, but sometimes at the right or left side?
    If that's what you mean, the Dock is merely a shortcut to what is already inside the Applications folder's Microsoft Office 2011 folder.  If you have Word inside your Microsoft Office 2011 folder, you can drag it back to the Dock.
    If you deleted the Microsoft Office folder, or it is empty, you'll have to reinstall it. 
    If you don't have your registration code, you'll have to call Microsoft for a new one.

  • Trying to upgrade my i-phone 3 operating system to ios-5.  The program seems to download fine, but at the end it says network run time error and then I have to cancel it out and try again.  Tried 5 times and I can't upgrade the system.  help?

    I am trying to upgrade the operating system on my i-phone 3 to ios-5.  I download the program and it runs and downloads.  When almost finished, an error occurs that says Network run time error.  This cancels out the download.  I have tried 5 times with the sdame result.  Can anyone help?  Thanks

    This is asked and answered frequently... a simple search of the forums would have revealed that disabling any Anti-Virus and Firewall software on the computer prior to downloading will rectify the issue.

  • I am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    i am not able to update my iphone 4 ,when ever i tried to update it its show 1309 error...and at times 9006 error ,please help me ..

    Hey alkarim2008,
    If you are having an issue with being unable to update or restore your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    Resolve iOS update and restore errors in iTunes - Apple Support
    Thanks for using Apple Support Communities.
    Happy computing,
    Brett L 

Maybe you are looking for

  • How to execute ABAP QUERY.

    Hi all,         I know how to create ABAP QUERY using transactions SQ01,SQ02 and SQ03.But after creating it how to and where to use it. Rgds, Tkp

  • ABAP simple question

    Hello everyone, I have a question. In my Z program I have a zprogramname_top where my variables/tables are defined and a zprogramname_f01 where i make calculations. in f01, i call another form where I fill a table, but when I retunr to the calling pe

  • HT1688 My phone is turning on but will not load past the apple screen

    help with my iphone 4 ive tried everything i know

  • How to upload single heavy video file by flash AS2.0

    How can I upload single heavy video file by AS2.0 with php backend? I have video file of 200 GB but flash officially supports 100MB. http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/net/FileReference.html Then how this can be achieved?

  • Serial port DATABITS != 8

    Hello, I would like to know how Serial Port in java works. I mean, I installed the javax.comm driver in windows and there is no problem. However, what happens if I use 7, 6 or 5 bits of data in the serial port? The Java communicactions API provide an