| Thread | Last Post | Replies |
|
| POI and PPT | 03 Mar 2006 21:02 GMT | 3 |
Is it possible to embed a gif image inside a PPT using POI . Is yes , can you point me to a sample code if no , Are you aware of any open source frame works that can do it Anand
|
| Minimizing repaints in Swing and instanceof | 03 Mar 2006 20:16 GMT | 7 |
There are several buttons on a Swing window, and the titiles of these buttons are changing about a dozen times a second (sort of a dashboard application). I need to speed up this processing as much as possible. The current code is calling repaint() for each display of the new
|
| need to refresh in Internet Explorer to see correct formatting | 03 Mar 2006 19:00 GMT | 1 |
we launched a new web site -- when viewed in IE on a 12w x 9h screen we need to click refresh to view the page text within the screen. if we do not click refresh the text scrolls off the screen and we need to scroll over. this happens in IE but not in Netscape or Firefox and it
|
| newbie applet help | 03 Mar 2006 18:55 GMT | 2 |
Hello Javamen. I am trying to install my first applet and am quite confused. The applet I am trying to install is LEDSign v2.7. I downloaded the package and opened the html page locally on my Win2003 IIS server as a
|
| nio limitations? | 03 Mar 2006 18:40 GMT | 8 |
Is this true, or have I overlooked something? nio gives you the ability to read the entire file into ram or map it into virtual ram. There is no ability to slide a viewing window over the file the way you effectively do with an ordinary Stream.
|
| Cyclic array? | 03 Mar 2006 18:20 GMT | 2 |
I need a special kind of collection, and I think what I need is a so called cyclic array. But with some modifications. I want to be able to set a max size. I want to set and get values at certain indexes. And if I set a value at an index so that there is a
|
| transactional queue | 03 Mar 2006 17:47 GMT | 3 |
I'm trying to look for a transactional queue implementation.
>From what I understand, during the dequeue operation, a commit doesn't happen until the client code calls commit eventhough the client code uses the elements it has dequeued but not yet committed.
|
| Get XPath of an element tag | 03 Mar 2006 17:24 GMT | 3 |
I am trying to 'grab' the XPath of an element as soon as the user clicks on it. So I am putting a span tag around that element (it's actually a <td>) and onmouseover it gets highlighted, now I want that onmouseclick, I grab the XPath of that td tag. Is there a built in
|
| Base64 Encoding with streams. | 03 Mar 2006 17:02 GMT | 10 |
I have spent my working day wrestling with a piece of code which "should" work but of course doesn't! It took me all of 30 minute to write and I have spent the last 9 hours looking through to find the bug!!! :-( It is a class which reads a binary file from a socket and
|
| JAVA Regular Expression | 03 Mar 2006 16:49 GMT | 2 |
Hi can anyone help me understand the following I have a regular expression that has to match for example: <format zipped="false" encrypted="false" /> My expression:
|
| JDOM element error | 03 Mar 2006 16:45 GMT | 6 |
The code below shows part of a method from my code. Everything compiles fine apart from one error which says: cannot find symbol symbol: method getChildren(java.lang.String)
|
| Array Initial data gives code to large error | 03 Mar 2006 16:10 GMT | 17 |
Wondering if someone may have a solution for my problem with Initial Data for object arrays. I have a 2D vector animator program that auto-generates data for Java code. All the vector objects data is output for a structures which I have converted to data classes. My
|
| JNI callback to Java method question | 03 Mar 2006 14:32 GMT | 2 |
in my code I used to call Java method which is void and nas no arguments, from native code, like: jEnv->CallVoidMethod( obj, jEnv->GetMethodID( jEnv->GetObjectClass( obj ), "envDepInfo", "()V" ) );
|
| Using interfaces "everywhere" due to (EMF) modelling framework | 03 Mar 2006 13:56 GMT | 58 |
I would be very interested in your thoughts on the following: In a large project with lots of own model classes and basetypes we are debating to stick interfaces in front of any such class. (the implementation language is Java, but the same could be done with
|
| FilenameFilter details | 03 Mar 2006 11:11 GMT | 1 |
I am just working through an example in Bruce Eckel's "Thinking in Java" (3rd Edn), looking at his first Directory Listing example. I don't see why his FilenameFilter is as complex as it is and so I assume that there is something I am not understanding about FilenameFilter.
|