| Thread | Last Post | Replies |
|
| Using tabs and getting rid of staggered lines | 11 Nov 2005 14:58 GMT | 7 |
I wrote the following code to do calculations and present the results in a Java applet. But, I want to use "\t" to set the columns, and I want to correct the lines that stagger when drawn. Are there any suggestions?
|
| jpedal | 10 Nov 2005 19:21 GMT | 1 |
I'm using Jpedal to create an Image from a pdf page. For that I've used
|
| Question regarding linking and moving - any advice greatly appreciated | 10 Nov 2005 15:25 GMT | 3 |
Hey Everyone, Thanks for reading, heres what I'm trying to do I have an array of say 10 items each item contains the text / description for a room. Now I would like to create a class (lets call it BookSection) this class
|
| how do you update a java.sql.date type in an ms access database | 10 Nov 2005 12:35 GMT | 4 |
when i update a row in an access database the date field does not update to the correct date it brings up some funny date which i dont know where it comes from. Below is the method i use to update. maybe the date types are not compatable?
|
| Get current URL from IE | 10 Nov 2005 12:30 GMT | 1 |
I'm trying to get URL from IE which is currently opened. Is there any way to get it? I want to store that address and use it later for something useful. Is it possible with Java or any other language?
|
| Mimimize title of JInternalFrame | 10 Nov 2005 12:05 GMT | 1 |
Please help to mimimaze titlebar of JInternalFrame like here: j2sdk1.4.2-06/demo/jfc/SwingSet2.jar -> Internal Frame Demo - Frame with buttons. Thanks.
|
| Java statements | 10 Nov 2005 09:53 GMT | 17 |
Two questions, just ot help me wrap my head around some Java: 1. Why will the if statement generate a compile time error? float x1 = 10f float x2 = 12f
|
| using super | 10 Nov 2005 05:40 GMT | 5 |
Hello Everyone. I am trying to declare a constructor that accepts the same parameters as the Transaction constructor and pass them to the Transaction constructor. I think this should work, but I'm rather new to 'super' (and OOP in general)
|
| How to protect my source code ~~ | 10 Nov 2005 01:58 GMT | 46 |
I have to release code to customer for future modification. BUT, I Really don't like to do this. I can use proguard to protect .jar, but right now, I have to release .java code.
|
| Java Session in JSP | 09 Nov 2005 23:00 GMT | 6 |
Hello, I am having some trouble when trying to use java session to save information and use in a different JSP. I have a JSP called analyzeSourceCode.jsp that has //Creates a Session
|
| Help with java code for Box Class | 09 Nov 2005 16:52 GMT | 7 |
Create a Box class. The program should be able to create three types of boxes, with 0, 1, or 3 parameters. If the box is a cube you should only have to provide the length of one side. You should also be able to specify the length, width, and height of the box. You should also be ...
|
| Beginner Java Help | 09 Nov 2005 15:36 GMT | 5 |
For my assignment I need to read data from a file, the data is as follows: 1. 9.0 The Godfather (1972) 138,824 2. 9.0 The Shawshank Redemption (1994) 168,033 3. 8.9 The Lord of the Rings: The Return of the King (2003) 122,215
|
| trouble validating int's | 09 Nov 2005 03:47 GMT | 6 |
I need to validate int's, but some numbers larger than allowable integer size are getting past my validation. public Foo(int x) { if( (x<Integer.MIN_VALUE) || (x>Integer.MAX_VALUE) ) {
|
| Java applet & proprietary jar library. | 09 Nov 2005 03:39 GMT | 3 |
I was writed applet , which used proprietary library. When I 'm trying to look at this applet on the web browser , I'm geting error: java.lang.NoClassDefFoundError: com/vocaldata/VoissAPI/VoissAPIClient at eapplet.eapplet$VoissTest.<init>(eapplet.java:118)
|
| need drawing the empty triangle | 08 Nov 2005 23:33 GMT | 4 |
i need to draw a empty triangle using only characters such as (*), the thing is i need help figuring out the right side of the triangle. public class Subclass { public static void main (String args[]){
|