| Thread | Last Post | Replies |
|
| Mouse Settings | 26 Sep 2007 22:54 GMT | 4 |
I want to write a function that toggles left/right hand mouse settings. I was wondering how Windows XP does this using control panel. Thanks,
|
| buffer size of serial port | 26 Sep 2007 17:23 GMT | 3 |
When using javax.comm for serial communications what is the buffer size where the data read from the UART is stored .The Serial Communication APIs tell that we can use an InputStream object over the Serial port to read data from it.The buffer size of the UART itself is
|
| Losing tabs when printing | 26 Sep 2007 12:48 GMT | 5 |
I have a JTextArea, which I'm having problems of losing formatting when I print it. If I have something like: "This(tab)is(tab)a(tab)formated(tab)text" It appears on the printing as: "This is a formated text"
|
| GIF encoding | 26 Sep 2007 12:46 GMT | 15 |
I'm using the AnimatedGifEncoder.java (reference http://www.fmsware.com/stuff/gif.html). I have 15 gif frames, when I use the encoder my file size comes to 82kb, if I use an animated gif application it only comes to 40kb. Any ideas why the file size is so much larger? How can I ...
|
| Operator ^ cannot be applied to double..? | 26 Sep 2007 12:44 GMT | 3 |
Basically, the calculation without log is - x / [ 1-1/(1+x)^n] So, when you take log, you get logx - log(1-(1/(1+x)^n)) But, when I'm doing this same in Java, I'm getting this error
|
| JPanel resize with mouse problem | 26 Sep 2007 12:29 GMT | 8 |
I have a question about how to resize the JPanel with mouse. There are mainPanel, jPanel1 and jPanel2. The Layout of mainPanel is BorderLayout. jPanel1 is added to the west while jPanel2 is added to the center.
|
| ANT FTP task Does not work | 26 Sep 2007 07:00 GMT | 1 |
Platform - windows XP Env Variables - name - ANT_HOME Value - C:\apache-ant-1.6.2 name - JAVA_HOME Value - C:\Program Files\Java\jdk1.5.0_12
|
| Reading text file String by String | 26 Sep 2007 06:01 GMT | 10 |
Respected sir, I am having a text File and I have to read that file string by string and I have to store these strings I an array of String. How can I acheive this.
|
| multiple javaw.exe running as a service | 26 Sep 2007 05:47 GMT | 2 |
I got a message from Vista asking me to close apps to free up memory. I had a look and discovered no Java apps running, but 10 copies of Javaw.exe running as a service. I wonder if anyone knows what could cause this.
|
| About IBM Rational Application Developers v6.0 trial | 26 Sep 2007 05:30 GMT | 3 |
I tried to learn something about the IBM WebSphere server. Is this server integrated in the IMB RAD? I tried hard to find the configuration interface for the websphere server but failed. I just want to use the server. what should I do? I have already download the
|
| Finding a value by approximation / estimation | 26 Sep 2007 02:58 GMT | 10 |
Say the values of a & b are given (Note: a,b,c form an equation) Now, would it be possible to find the value of c if a/b = (1 - (Math.pow(1/ (1 + c), 10*12)))/c; See below (half-baked example) :
|
| Changing colors of a gif image | 26 Sep 2007 00:14 GMT | 2 |
Hello again, I got the .gif file that I have to be transparent in the correct locations. Now, I would like to change the colors of the remaining pixels based upon an input color.
|
| Location of compiled JSPs in eclipse/websphere? | 26 Sep 2007 00:14 GMT | 2 |
I'm running websphere 5.1.2. Does anyone know where the compiled JSPs are stored so I can delete them whilst testing code? It's horrible having changed an include file for example and it's not picked up because the main JSP is already compiled.
|
| float to int conversion | 25 Sep 2007 23:47 GMT | 10 |
System.out.println(new Float(21082007.0).intValue()); // -> 21082008 System.out.println(new Double(21082007.0).intValue()); // -> 21082007 Why? System.out.println(new BigDecimal(21082007.0F).intValue()); // ->
|
| How do I make an icon's background transparent? | 25 Sep 2007 23:19 GMT | 5 |
I have created two icons, one with a triangle pointing to the right and one with a triangle pointing down. Both of the triangles sit upon a white background in the .jpg files. I am using these icons on togglebuttons to indicate closed and opened states, respectively.
|