| Thread | Last Post | Replies |
|
| package in applet? | 05 Apr 2004 03:14 GMT | 2 |
I am working with JBuilder9 - every program there needs to be included in a package. So let assume the package name is "A" and the applet name is "B". What name I am giving in the <applet> tag? Thanks,
|
| goolge's web page | 05 Apr 2004 00:56 GMT | 3 |
Hi, Anyone know what technique goolge.com uses for its web page? servlet? jsp?, or others? Thanks,
|
| Net Beans and eclipse wich is the more portable? | 04 Apr 2004 22:02 GMT | 2 |
HI again, In case you wonder, yes my applet works. You are not alowed to rob it at http://www.jeanpierredaviau.com/MixedWires/MixedWires.html
|
| JComboBox question | 04 Apr 2004 20:59 GMT | 1 |
I have JComboBoxes A and B. B depends on A (when I change selection in A, B should change also (it should get news values from database, based on selected value in A)). How can I update JComboBox B?
|
| How to trace an OutOfMemoryError? | 04 Apr 2004 20:46 GMT | 5 |
I'm stuck with a little application I wrote some time ago. After using it for a while, the application hangs and an OutOfMemoryError is written to the console (java.lang.OutOfMemoryError is all that is written). Since there is no stacktrace, no extra information and thus no way of
|
| If . is in classpath doesn't that pull in classes in the current folder? | 04 Apr 2004 20:39 GMT | 7 |
This compiles without issue: package standalone; /** * MIMEType.java
|
| Why does String.indexOf() accept an int, and not a char? | 04 Apr 2004 19:15 GMT | 2 |
It seems a bit odd that String's indexOf() method accepts an int and not a char, is there a special reason for this? Thanks in advance!
|
| loading varables | 04 Apr 2004 13:44 GMT | 10 |
I have a variable "book" which askes the user for four titles which will be with one patron's name. How would i load this with a loop? Some how I am getting lost?
|
| how to access a file from within an applet??? | 04 Apr 2004 08:24 GMT | 3 |
I have written a public class, lets call it class1. Within this class, I have a method (method1) which accesses a file, retrieves a bit of information from the file, and then returns a vector as output. If I try to call method1 from any normal class, it works fine and I
|
| How to put a ButtonGroup on a Frame? | 04 Apr 2004 08:17 GMT | 3 |
I was looking through manuals and examples but I couldn't find how to put a ButtonGroup on a Frame. For example: Frame fr = new Frame(); JRadioButton r1 = new JRadioButton("Dec");
|
| problem getting the java VM to run | 04 Apr 2004 03:59 GMT | 18 |
i just noticed that there is a tool at microsoft.com which you can use to remove the MSJVM. i was very happy to do that. i then tried to install j2re 1.4.2_04 after restarting my computer and disabling my virus-scan-engine. the install
|
| Array Question | 03 Apr 2004 20:37 GMT | 3 |
I've been trying to find a way to resize an array after it has been instantiated, but haven't had any luck. I was wondering if anyone could help me. Example: double[][] blurry = new double[50][3]; now sometime later in my code - I realize that the array cannot hold all of my ...
|
| Return type method syntax | 03 Apr 2004 12:44 GMT | 2 |
I've been looking at some public methods via Sun's javap disassembler and I find some don't print the return type void, e.g.: $ javap -public VerifyError Compiled from "VerifyError.java"
|
| Java passing info? | 03 Apr 2004 12:20 GMT | 6 |
I have my program coded but I am throwing 5 errors. I am sort of lost ... being a novice :) The error is: symbol: class str ??? Any comments would be helpful ... Thank you!
|
| problem in Array -- Help please | 03 Apr 2004 10:33 GMT | 4 |
when i try to call the following class function "set_world(String w)" from my main class, i am always getting error "error found". it looks like the problem is with String array "worlds". but i cannot understand. can anyone figure out the problem and explain little bit.
|