I need your comments , your suggestions , please.

Use the necessary facilities of the Java Programming langgue to build a visual calculator which
can carry out tha following operation. The operation needed are :
+ - * / clear memorize recall
Each of these operations is represented by a button which a user can press in order to carry
out the task. This calculator can be used to work out the value of an expression such as :
23*12+22-3
Pressing a wrong commbination of keys may gererate a warning sound. Moreover an animated icon should
be used to indicate when "
- the calculator is idle and free to be used
- the calculator is busy ( being used )
***** This is the code :
import java.awt.event.*;//Abstract windows ToolKit
import java.awt.*;
public class calculator extends Frame implements ActionListener
TextField name;
Label aHeader;
Button b[];
String expression;
public calculator()
super("DUY 'S CALCULATOR");
setLayout(new BorderLayout());
Panel p1 = new Panel();
p1.setBackground(new Color(18,70,1));
p1.setLayout(new FlowLayout());
aHeader = new Label("DUY'S CALCULATOR");
aHeader.setFont(new Font("Times New Roman",Font.BOLD,24));
aHeader.setForeground(new Color(255,0,0));
p1.add(aHeader);
add("North",p1);
Panel p2 = new Panel();
p2.setBackground(new Color(27,183,100));
p2.setLayout(new GridLayout(0,1));
name = new TextField(20);
p2.add(name);
add("Center",p2);
Panel p3 = new Panel();
p3.setLayout(new GridLayout(0,6));
b = new Button[25];
b[0] = new Button("MC");
b[0].addActionListener(this);
b[1] = new Button("7");
b[1].addActionListener(this);
b[2] = new Button("8");
b[2].addActionListener(this);
b[3] = new Button("9");
b[3].addActionListener(this);
b[4] = new Button("/");
b[4].addActionListener(this);
b[5] = new Button("sqrt");
b[5].addActionListener(this);
b[6] = new Button("CE");
b[6].addActionListener(this);
b[7] = new Button("4");
b[7].addActionListener(this);
b[8] = new Button("5");
b[8].addActionListener(this);
b[9] = new Button("6");
b[9].addActionListener(this);
b[10] = new Button("*");
b[10].addActionListener(this);
b[11] = new Button("%");
b[11].addActionListener(this);
b[12] = new Button("MS");
b[12].addActionListener(this);
b[13] = new Button("1");
b[13].addActionListener(this);
b[14] = new Button("2");
b[14].addActionListener(this);
b[15] = new Button("3");
b[15].addActionListener(this);
b[16] = new Button("-");
b[16].addActionListener(this);
b[17] = new Button("1/x");
b[17].addActionListener(this);
b[18] = new Button("M+");
b[18].addActionListener(this);
b[19] = new Button("0");
b[19].addActionListener(this);
b[20] = new Button("+/-");
b[20].addActionListener(this);
b[21] = new Button(".");
b[21].addActionListener(this);
b[22] = new Button("+");
b[22].addActionListener(this);
b[23] = new Button("=");
b[23].addActionListener(this);
b[24] =new Button("exit");
b[24].addActionListener(this);
for(int i=0;i<=24;i++)
{ p3.add(b);
add("South",p3);
super.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e)
{System.exit(0);}});
setLocation(200,100);
pack();
setVisible(true);
}//end of constructor
public void actionPerformed(ActionEvent evt)
String command = evt.getActionCommand();
StringBuffer tmp, first, second;
int value, size, k;
char ch, op = ' ';
first = new StringBuffer();
second = new StringBuffer();
if ("CE".equals(command))
name.setText("");
else if("7".equals(command))
expression = name.getText();
name.setText(expression+"7");
else if ("8".equals(command))
expression = name.getText();
name.setText(expression+"8");
else if ("9".equals(command))
expression = name.getText();
name.setText(expression+"9");
else if("4".equals(command))
expression = name.getText();
name.setText(expression+"4");
else if("5".equals(command))
expression = name.getText();
name.setText(expression+"5");
else if("6".equals(command))
expression = name.getText();
name.setText(expression+"6");
else if("1".equals(command))
expression = name.getText();
name.setText(expression+"1");
else if("2".equals(command))
expression = name.getText();
name.setText(expression+"2");
else if("3".equals(command))
expression = name.getText();
name.setText(expression+"3");
else if("0".equals(command))
expression = name.getText();
name.setText(expression+"0");
else if("+".equals(command))
expression = name.getText();
name.setText(expression+"+");
else if("-".equals(command))
expression = name.getText();
name.setText(expression+"-");
else if("*".equals(command))
expression = name.getText();
name.setText(expression+"*");
else if("/".equals(command))
expression = name.getText();
name.setText(expression+"/");
else if("=".equals(command))
expression = name.getText();
size = expression.length();
tmp = new StringBuffer( expression );
for(int i = 0;i<size;i++)
ch = tmp.charAt(i);
if(ch != '+' && ch != '*' && ch != '-' && ch != '/')
first . insert(i, ch);
else
op = ch;
k = 0;
for(int j = i+1; j< size ; j++)
ch = tmp.charAt(j);
second.insert(k,ch);
k++;
break;
switch(op)
case '+' : value = Integer.parseInt(new String(first)) +
Integer.parseInt(new String(second));
name.setText(new Integer(value).toString());
break;
case '-' : value = Integer.parseInt(new String(first)) -
Integer.parseInt(new String(second));
name.setText(new Integer(value).toString());
break;
case '*' : value = Integer.parseInt(new String(first)) *
Integer.parseInt(new String(second));
name.setText(new Integer(value).toString());
break;
case '/' : value = Integer.parseInt(new String(first)) /
Integer.parseInt(new String(second));
name.setText(new Integer(value).toString());
break;
} //end of actionPerformed
/**main method to invoke from JVM.*/
public static void main(String args[])
new calculator();
This is the file calculator.java .I create this program follow the lecturer's guide . But actually
i think this is not good jobs . Anybody can help me to change something on this program ???? . And
please show me the reason why in each case of its . Thanks so much .
I have to submit it by this friday, so i think i can receive all reply soon . Again, thanks so much.

As I said before, check out:
http://forum.java.sun.com/thread.jsp?forum=31&thread=271751
I actually think there's some examples of what NOT to do in that message that look uncannily similar to what you've posted.
This is the third time you've asked somebody to do your homework for you. Read the javadocs, check out the tutorials, test the code yourself and experiment with it.
You can't just throw a bunch of code out and ask some vague questions and expect answers.
This is the file calculator.java .I create this program follow the lecturer's guide . But actually
i think this is not good jobs . Anybody can help me to change something on this program ???? . And
please show me the reason why in each case of its . Thanks so much .
I have to submit it by this friday, so i think i can receive all reply soon . Again, thanks so much.
Start by asking some specific questions.
And your code would be much easier to read if you put it in [ code ] blocks. Check out http://forum.java.sun.com/faq.jsp#messageformat for information on formatting.

Similar Messages

  • Query performance tuning need your suggestions

    Hi,
    Below is the sql query and explain plan which is taking 2 hours to execute and sometime it is breaking up( erroring out) due to memory issue.
    Below it the query which i need to improve the performance of the code please need your suggestion in order to tweak so that time take for execution become less and also in less memory consumption
    select a11.DATE_ID DATE_ID,
    sum(a11.C_MEASURE) WJXBFS1,
    count(a11.PKEY_GUID) WJXBFS2,
    count(Case when a11.C_MEASURE <= 10 then a11.PKEY_GUID END) WJXBFS3,
    count(Case when a11.STATUS = 'Y' and a11.C_MEASURE > 10 then a11.PKEY_GUID END) WJXBFS4,
    count(Case when a11.STATUS = 'N' then a11.PKEY_GUID END) WJXBFS5,
    sum(((a11.C_MEASURE ))) WJXBFS6,
    a17.DESC_DATE_MM_DD_YYYY DESC_DATE_MM_DD_YYYY,
    a11.DNS DNS,
    a12.VVALUE VVALUE,
    a12.VNAME VNAME,
    a13.VVALUE VVALUE0,
    a13.VNAME VNAME0,
    9 a14.VVALUE VVALUE1,
    a14.VNAME VNAME1,
    a15.VVALUE VVALUE2,
    a15.VNAME VNAME2,
    a16.VVALUE VVALUE3,
    a16.VNAME VNAME3,
    a11.PKEY_GUID PKEY_GUID,
    a11.UPKEY_GUID UPKEY_GUID,
    a17.DAY_OF_WEEK DAY_OF_WEEK,
    a17.D_WEEK D_WEEK,
    a17.MNTH_ID DAY_OF_MONTH,
    a17.YEAR_ID YEAR_ID,
    a17.DESC_YEAR_FULL DESC_YEAR_FULL,
    a17.WEEK_ID WEEK_ID,
    a17.WEEK_OF_YEAR WEEK_OF_YEAR
    from ACTIVITY_F a11
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 1 ) a12
    on (a11.PKEY_GUID = a12.PKEY_GUID and
    a11.DATE_ID = a12.DATE_ID and
    a11.ORG = a12.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 2) a13
    on (a11.PKEY_GUID = a13.PKEY_GUID and
    a11.DATE_ID = a13.DATE_ID and
    a11.ORG = a13.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 3 ) a14
    on (a11.PKEY_GUID = a14.PKEY_GUID and
    a11.DATE_ID = a14.DATE_ID and
    a11.ORG = a14.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 4) a15
    on (a11.PKEY_GUID = a15.PKEY_GUID and
    89 a11.DATE_ID = a15.DATE_ID and
    a11.ORG = a15.ORG)
    join (SELECT A.ORG as ORG,
    A.DATE_ID as DATE_ID,
    A.TIME_OF_DAY_ID as TIME_OF_DAY_ID,
    A.DATE_HOUR_ID as DATE_HOUR_ID,
    A.TASK as TASK,
    A.PKEY_GUID as PKEY_GUID,
    A.VNAME as VNAME,
    A.VVALUE as VVALUE
    FROM W_ORG_D A join W_PERSON_D B on
    (A.TASK = B.TASK AND A.ORG = B.ID
    AND A.VNAME = B.VNAME)
    WHERE B.VARIABLE_OBJ = 9) a16
    on (a11.PKEY_GUID = a16.PKEY_GUID and
    a11.DATE_ID = a16.DATE_ID and
    A11.ORG = A16.ORG)
    join W_DATE_D a17
    ON (A11.DATE_ID = A17.ID)
    join W_SALES_D a18
    on (a11.TASK = a18.ID)
    where (a17.TIMSTAMP between To_Date('2001-02-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS') and To_Date('2002-09-12 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
    and a11.ORG in (12)
    and a18.SRC_TASK = 'AX012Z')
    group by a11.DATE_ID,
    a17.DESC_DATE_MM_DD_YYYY,
    a11.DNS,
    a12.VVALUE,
    a12.VNAME,
    a13.VVALUE,
    a13.VNAME,
    a14.VVALUE,
    a14.VNAME,
    a15.VVALUE,
    a15.VNAME,
    a16.VVALUE,
    a16.VNAME,
    a11.PKEY_GUID,
    a11.UPKEY_GUID,
    a17.DAY_OF_WEEK,
    a17.D_WEEK,
    a17.MNTH_ID,
    a17.YEAR_ID,
    a17.DESC_YEAR_FULL,
    a17.WEEK_ID,
    a17.WEEK_OF_YEAR;
    Explained.
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 1245 | 47 (9)| 00:00:01 |
    | 1 | HASH GROUP BY | | 1 | 1245 | 47 (9)| 00:00:01 |
    |* 2 | HASH JOIN | | 1 | 1245 | 46 (7)| 00:00:01 |
    |* 3 | HASH JOIN | | 1 | 1179 | 41 (5)| 00:00:01 |
    |* 4 | HASH JOIN | | 1 | 1113 | 37 (6)| 00:00:01 |
    |* 5 | HASH JOIN | | 1 | 1047 | 32 (4)| 00:00:01 |
    |* 6 | HASH JOIN | | 1 | 981 | 28 (4)| 00:00:01 |
    | 7 | NESTED LOOPS | | 1 | 915 | 23 (0)| 00:00:01 |
    | 8 | NESTED LOOPS | | 1 | 763 | 20 (0)| 00:00:01 |
    | 9 | NESTED LOOPS | | 1 | 611 | 17 (0)| 00:00:01 |
    | 10 | NESTED LOOPS | | 1 | 459 | 14 (0)| 00:00:01 |
    | 11 | NESTED LOOPS | | 1 | 307 | 11 (0)| 00:00:01 |
    | 12 | NESTED LOOPS | | 1 | 155 | 7 (0)| 00:00:01 |
    | 13 | NESTED LOOPS | | 1 | 72 | 3 (0)| 00:00:01 |
    | 14 | TABLE ACCESS BY INDEX ROWID| W_SALES_D | 1 | 13 | 2 (0)| 00:00:01 |
    |* 15 | INDEX UNIQUE SCAN | CONS_UNQ_W_SALES_D_SRC_ID | 1 | | 1 (0)| 00:00:01 |
    | 16 | TABLE ACCESS BY INDEX ROWID| W_DATE_D | 1 | 59 | 1 (0)| 00:00:01 |
    |* 17 | INDEX UNIQUE SCAN | UIDX_DD_TIMSTAMP | 1 | | 0 (0)| 00:00:01 |
    | 18 | TABLE ACCESS BY INDEX ROWID | ACTIVITY_F | 1 | 83 | 4 (0)| 00:00:01 |
    |* 19 | INDEX RANGE SCAN | PK_ACTIVITY_F | 1 | | 3 (0)| 00:00:01 |
    |* 20 | TABLE ACCESS BY INDEX ROWID | W_ORG_D      | 1 | 152 | 4 (0)| 00:00:01 |
    |* 21 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 22 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 23 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 24 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 25 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 26 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 27 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 28 | TABLE ACCESS BY INDEX ROWID | W_ORG_D | 1 | 152 | 3 (0)| 00:00:01 |
    |* 29 | INDEX RANGE SCAN | IDX_FK_CVSF_PKEY_GUID | 10 | | 3 (0)| 00:00:01 |
    |* 30 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 31 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 32 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 33 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    |* 34 | TABLE ACCESS FULL | W_PERSON_D | 1 | 66 | 4 (0)| 00:00:01 |
    -----------------------------------------------------------------------------------------------------------------------

    Hi,
    I'm not a tuning expert but I can suggest you to post your request according to this template:
    Thread: HOW TO: Post a SQL statement tuning request - template posting
    HOW TO: Post a SQL statement tuning request - template posting
    Then:
    a) you should posting a code which is easy to read. What about formatting? Your code had to be fixed in a couple of lines.
    b) You could simplify your code using the with statement. This has nothing to do with the tuning but it will help the readability of the query.
    Check it below:
    WITH tab1 AS (SELECT a.org AS org
                       , a.date_id AS date_id
                       , a.time_of_day_id AS time_of_day_id
                       , a.date_hour_id AS date_hour_id
                       , a.task AS task
                       , a.pkey_guid AS pkey_guid
                       , a.vname AS vname
                       , a.vvalue AS vvalue
                       , b.variable_obj
                    FROM    w_org_d a
                         JOIN
                            w_person_d b
                         ON (    a.task = b.task
                             AND a.org = b.id
                             AND a.vname = b.vname))
      SELECT a11.date_id date_id
           , SUM (a11.c_measure) wjxbfs1
           , COUNT (a11.pkey_guid) wjxbfs2
           , COUNT (CASE WHEN a11.c_measure <= 10 THEN a11.pkey_guid END) wjxbfs3
           , COUNT (CASE WHEN a11.status = 'Y' AND a11.c_measure > 10 THEN a11.pkey_guid END) wjxbfs4
           , COUNT (CASE WHEN a11.status = 'N' THEN a11.pkey_guid END) wjxbfs5
           , SUM ( ( (a11.c_measure))) wjxbfs6
           , a17.desc_date_mm_dd_yyyy desc_date_mm_dd_yyyy
           , a11.dns dns
           , a12.vvalue vvalue
           , a12.vname vname
           , a13.vvalue vvalue0
           , a13.vname vname0
           , a14.vvalue vvalue1
           , a14.vname vname1
           , a15.vvalue vvalue2
           , a15.vname vname2
           , a16.vvalue vvalue3
           , a16.vname vname3
           , a11.pkey_guid pkey_guid
           , a11.upkey_guid upkey_guid
           , a17.day_of_week day_of_week
           , a17.d_week d_week
           , a17.mnth_id day_of_month
           , a17.year_id year_id
           , a17.desc_year_full desc_year_full
           , a17.week_id week_id
           , a17.week_of_year week_of_year
        FROM activity_f a11
             JOIN tab1 a12
                ON (    a11.pkey_guid = a12.pkey_guid
                    AND a11.date_id = a12.date_id
                    AND a11.org = a12.org
                    AND a12.variable_obj = 1)
             JOIN tab1 a13
                ON (    a11.pkey_guid = a13.pkey_guid
                    AND a11.date_id = a13.date_id
                    AND a11.org = a13.org
                    AND a13.variable_obj = 2)
             JOIN tab1 a14
                ON (    a11.pkey_guid = a14.pkey_guid
                    AND a11.date_id = a14.date_id
                    AND a11.org = a14.org
                    AND a14.variable_obj = 3)
             JOIN tab1 a15
                ON (    a11.pkey_guid = a15.pkey_guid
                    AND a11.date_id = a15.date_id
                    AND a11.org = a15.org
                    AND a15.variable_obj = 4)
             JOIN tab1 a16
                ON (    a11.pkey_guid = a16.pkey_guid
                    AND a11.date_id = a16.date_id
                    AND a11.org = a16.org
                    AND a16.variable_obj = 9)
             JOIN w_date_d a17
                ON (a11.date_id = a17.id)
             JOIN w_sales_d a18
                ON (a11.task = a18.id)
       WHERE (a17.timstamp BETWEEN TO_DATE ('2001-02-24 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
                               AND TO_DATE ('2002-09-12 00:00:00', 'YYYY-MM-DD HH24:MI:SS')
              AND a11.org IN (12)
              AND a18.src_task = 'AX012Z')
    GROUP BY a11.date_id, a17.desc_date_mm_dd_yyyy, a11.dns, a12.vvalue
           , a12.vname, a13.vvalue, a13.vname, a14.vvalue
           , a14.vname, a15.vvalue, a15.vname, a16.vvalue
           , a16.vname, a11.pkey_guid, a11.upkey_guid, a17.day_of_week
           , a17.d_week, a17.mnth_id, a17.year_id, a17.desc_year_full
           , a17.week_id, a17.week_of_year;
    {code}
    I hope I did not miss anything while reformatting the code. I could not test it not having the proper tables.
    As I said before I'm not a tuning expert nor I pretend to be but I see this:
    1) Table W_PERSON_D is read in full scan. Any possibility of using indexes?
    2) Tables W_SALES_D, W_DATE_D,  ACTIVITY_F and W_ORG_D have TABLE ACCESS BY INDEX ROWID which definitely is not fast.
    You should provide additional information for tuning your query checking the post I mentioned previously.
    Regards.
    Al                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Hi, my iphone its in recovery mode and when i restore my iphone 5s loading show the blue screen and show note on itunes (unknown error 14) please i need your help please . thanks

    Hi, my iphone its in recovery mode and when i restore my iphone 5s loading show the blue screen and show note on itunes (unknown error 14) please i need your help please . thanks

    In the article Resolve iOS update and restore errors this is what it says about error 14:
    Check your USB connections
    Related errors: 13, 14, 1600, 1601, 1602, 1603, 1604, 1611, 1643-1650, 2000, 2001, 2002, 2005, 2006, 2009, 4005, 4013, 4014, or “invalid response."
    If the USB connection between your device and computer is interrupted, you may be unable to update or restore.
    To narrow down the issue, you can also change up your hardware:
    Use the USB cable that came with your device, or a different Apple USB cable.
    Plug your cable into a different USB port directly on your computer. Don't plug it into your keyboard.
    Try a different computer.
    If necessary, resolve any further issues with the USB connection, then with your security software.
    If you're still seeing the error message, check for hardware issues by following the next section.

  • HT1199 I need your help, PLEASE. How can to fix "NO MOUNTABLE FILE SYSTEM" error of my back up hard drive on Mountain Lion OS?

    I need your help, PLEASE. How can to fix "NO MOUNTABLE FILE SYSTEM" error of my back up hard drive on Mountain Lion OS?

    Did you format the drive for Mac use before you tried to use it as a backup drive?
    Are you using Time Machine on the drive? You can't view the contents of its backup database and the only way to access the info is directly from the Time Machine app.

  • Need your suggestion ..

    Dear folks,
    Could you share to me your suggestions please .. ??
    I have report whose type is summary and it's coming from info-cubes. The info-cube before going to info-cube, the data it's sent to ODS first.
    The source of data come from CRM System.
    The case is like this, sometimes my user wanna delete the data that has been displayed in the report.
    Could you suggest me what i should do regarding this requirement .. ?? What procedure should i do ?
    Many thanks.
    regards,
    Niel.

    Deal All,
    I'd like to express my tks to you for your response.
    The user wanna to delete the data from the report permanently.
    It means, if i have data about transaction 1 for customer A, the data should be deleted from Info-Cube and also the source (CRM).
    I've ever heard the method, that we can delete the record in ODS using mark 0recordmode in ODS with 'D'.
    My questions are :
    1. If i use that method, how can i delete the data in info-cube ?
    2. Is there other method except this ?
    fyi, my data flow :
    SAP CRM -> BW : data source -> PSA -> ODS -> Cube.
    Regards,
    Niel.

  • HT201328 Hey, i bought an iphone from online shop and its locked by orange france, i contact them to unlock it but they refused, they said that we regret to inform you that we'r not able to unlock second hand phones? I need your help please.

    Hey, i bought an iphone from online shop as a used phone and its locked by orange france, i contact them to unlock it but they refused, they said that we regret to inform you that we'r not able to unlock second hand phones? I need your help please. Its not fair , apple should figure it out
    Regards,
    Orange

    This is no different with any carrier locked phone. Getting a carrier locked phone officially unlocked is the responsibility of the carrier, not the cell phone manufacturer. A cell phone manufacture cannot unlock a carrier locked phone without the carrier's authorization.
    An iPhone sold as officially unlocked when new can be used by others as a second hand phone, and the same with any carrier locked iPhone that can be unlocked by the carrier, and many carriers offer it.

  • HT4623 I. Tried many time to install my apple to update software but can't fix I need your help please and Thanks.

    How i fix and software update i was tried but cant i need your help please and thanks.

    "but cant"
    That doesnt tell us anything useful. You need to post EXACTLY what you did and EXACTLY what happened, including any error messages.

  • I need your help, please. I can't get my photostream synchronized

    Dear friends, I need your help again!!!
    My photostream from my computer, windows vista, is not updating the pictures on my photostream in neither one of my IOS devices.
    I'm sure that the photostream in both IOS are turned on. In my computer it is also turned on.
    For example, I tranferred some pictures from a normal file to the photostream in the computer and I expected that them went also to my
    iphone and ipad, but it not occurred.
    Please, do you have some advise for me?
    Thanks in advance.

    first i would try a simple restart of your computer and your iPad and see if they show up after they reboot. Also which folder are you putting them in? on windows there will be a seperate folder in the photostream folder that will show upload/uploads you will want to make sure they are in there. Also here are some basics about photostream to make sure you are meeting all the requirements and are not over your limit, http://support.apple.com/kb/HT4486

  • PT880 Neo 4 red led, Need your help please!!

    Hello all
    It is my first post and I need your help. Today I purchased a combo P4 3/800 E Box CPU, MSI PT880 Neo FSR Mboard  and DDR 512MB 3200 VS Corsair 400Mhz 184 Pin Dimm from Fry's Electronic. I can not get my system to boot , no beep but only 4 red led and nothing on the screen. I used on my system Enermax 300W with DVD burner, DVD player, 60G HD, SBlive 5.1, ALL in Wonder Radeon 32Mb..After I am following all recommendation in the defferents Topic, I have no luck it won't boot. The 4 red leds are still on. Help me please thank you
    Brono85

    I've just got my Noisetaker 470watts too, it has the same rails as CoolerGiant , but I like CoolerGiant's active cooling system for both CPU and PSU , just that it's too lengthy and my chassis was small in size .
    Back to the topic, likewise anr11 mentioned, you may need a BIOS flash and you can use Memtest86 to test your RAMs out .

  • HT201210 I tried to update to IPad 5.1, but when it finished and tried to restore the backup, it shows me that Itunes could not back up because a session could not be started with iPad. need your help please

    I tried to update to IPad 5.1, but when it finished and tried to restore the backup, it shows me that Itunes could not back up because a session could not be started with iPad. need your help please

    This has happened to me a couple of times and what I do is quit iTunes and restart my Mac and then try again and then it will work.
    If iTunes has already created the backup, you should still be able to restore from the backup when you are connected to iTunes. Right click on the iPad name on the left side of iTunes and select restore from backup. After the process completes, sync with iTunes to transfer all of your apps, music, photos and other media back onto the iPad.

  • New PC Build Comments and Suggestions please :)

    I am going to build a new PC for Video editing etc.
    Adobe Premiere, After Effects, the Whole CS6 package amoung others.
    I want the best bang for the buck
    Currently I have a tower case, and a corsair 650 powersupply.
    This is what I was considering to build.
    MY Max Budget is 1500, THAT IS MAX I really want around $1000-$1300
    I7 3770 or 3770K (3770K is $229, 3770 $260)  Not sure which is best is it worth $30
    more for 3770 over 3770K
    Cooler Master Hyper 212 EVO12 evo  $30
    Motherboard
    Gigabyte GA-Z77X-UP4 TH LGA 1155  $185
    http://www.microcenter.com/product/396870/GA-Z77X-UP4_TH_LGA_1155_Intel_Z77_ATX_Intel_Moth erboard
    I like this board because it has thunderbolt. I have no use for thunderbolt yet, but may later
    RAM 32 GB Hyper X Red 16GB DDR3-1600  $170 for 2 sets
    http://www.microcenter.com/product/401554/Hyper_X_Red_16GB_DDR3-1600_%28PC3-
    12800%29_CL_10_Desktop_Memory_Kit_%28Two_8GB_Memory_Modules%29
    MSI NVIDIA GeForce GTX 660 Twin Frozr III $209 After Rebate
    http://www.microcenter.com/product/403002/N660_TF_2GD5-
    OC_NVIDIA_GeForce_GTX_660_Twin_Frozr_III_Overclocked_2048MB_GDDR5_PCIe_30_x16_Video_Card
    SSD 256 GB  Crucial M4 $199
    I am debating getting
    2 - 2 TB
    Seagate Barracuda 2TB 7,200 RPM SATA 6.0Gb/s
    Or 2 Western Digital Caviar Black 1 TB
    They both cost the same ($90) I get double storage from
    Seagate of course
    Seems like Western Digital Black may be more reliable
    My plan would be to put whichever of these drives I get into
    a Raid 0 Array.
    Not sure what would be best purpose for  the Raid 0 would be I have seen
    a few different ideas as to the best use for Raid 0
    That can be debated later
    Western Digital 750GB 3.5" SATA 7,200RPM $48
    Just for storage of Other files etc etc or whatever the best use may be for it.
    If it can be used with Adobe apps as well great.
    LG 14X Blu Ray Burner $60
    perhaps a couple corsair case fans if needed $30 for 2
    May not need them. I know my case already has at least one fan.
    Total for all of this is about $1310
    Comments, Suggestions please???
    If I cut the costs some I may put that towards another monitor,  or perhaps
    An editing keyboard specific to adobe.  I also don't want to sacrafice much performance either.

    There is something mysterious in people's behaviour. If they bought something and they never experienced any problem with it, they tend to stay with that brand, but if they encountered difficulties and especially if that happened more than once, they tend to steer away from that brand. If you buy a certain brand of car and it is at the dealer for repairs more often than you like, your next car will probably be another brand.
    I have had my share of problems with Seagate disks (7200.11 series that were notoriously bad and had a failure rate of more than 100% after several were replaced under warranty), so my natural tendency was to steer away from Seagate and look for other options. However, when I considered the price of their 7200.14 series, I was tempted again, but at the same time turned off by their meager 1 year warranty and the reviews on for instance NewEgg. Those reviews are generally rather meaningless, because you never know how people have handled and installed their stuff, but nevertheless it was a mark on the wall for me. In my specific case I needed 25 identical disks to start with and based on price, warranty and reputation I selected Seagate Constellation ES (the Enterprise editions) drives, which up to now have performed flawlessly for 6 months. I have to admit I have never used WD drives at all apart from the Velociraptor which is still going strong in my old system, but they seem to have a good reputation, have a nice warranty period and are somewhat reasonable priced.
    I have no idea how much space you need, what future plans you have (do you need to get a parity raid in the future) and stuff like that, but WD Caviar Blacks have a solid reputation for single disk use or in striped arrays. OTOH in parity arrays they are lousy, so if you may consider a parity array on a dedicated controller, the Blacks are out.
    For setting up your disks, have a look at http://forums.adobe.com/thread/662972

  • Comments and Suggestions Please

    Dear Apple List,
    We are looking for comments and suggestions on how to improve and enhance our website - both aesthetically and perhaps in terms of function.
    We would really appreciate any advice you might have. Thank you
    http://www.thebaandekmontessori.org

    There is something mysterious in people's behaviour. If they bought something and they never experienced any problem with it, they tend to stay with that brand, but if they encountered difficulties and especially if that happened more than once, they tend to steer away from that brand. If you buy a certain brand of car and it is at the dealer for repairs more often than you like, your next car will probably be another brand.
    I have had my share of problems with Seagate disks (7200.11 series that were notoriously bad and had a failure rate of more than 100% after several were replaced under warranty), so my natural tendency was to steer away from Seagate and look for other options. However, when I considered the price of their 7200.14 series, I was tempted again, but at the same time turned off by their meager 1 year warranty and the reviews on for instance NewEgg. Those reviews are generally rather meaningless, because you never know how people have handled and installed their stuff, but nevertheless it was a mark on the wall for me. In my specific case I needed 25 identical disks to start with and based on price, warranty and reputation I selected Seagate Constellation ES (the Enterprise editions) drives, which up to now have performed flawlessly for 6 months. I have to admit I have never used WD drives at all apart from the Velociraptor which is still going strong in my old system, but they seem to have a good reputation, have a nice warranty period and are somewhat reasonable priced.
    I have no idea how much space you need, what future plans you have (do you need to get a parity raid in the future) and stuff like that, but WD Caviar Blacks have a solid reputation for single disk use or in striped arrays. OTOH in parity arrays they are lousy, so if you may consider a parity array on a dedicated controller, the Blacks are out.
    For setting up your disks, have a look at http://forums.adobe.com/thread/662972

  • Need some comments and suggestions

    ...please try to give some comments and suggestions to my
    sites... thanks..
    http://bizgraphix.com

    Vey good graphic design.
    A few suggestions:
    1. Either slow down your animations, or make one of them
    stop. It makes me a bit dizzy looking at both moving all the time.
    2. Get someone to edit your text for you. There is too much
    repetition, the lists are too long, and there are many grammatical
    errors. If you would like help, email me.
    Site looks great!
    You have very good design skills.
    P

  • Need your suggestions

    <SPAN>:angry: I'm so frustrated. I'm not going to follow the lemming-IPod rush.
    <SPAN>
    Could someone please review my info and give me some suggestions as to which Creative mp3 player would best suit my needs?
    I would hate to buy the wrong player.<SPAN> I appreciate your honest opinions on your personal Creative Player.
    <SPAN>
    <SPAN>Please do not recommend a player that is soon to be discontinued!I really appreciate your help in this matter. I?m currently dropping hints that I want a player for Christmas and hope to have a product name/price to tell people when they ask what I want. <B>Must Haves: </B>Plenty of storage for 0 plus audio books and over 500 songsBookmark function for audio booksMinimum of 8 hours of continuous play
    <SPAN>Flash Memory ? don?t plan to drop it, but if a good song starts to play ? I might start dancing.<SPAN>
    <SPAN>Windows XP compatibleUpgrades and Online SupportEasy upload of audio books and songs capabilitiesDecent sound quality from headphonesComes with headphones and other cables/cords/software to start using straight from boxAccessories that are available most anywhereMinimum 30 day warranty that covers most aspects<B>Not needed: </B>Features such as: photo or video storage/view, calendar, address book, memo pad, etc.Color screen

    Once you say Flash player, your options are limited when it comes to Audible support. First off the capacity of a flash player is small for what Creative is offering. So right there you need to get a hard dri've player.
    If flash is what you <i>REALLY</i> want then consider another brand. But if you can settle for a hard dri've. Then go for a Zen Micro, Zen Neeon 5gb/6gb, or Zen Sleek. I'm not sure if the Zen Micro Photo and Zen Sleek Photo have Audible support but I would think so. Hopefully someone can confirm this as the website for both devices dont list Audible as a compatible format.
    Also the accessories part, as the market is dominated by the iPod's that pretty much all you see. The accessories are pretty much iPod only and Everything else. So with anything but an iPod your choice of accessories are limited.

  • Need your suggestion / Input about choosing Apex for new application

    Guys,
    I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
    Following are the functionality of the application:
    1) there will be 40 different entity in the application (create/edit/read/delete)
    2) Each entity and CRUD processing will be roles based
    3) On various events, send email and generate XML files for interfacing with external system
    4) Scheduling report generation and normal report generation
    5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
    6) Various search capabilities for each entity
    7) On various event and user selection: generate PDF file which user can download / print.
    8) Many client side and server side validations.
    Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
    Please let me know your thoughts based on my current situation and functionality.
    Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
    Thank you for reading the post and your support.
    -Raj

    Guys,
    I came across oracle apex this week and started digging through the documentation and presentations. Read some forums as well. Now I believe, our application can be helpful by utilizing Apex but I would like to share high level application functionality which I am trying to implement through Apex
    Following are the functionality of the application:
    1) there will be 40 different entity in the application (create/edit/read/delete)
    2) Each entity and CRUD processing will be roles based
    3) On various events, send email and generate XML files for interfacing with external system
    4) Scheduling report generation and normal report generation
    5) Detail audit trail of the application (doesn't depend of Ajax, but still want to point out)
    6) Various search capabilities for each entity
    7) On various event and user selection: generate PDF file which user can download / print.
    8) Many client side and server side validations.
    Based on my reading, I believe this can be easily achieved with certainly some learning curve in AJAX. (which I have to do as I lost my entire project team due to budget issues.). I have a web devleopment background using Java, JSP and Servlet for 5 years. (Nothing in last 3 years though)
    Please let me know your thoughts based on my current situation and functionality.
    Also, Do i need to buy anything to get started with apex and implementing apex full blown application (they say it's free, but just want to understand your perspective as well).
    Thank you for reading the post and your support.
    -Raj

Maybe you are looking for

  • Deleting future occurrences in iCal

    How do I delete all future occurrences of an event in iCal?

  • Call a service through other service

    Hi all, In some moment I pretend to call a service through my new service. The point is that the service is missing some parameters and I'm with some doubts about that... Example: <tr>      <td>MY_NEW_SERVICE</td>      <td>DocService           0     

  • Get 'about:newtab' whe open new tab.

    When opening new tab via + I get message "Problem loading page" as there is "about:newtab" in the address bar. Happens every time I open a new tab. Firefox release 3.6.12 How can I fix?

  • Is it possible to deploy CRS 2008 on websphere 6.0?

    Hi I'd like to know whether we can deploy CRS 2008 or BOE XI3.1 on webshpere 6.0 not 6.1? When I add ReportAnalytical.war, ClassCast Exception throws.

  • Guitar Rig input

    I've been playing with the demo version of Guitar Rig 2. I can't seem to convince the program to see my guitar input. Other apps, like Garage Band and such see the signal fine. I'm using an iMic as a preamp. Any Guitar Rig guys have input?