- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
9 Posted Topics
Re: I read in your post that your assignment was due a few days ago, but I thought I might give you a link to a program that reminds me very much of your assignment: PigLatin.java PigLatinTranslator.java You can find these java classes and such to study if you go to … | |
Hello, I'm not sure where this topic should be posted, but I hope it fits here... I have been browsing around the Internet for information about using multiple webcams connected to a single computer (I'm interested in webcams for PCs). My problem is that, after a week of searching through … | |
Re: As a simple editor which also can be used for compiling and running Java code, I like [url=http://www.gnu.org/software/emacs/emacs.html]Emacs[/url] a lot. [url=http://www.netbeans.org/products/]NetBeans IDE version 3.5[/url] is free and comes in a [url=http://java.sun.com/j2se/1.4.2/download.html]cobundle with the Java JSE version 1.4.2[/url] /Soo-Im | |
Re: AFAIK, the StringTokenizer does not in itself remove characters; it breaks up a string in tokens at given delimeters. If StringTokenizer is constructed like this: StringTokenizer st=new StringTokenizer("the fish was eaten by the cat"); ...the default delimeters are: - space character - the tab character - newline character - carriage-return … | |
Hello, I've been trying to find something about why window.opener doesn't work for IE (I'm using 6.0) when I use the window.opener in a separate JavaScript file. It works without any problem when I use Mozilla/Netscape, but not for IE. The implementations I've seen in my searching for an answer … | |
Re: Hi, There's a great tutorial link that gives an example of what you are asking for. Or at least close to what you are asking for - it's about frames per second but the idea is very similar to your problem. Here is the link: [url]http://java.sun.com/docs/books/tutorial/uiswing/components/slider.html[/url] So for example, if … | |
Re: Perhaps the following links from Sun Microsystems might help: Technical Tips: USING ARRAYLIST AND LINKEDLIST http://developer.java.sun.com/developer/JDCTechTips/2002/tt0910.html General Purpose Implementations http://java.sun.com/docs/books/tutorial/collections/implementations/general.html Hope that is of any help, /Soo-Im | |
Re: A combination of events can be used for the same listener; listening to i.e. when a certain key is pressed by adding a KeyAdapter's KeyEvent, and listening to when a certain button is being pressed by using the ActionListener's ActionEvent. So if i.e. a "ok" button should do something one … | |
Re: [quote]Oh yeah...one more thing here, can 2 layouts be combined in a frame? Err...btw, is frame the correct word...hehe....pardon me, I'm real new in this. For eg. can I use BorderLayout together with GridLayout for example in the same window application?[/quote] BorderLayout is the defaultLayout in a JFrame. The JFrame … |
The End.