will like to know more about java programming language
yeah, okay.
will like to know more about java programming language
yeah, okay.
I'm not on LAN and I don't have any other accounts. This is such a weird problem. I don't understand how those simply commands I ran would cause something like this. Nothing seems to fix it. I believe it's GOT to be some process running in the background created by this command.
I appreciate the response.
Vectors shouldn't be used, because ArrayLists are simply better ;)
StringTokenizer isn't that bad, but I think the newer version is called StringBuilder... I could be wrong about that one.
Why does int menu return an int, but you aren't returning anything?
The itemCost method is the one that should be returning something, in my opinion.
Why does int menu return an int, but you aren't returning anything?
The itemCost method is the one that should be returning something, in my opinion.
You should call setBackground() on the container rather than the frame.
Conn.setBackground
I'm going to start a petition to raise seller fees.
I don't think you understand what he's saying... If you aren't willing to write in proper English where we can understand, then why should we help?
We can always start replying in other languages and show you how it's like.
I just installed VS.NET 2003 with a lot of difficulties... There was some kind of problem with the windows installer, so I had to do the following to make it work:
Click Start, click Run, type MSIEXEC /UNREGISTER, and then click OK. Even if you do this correctly, it may look like nothing occurs.
2. Click Start, click Run, type MSIEXEC /REGSERVER, and then click OK. Even if you do this correctly, it may look like nothing occurs, or you may briefly see an hourglass. After you run this command, the operation is complete.
3. Try your Windows Installer-based application again.
I rebooted after this, and it took me to the windows login screen just fine. After I click on my name to start my session, it takes it probably 15 minutes to load everything. The beginning is just a plain screen, then some icons start showing up, and eventually it loads. Even when it is fully loaded I can't click on anything or it will freeze up.
I thought about doing a repair install, but for some reason when I choose to boot from CD it says it's checking hardware components and then goes to a black screen. I dual boot with linux, so that could be the problem.
What exactly should I do? I was able to run CHKDSK, but that didn't help any. I would like to keep my stuff if it's possible!
String pass = "crap";
If ( pass.length() > 6 && pass.length() < 15 )
{
}
You aren't appending to the file anywhere. You create the OutputStream with the proper second parameter, but not writing to it.
Open up a text editor and get started.
I thought it was easy, but if you don't know OOP then you're screwed. That's all the test is.
I would use a map, definately. Create the map and then when you go to insert something, it would be like this:
map.insert( make_pair("Dog","Big fury animal") );
That's how I would do it, but of course there are many solutions to this.
So what's the question?
could u help me plz
I couldn't find anyone by the name of 'u' in the memberlist?
I hate EE. Whenever you visit all you get is a billion popups in your face... and doesn't it cost money to join their group? Why bother? I'm sure it has a lot of pro's, but again, why bother with so many prerequisits and other garbage you have to deal with?
I'd rather think some 2-3ft higher than that :)
:lol: :lol: :lol:
javac works fine. Problem exists between keyboard and chair :)
Java is not JavaScript.
JavaScript is not Java.
Try the JavaScript forum :)
Can you try reading the data into a document and then setting the document of the editorpane?
Good luck fixing that. The ONLY thing I can think of trying is using a scrollpane and then adding the editorpane to that. If that doesn't work then I believe you are out of luck.
There's no return statement at the end of the string method. The unreachable statements are anything after your first return statement, because there's no case statement involved... It will always execute making anything below that not execute.
Looks like you need to compile the hangman class first.
Java has a crypto and security package. It will do everything for you, but probably the same amount of time will be taken because you'll need to learn it.
Alter your environment variables to point to the current directory.
I don't see where you're encrypting it... You get the char value from the int value, which is from the same char value, so you're really doing nothing there. You need to get the ascii value and add least add something to it.
I need this script:
http://www.jscode.com/js_auto_bookmark.shtml
i just dont know how to make the link as a picture, insted of "bookmark us!" text/
any help with this ?:eek:
Maybe the JavaScript forum could help you?
Doesn't matter if they ban proxies. Chances are they already have. If you access it via a secure connection then there's nothing they can do about it.
www.proxify.com will be blocked by the filter, but if you type:
https://proxify.com then it will work perfectly.
Ever heard of anonymous proxies?
I might also add that you should use the drawPolyLine or whatever the methods called instead of continously drawing lines. It makes it a full line instead of having the dots.
I had a really awesome piece of code that would plot ANY order of polynomial virtually with no work and virtually no real utility methods. I may have it and may not :) I'll look for it though.
Get each character and cast it to an int. output each int in the order you read.
To cut down on parenthesis you could call toString():
stack.lastElement().toString()
Either schools are teaching programming at a much younger age these days, or English class is ignoring grammer.
English classes everywhere are ignoring grammar and all of India thinks they are cut out for programming. I can tell you first hand that English teachers spend more time on stupid crap like poetry than on grammar.
The Sun forums are excellent, but even less friendly towards freeloading kids who want to gain a diploma over the heads of others and then claim to be software engineers without doing any real work, instead loading it onto the shoulders of the same people who were stupid enough to help them get that diploma.
That's exactly what I meant by delightful comments :cheesy:
If you think this forum is bad, then post in the sun.java forum! You'll get some delightful comments there.
No biggie... and I apologize if I turned your thread in a different direction.
Ok, we didn't ask your opinion, if you are not wanting to SIGN the petition, you shouldn't post in here.... thanks.
Wow... Who crapped in your cereal?
I'm not very good at diagnosing specs vs prices, but I would almost say it's a bit pricey. I personally wouldn't pay that much for the specs.
What exactly are you looking for in a laptop?
I say let HER decide what she wants to do and respect the decision she makes.
Ahhh, thank you. I was actually looking into using a typename, but in a different context. I've never really understood why you have to qualify it with that.
Thanks man.
I was at the mall with a couple of girls one day and we were coming out of a store. I was trying to figure out something on my cell phone so I was looking down at it walking. The store had glass walls, by the way. We were walking out side by side when one of them called my name. Before I realized why I smacked right into the glass. I felt like an idiot, but it made for a good story later.
A intro class won't teach you anything. Grab a book and study yourself.
I've got the following code:
template <typename T> int Histogram<T>::get_occurances(const T& obj)
{
map<T,int>::iterator find_occur = frequency.find(obj);
if ( find_occur == this->frequency.end() )
{
return 0;
}
return ( find_occur->second );
}
The following line always gives me an error saying ';' expected before find_occur.
map<T,int>::iterator find_occur = frequency.find(obj);
If I change the first argument of the map to something other than T, then it works fine, but I need the template type. Is there something I'm doing wrong?
getNextDay() and getPreDay(). These methods don't have a default return value and may never return.
Instead of filling the rectangle just draw it in a different color....