1,034 Posted Topics
Re: Most proxies only work for port 80 though and can slow your connection down tremendously. I would rather change my mac address through the router config page and have it assign me a new ip address. Good work though. Should help some people. | |
Re: I've never dealt with icons on an applet, but whenever I wanted to draw an image onto the applet I never had a problem if I put it in the same file. Why don't you check the java console and see if it's a security restriction or if it's a … | |
Re: There is no size limitation of Strings sizes. Only the limitation of heap size..Which I'm guesing is JVM independant? | |
Re: JEdit's my pick. It is a bit slow to start up and buffer all the files if you have hundreds like me. I like the highlighting and indention schemes. Most vates or ides never get the indention right. It would be something like this: [Code] public void test() { } … | |
Re: I'm sorry to hear you lost your java book. That is a disaster and surely you feel an emptyness inside! I've got about 10 java ebooks and if it's legal to give them away you can PM me. | |
WOoaoooasdflkaslkjas;dflaskjfa;sldkjf The hockey people just closed a deal :cheesy: :cheesy: :cheesy: :cheesy: My beloved sport is back. I'm so happy, one year is too long. | |
Re: For a freehost I would suggest geocities. Under $2. I'm using a webhost right now that costs 1.95 a month. Great host. I would recommend them anyday for the cost. I think it's called siteocity.com but not sure about that. | |
Re: All classes have a default constructor. If it's not present, then it's implicit. The call to super is also implicit if it's not present. The benifit of calling super is good design practice. Each constructor calls it's super class until it reaches the top of the heiarchy(most likey Object class). … | |
Re: Where's the snychronization? Your balance can become negative if you don't sync it. | |
Re: One for loop counting up, one for loop counting down. | |
Re: Will this 64 bit crap mean that you can do two 32 bit processes, or will this mean that the processes are just larger? Or did that make no sense at all? Take for instance the size of an Integer on a 32 bit machine. It's normally 8 bytes, does … | |
Re: Probably more lengthy to learn. Difficulty depends on your motivation. | |
Re: Put java and c together. Compile like this: javac HelloDate.java Run like this: java HelloDate If problems persist from there, then it's probably the environment variables. | |
Re: Here it is in Java notation. I don't know C. int a; int b; a = a+b; b = a-b; a = a-b; | |
Re: 1311 == InstallSheild code. Look in windows updates to see if there is an update for installers. I believe you are doing an online installation. Download an OFFLINE installation and everything should work out fine. Make sure it's an offline installation package. | |
I know that you might get mad at me for posting this here, but I CAN'T seem to get anyone's help elsewhere. I installed a simple attachment mod for a phpbb forum, and it's done something...I get these three errors: Warning: Cannot modify header information - headers already sent by … | |
Re: Hmm, wonder if that's just an undiscovered moon of another planet... | |
Re: We'll, I hope they get over here. I'm tired of this monopoly I'm stuck with. | |
Re: I just started a forum a few days ago. Don't have any members yet, but I'm working on it. I just don't like pressuring people into moving to my forum. I mean, I wish it was easier for them to find by themselfs rather than me having to annoy them … | |
Re: After shift+delete!? I would say unless you are really lucky, or some kind of computer forensic expert, then you are out of luck. | |
Re: I think using another term such as subcription might be missleading. Subcription almost sounds like you're suppose to recieve something, when that's not the case. I think donation sounds fine, and is the proper term. | |
Re: research executable jar files. You can do exe files by some programs, but it just packages the jre or jvm in there. | |
Re: Pick something that interests you, and will show your knowledge of the language. But we really shouldn't have to give you ideas if your a bs student. | |
Ok, what the heck causes these stupid exceptions. I can't find hardly any documentation on it. I've tried running my mortgage calculator on a different computer and it won't show up because a unsupportedflavorexception. I know it's something about the major or minor version, but what do you do about … | |
Re: [QUOTE=stevenr]can JCreator make executables or just execute them? how can u make one that you could give an icon and put on ur desktop?[/QUOTE] He just told you! | |
If you don't mind helping me a little, I have a few questions for you: 1) Why is it possible different data types(which should be different sizes) be the same size in memory? Take the sizeOf() function. I read where it's possible that you can pass it a long and … | |
Re: Why not a boolean check method? [Code] public boolean check(String text) { try { Double.parseDouble(text); return true; } catch { JOptionPane.showMessageDialog(null,"Numeric crap only"); return false; } return false; } [/Code] | |
I know how to run tomcat on MY computer, I just click the start button. My question is, how can I upload tomcat to a webserver and make it run forever(or at least until I click stop). | |
Re: Why not try them both yourself? It doesn't hurt to have two different browser brands on your computer and one as the default. | |
Re: On the resizing part, I don't think that disables the minimize and maximize. I believe that only makes it to were you can't drag it out bigger. I know that's one thing you wanted, but to disable max and min: setMaximizable(false); setMinimiazable(false); I could be wrong about that, but I'm … | |
Please take a look at this link, and let me know what you think of it. If you have any problems with it, I really want to hear about them: [url]http://wizardsolutionsusa.com/MortgageApplet/MortgageApplet.html[/url] | |
Re: You should like he said split things up. If I remember right it's called MVC architecture, and is worth looking into. | |
Re: I made a fractal drawer once. You can see pictures of it on my website, but it's not very fast. | |
Re: probably a live cd version. I wasted my time dual booting with mandrake and never use it. I think I might have but I can't find a driver for my wireless card. | |
Re: The first question, where to usestatic methods in applets: 1) Not very often. It's not advisable for newcomers to start using static methods right away, because they're normally used in the wrong context. Static methods only share one object. If you have ten instances of one static method, they all … | |
Re: I like to catch exceptions. I don't, however, throw some message up in the users face letting them know. I usually print something out to the console, and then deal with the error. lets say it's a calculator and the user entered a letter instead of a number...I would prefer … | |
Re: Change the batteries. The only other thing I can think of, is maybe you aren't letting a process finish when it's connect to the usb? | |
First of all, if this is not the right place, please move it. I was wondering if it was possible to put a file(lets say a java class file) in a seperate directory where no one can access it, but make it still show up on an HTML document. Is … | |
Re: That's not a bad idea at all! I mean, they could really gain from that. Cool article by the way. | |
Re: I would do it like this: When the user clicks that button, a thread is started. That thread create the movement of the car, and will continuously move the car untill the button is clicked again. You would have to set a flag to know whether it should start, or … | |
Re: I would say most C++ developers are also Java developers and vis versa(or at least know the languages interchangably). Also, the C and C++ forums are together. Even though they are closely related, it's still two different languages. One more thing, we run out all the people who want us … | |
I know I posted this in the java forum, but I would like to get opinions from people outside of the java forum. Please take a look at this java program, and let me know what you think of it: [url]http://wizardsolutionsusa.com/MortgageApplet/MortgageApplet.html[/url] | |
Re: What exactly are you having problems with during the use of get and setLocation()... You can specify an x and y int as arguments or pass a point to it. You'll have to be more specific before I can really help. | |
Ok, it's like this: I can't have any class file downloaded from my website, for personal reasons. A user could view the applet like this: applet.html then change the url easily to this: applet.class and have my program that easy. Is there way I can secure this somehow??? | |
Re: I think that was posted from some text editor with extra formating. Normally, when you do something like that, it produces the output of what he just posted. | |
Re: > for (i = 0; i < Num.length(); i++) > { > a[i] = Num.charAt(i); > } > You're grabbing numbers, so try parsing to a char: a[i] = (char)(Num.charAt(i)); or try this: a[i] = (Num.charAt(i)).charValue(); |
The End.