Forum: Java Jul 21st, 2006 |
| Replies: 16 Views: 6,711 Hi guy or gal!!! I know you have solved this already but it is an interesting issue. I was wondering if you used wrapper classes to solve it. I'm pretty much new to programmer and I like learning... |
Forum: Java Jul 20th, 2006 |
| Replies: 16 Views: 6,711 I know it's mad late, but were you looking for something unconventional like the following:
public Class One {
protected int pumpNum = 3;//any class within the same package
... |
Forum: IT Professionals' Lounge Jul 15th, 2006 |
| Replies: 67 Views: 14,134 :twisted:
JaVa MaN! It's object oriented, it's safe, it's fun, it's easy to learn, it's JSE, JEE, JME, backed by SUN, jacked by gAteZ, highly portable, the industry luvs it, craves it, it's on... |
Forum: Java Jul 13th, 2006 |
| Replies: 5 Views: 1,474 I know that you can load images into a JLabel. You can find tutorials online no problem. I used swing once to load an image into a JLabel for my background. It wasn't that hard to implement. As... |
Forum: Java Jul 11th, 2006 |
| Replies: 8 Views: 1,472 I assume that you are able to run your app with no prob through the IDE. For the CMD, make sure you change the directory to the path where the java class file is logically stored. You should be able... |
Forum: Java Jul 6th, 2006 |
| Replies: 8 Views: 1,472 How are you running the application, through and IDE or the command line? |
Forum: Java Jul 4th, 2006 |
| Replies: 4 Views: 6,385 look online for the ASCII character chart. It will give the character and its numerical ordering with in the chart. if a=1 and b=2, then a<b. If C=1 and c=2, then C<c. Lower case and upper case... |
Forum: Java Jul 4th, 2006 |
| Replies: 6 Views: 1,906 Once I have the the contents of the textfile as they are positioned, It will be alot clearer. |
Forum: Java Jul 3rd, 2006 |
| Replies: 6 Views: 1,906 I'm a little confused about your code. It seems to me that you are doing way to much. Then again it could be just me!!! Please help me understand it. I may be just missing the point. It's been awhile... |
Forum: Java Jul 2nd, 2006 |
| Replies: 13 Views: 7,873 Hi JSP is served by the Jakarta Tomcat Engine. I believe you will have to install a connector in order for it to work with apache. The last time I had Tomcat set up it was used as a standalone only... |
Forum: Java Jul 2nd, 2006 |
| Replies: 6 Views: 1,906 It seems you'll need to do alot of work to do this with an array. I would suggest using a Map class from java.util. Maps allow you to store a key-value pair.
Map<k,v>
Above is the... |
Forum: Software Development Job Offers Jul 1st, 2006 |
| Replies: 17 Views: 29,340 Do you mind posting the details and code for all those looking for experience. I'm more interested in knowing what you want developed and how it is going to be used (i.e. business or personal) |
Forum: Software Development Job Offers Jul 1st, 2006 |
| Replies: 10 Views: 3,027 I would like to get experience in developing java applications. I'm pretty sure alot others on this site would like to ass well. Why not post the details? I'm curious to know what you need! |
Forum: Computer Science Jun 30th, 2006 |
| Replies: 1 Views: 2,157 www.tightvnc.com (http://www.tightvnc.com)
An open source server and client that allows you to connect remotely from a client app or the internet. It is free! My employer uses it.
I also... |
Forum: Java Jun 27th, 2006 |
| Replies: 8 Views: 2,497 |
Forum: Java Jun 26th, 2006 |
| Replies: 4 Views: 1,476 Let us know how things go |
Forum: Java Jun 24th, 2006 |
| Replies: 1 Views: 1,229 Try storing your perfect values in an array and either allow the user to view the requested number of values from the beginning of the array or from the end of it. It's an implementation issue! ... |
Forum: Java Jun 24th, 2006 |
| Replies: 4 Views: 1,476 I'm guessing this is a class assignment and your instructor wants you to modify it. The program has been done for you. All you have to do is retrieve the values associated with the items that are... |
Forum: Java Jun 23rd, 2006 |
| Replies: 13 Views: 7,873 he he hah hah heh he eee...Thanks for the laugh! |
Forum: Java Jun 20th, 2006 |
| Replies: 4 Views: 8,339 Count your parenthesis () - you have a syntax error! |
Forum: Java Jun 20th, 2006 |
| Replies: 4 Views: 8,339 Hi, Please indicate what you are having trouble with in your code. I don't think anyone has the time to figure this out! I can tell you are very new. I myself am a newbie so I'll give you some... |
Forum: Java May 27th, 2006 |
| Replies: 9 Views: 1,654 My professor did provide the idea for my class's multi-threading assignment so here goes one for you sir:
Multi-threaded Client-Server application - Have a client connect to a remote... |
Forum: Java May 27th, 2006 |
| Replies: 11 Views: 6,873 IAMTHWEE has written out what I explained in my last post. Take away with you more than just the solution. Try to really understand what is happening in your code. I'll try to point out key parts... |
Forum: Java May 26th, 2006 |
| Replies: 11 Views: 6,873 blurstudent, What type of error are you receiving? Is it a logic or syntax error. Posting that may expedite the solution! I never knew the string class to have a method named [ split(); ] I'm... |
Forum: Java May 26th, 2006 |
| Replies: 9 Views: 1,425 Hello Mr. Lew,
Your code compiles and runs fine because you are utilizing static methods belonging to the class and not the abstract instance methods of the interface that you must implement in a... |