| Thread | Last Post | Replies |
|
| Remote JNDI/EJB Problems | 13 Oct 2004 16:41 GMT | 5 |
How's everyone doing today.. Good. :) well my problem is driving me crazy, so I hope someone can help me figure out why this is doing what it's doing.. i'm probably just doing something "stupid"
|
| NoClassDefFound | 13 Oct 2004 15:30 GMT | 2 |
I have a distributed application (a GUI) which accesses class and JAR files from our server at start up. This application runs perfectly fine at 60 plus stations for many years. Now at one station I am getting a NoClassDefFoundException after the application has been up
|
| cannot resolve symbol variable input (n00b question) | 13 Oct 2004 13:14 GMT | 6 |
I keep gatting the "cannot resolve symbol variable input" even though I think it has been initialised within the try block. --------------------------------------------- public class MakeCircleEdit {
|
| ToggleButton oddity | 13 Oct 2004 11:13 GMT | 1 |
I'm trying to create a set of video controls on my application. I've added JToggleButtons named jtoggleButtonPlay, jToggleButtonPause and jToggleButtonRew. (All part of the same ButtonGroup buttonGroupVideoControls)
|
| Do you have free Java source about Send SMS message ? | 13 Oct 2004 10:07 GMT | 1 |
Do you have free Java source about Send SMS message? Thank before!
|
| warnings when compiling with jdk1.5 | 13 Oct 2004 08:55 GMT | 2 |
I have re-compliled some code with the new version of the JDK. I get the following warning: unchecked call to addElement(E) as a member of the raw type java.util.Vector
|
| regular expressions | 13 Oct 2004 08:10 GMT | 2 |
I am trying to write a regular expression that will match all the exceptions generated in my application log file. I have done it as such: \bjava\.\w+\.\w+Exception: However, there are two exceptions that I know will occur and I don't care to
|
| Timer event | 12 Oct 2004 16:26 GMT | 5 |
In the code below the actionPerformed method is never entered ( I mean ... executed) ! Can someone say why...where is the problem ? Thanks a lot in advanced.
|
| Problem when typing eastern languages in JavaSE 1.5.0 on Windows 98SE | 12 Oct 2004 11:01 GMT | 1 |
After installing new JavaSE 1.5.0 on a Windows 98SE machine, some of my eastern european characters are not typed properly in Java applications. The very same JavaSE 1.5.0 works on Window 2000 without any problems. When installing the JavaSE on Windows 98SE, I have
|
| Finding source files.. | 12 Oct 2004 09:35 GMT | 1 |
These are the source files I have.. robertmarkbram - ~/SUNWappserver/apps/cardService $ls src/cardservice/ CardServiceImpl.java CardService.java
|
| For loop help! | 12 Oct 2004 05:33 GMT | 9 |
I'm writing a program to make designs based on user input. for example: the user types in a character and an integer. if he types in 5 for the count and # for the design the output would be: #
|
| variable scope problem.. | 12 Oct 2004 02:56 GMT | 31 |
int var1 = 20; String var2 = "yada yada"; if (var2.length() < 10) { do this..
|
| request for explanation on access an database in ms access | 12 Oct 2004 02:04 GMT | 2 |
This is the code that I found on the internet for accessing an ms access database: import java.sql.*; class Test
|
| Design Pattern book recommendations | 12 Oct 2004 00:08 GMT | 1 |
Can anyone recommend a good book on Java Design Patterns? Not looking for J2EE design patterns specifically, but just a good book that covers most of the commonly used patterns for the Java language.
|
| Abstractbutton needs mouselistener? | 11 Oct 2004 23:56 GMT | 4 |
I've created my own button using AbstractButton. I also added an ActionListener to it. The problem is, when the button is shown and I click on it, nothing happens - actionperformed of my actionlistener is never invoked.
|