[java programming] Lab 1034 Exercise 1

2010-02-05 Thread Mark Probert
Hi All I have opened the MyGradesProject OK and when I run it says Build Successful, but does not bring up the JOptionPane to enter the grades Have debugged and getting these 2 errors not sure if relevant Have no FileObject for C:\Program Files\Java\jdk1.6.0_18\jre\lib \sunrsasign.jar Have no Fi

[java programming] Lab-1034: String Comparison with Equals?

2010-01-27 Thread Steven
(New Question Bottom-Posted ..) RE: JavaIntro: JavaControl, Lab-1034, Exercise 2: For Loop [code] //= // Search the String array using for loop. // * The "names.length" is the size of the array. // * This for loop compares the value of each entry

[java programming] Lab 1034 Error: The folder "javacontrol" could not be opened because you do not have sufficient access privileges

2009-08-26 Thread Gian-Gabriel Cappuccio
Hello, I am doing the Lab 1034. Link: http://www.javapassion.com/handsonlabs/javacontrol/index.html I have downloaded and unziped the file 1034_javacontrol.zip but when I try to enter to the javacontrol folder the systems says: "The folder "javacontrol" could not be opened because you do not have

[java programming] Lab 1034

2009-07-22 Thread David Seto
Hello all on lab 1034 homework assignment When I run the program and type in the 1st name on the list "Beah" no problem. Name found on the list and the program is finished. When I rerun the program and type in the 2nd name on the list "Bianca" the program gets stuck . Here's part of the p

[java programming] lab-1034 controls

2009-07-18 Thread Merouen Ballout
as example code 1.11 the average is declared like primitive type double so in the output it should be double , so what's method can be used in order to to display after point? thanks --~--~-~--~~~---~--~~ To post to this group, send email to javaprogrammingwithp

[java programming] Lab-1034 assignment question

2009-07-14 Thread William Espinosa
Hey all, I have a question about Lab-1034 assignment on modding MyForLoop to use while loop. Does anyone know if the loop has to display on the JOptionPane or System.out.println("");? I have it set using: while (counter < 6){ System.out.println(searchName); counter++; } It di

[java programming] LAB 1034

2009-01-30 Thread Daniel Mays
I can't figure out how to do the while loop for this lab. help please! --~--~-~--~~~---~--~~ To post to this group, send email to javaprogrammingwithpassion@googlegroups.com To unsubscribe from this group, send email to javaprogrammingwithpassion-unsubscr...@google

[java programming] LAB-1034 Exercise 3 - Correction needed

2009-01-18 Thread lesh59
In the file 1034_javacontrol.zip Step 2 in this exercise says 2. Study the FiveNamesUsingwhile.java which uses if/else control structure, I think this should say uses a while() structure, --~--~-~--~~~---~--~~ To post to t

[java programming] Lab 1034 (1.06)

2008-12-10 Thread Jennifer Cook
I am having trouble converting the homework form a for loop to a while loop.   Here is the for loop:  for (int i=0; i    if (names [i ].equals(searchName)){    foundName =true;    break;   Here is how I changed it in to a while loop: int i=0;     while