Search results

  1. R

    Wireless Router to Wireless Router

    Is there anyway to just buy an AP, connect the AP directly to the iMac via an ethernet cable, have the AP connect to the wireless router in my room a viola! the iMac now has an internet connection? If so, whats a good cheap AP? I'll be buying a Linksys WRT54G Wireless Router.
  2. R

    Wireless Router to Wireless Router

    I will be installing a wireless network in my house here soon and here is my question. One of my roommates has an iMac G5. I can install an Airport Extreme card, but they cost $80. I have yet to find a USB Wireless NIC for that has Mac OSX drivers. So, I was wondering, the wireless router...
  3. R

    Java Help....posted a few days ago...

    I take it i shouldnt have a while and a for loop. How would I go about changing that cause I dont see any other way to do that.
  4. R

    Java Help....posted a few days ago...

    Yeah I doubt I could use hashmap as we havent even learned it yet in class, do you have another idea? We're suppose to use an Array.
  5. R

    Java Help....posted a few days ago...

    for the comission calculations would I do something like this? public Salesman Comission() { // this would include the whole While statement thats in Main??? }
  6. R

    Java Help....posted a few days ago...

    Mr. Chad I was hoping you would reply. How do I go about using an ArrayList? I dont really need to search. At the end of the program, all that should happen is it should say the name of the salesman and then the total comission earned for every salesman. How would I go about letting it...
  7. R

    Java Help....posted a few days ago...

    Basically this program needs to read the firstline of the data. The first line will be a name. It will remember that name. Then it will read the next line which is the money earned for that person above. It should keep doing this going through and recording the name and comission. The...
  8. R

    Java Help....posted a few days ago...

    Here is the first program:
  9. R

    Java Help....posted a few days ago...

    Ok I posted this a few days ago. Here is what I need the program to do. Basically i need to creat a SalesPerson array the size of 20. It will read data from a txt file which follows this format (Name followed by sales on the next line). Once the program reads the line, it will see if it has...
  10. R

    Java help plz.....

    Basically i need to creat a SalesPerson array the size of 20. It will read data from a txt file which follows this format (Name followed by sales on the next line). Once the program reads the line, it will see if it has any information for that salesperson in the record array and if not, it...
  11. R

    Using switch in java...help please?

    thx guys...
  12. R

    Using switch in java...help please?

    I was wondering how I would go about changing this if - else statement into the equivalent switch statement: if (i == 1 || i = 2) output = "small"; else if (i == 3) ouput = "medium"; else output = "large";
  13. R

    New AMD 64 Build for friend

    My Asus A8V Deluxe has been rock solid, I would recommend it to anyone. In fact, my past two boards have been Asus, and have been great. I too agree that you should go with 939. Also, I dont know about this powersupply, maybe someone else can shed some light on whether or not it is a...
  14. R

    Java Help Please!!!!

    Thank you so much MrChad, I couldnt have done it without you. BTW, thanks for that link, this weekend when I have a lot of free time, I'm gonna try and read up on that site a lot. Again thanks a lot...
  15. R

    Java Help Please!!!!

    yeah it is implied that it should update the setGPA once I recieve the users input. What is that NumberFormatException i have never heard of that one. ok, this is what I have now and I get a cannot resolve sysmbol variable gpa on the lines that are bold: float a...
  16. R

    Java Help Please!!!!

    Alright, I got all of that to print out thank you. No back to the first program. When I put in public void setGPA (float gpa) { GPA = gpa; return; } public String getGPA () { return GPA; } it says that I have an imcompatible type at the return statment line...
  17. R

    Java Help Please!!!!

    do you have AIM? edit: if you do and you are willing to help me through that way, just PM me. Again, thanks....
  18. R

    Java Help Please!!!!

    Yeah this is my first java project. I had trouble using two programs to creat one in Qbasic as well. If its just one program that I'm working on, im usually fine. BTW, thanks for all your help, you have no clue what it means to me. I'm really learning a lot from this too as im going along...
  19. R

    Java Help Please!!!!

    does that go on the first or second program?
  20. R

    Java Help Please!!!!

    I think i understand that now, after looking back at that other post. My question now is, where did you get the following that you posted at the end of that post: oRect.setWidth(100); oRect.getWidth(); I'm not seeing where you got oRect at, I can tell where you got setWidth and...
  21. R

    Java Help Please!!!!

    so are you saying that it should be: public void setName (String sName) ??? I'm not quite sure I follow that one.
  22. R

    Java Help Please!!!!

    MrChad are you talking about something like this? class Student { String name; float gpa; public void setName () { } public String getName () { return name; } }
  23. R

    Java Help Please!!!!

    Ok I think i might have answered my own question for half of the first part, here is what I have so far: class Student { String name; float gpa; public void setName (String name) { sname = "Robert"; } public String getName () { return sname; } String sname =...
  24. R

    Java Help Please!!!!

    Instead of doing: public Student { name = Robert; ---- Should I : String setName(String Robert); --- Only thing is, when I do this, I get a missing method body, or declare abstract..
  25. R

    Java Help Please!!!!

    I have to make a program that uses two files. The first program will include this: name GPA setName(String sName) getName() setGPA(float gpa) getGPA() the second program will: declare a new studnet with the name Robert Print the Student Name Change students name to Frank Print...