| Thread | Last Post | Replies |
|
| Difference between 1.3 and 1.4 in JTable? | 05 Aug 2003 04:27 GMT | 3 |
I wrote an application that uses a JTable to display some data. I wrote my own cellrenderer that provides rows that contain multiple lines of text. When a row is deleted all other rows are rerendered and the rowheight para- meter is updated accordingly. This works in 1.3. But in 1.4 ...
|
| scalling a page to print | 05 Aug 2003 02:07 GMT | 1 |
I want to print a page that is in HTML format or just some stuff in a container of some sort. The following class is a class a wrote after reading the sun tutorials on java printing. import java.awt.*;
|
| BufferdImage | 04 Aug 2003 20:40 GMT | 3 |
I'm programming a display(extends JPanel) that uses a BufferedImage to display Polygons. I need to update that display and so I have to remove all all the already displayed Polygons before, how can I do that?
|
| help with ChangeListener | 04 Aug 2003 18:44 GMT | 3 |
I have a class that implements the ChangeListener interface using that stateChanged(ChangeEvent ce) method to monitor the selection of JCheckBoxes in a Swing GUI. The problem I am having is that, whenever a box is checked or unchecked, the stateChanged method is called exactly 5 ...
|
| JTable Background Color When Not Using Scroll Bar | 04 Aug 2003 15:55 GMT | 2 |
I have a table that does not take up the entire width of the display (or display area). The background color of the table cells is white. The background color of the rest of the display is gray. I would like the background of the table where there are no cells to be gray as
|
| Style in closing a JPanel | 04 Aug 2003 02:19 GMT | 2 |
In a Java application (not an Applet), if I want to exit when closing a JPanel, and want an Exit option on the File menu, going through all the stuff with WindowEvents and WindowListeners seems unnecessary. Instead, I extend JPanel and call
|
| gui design question? | 03 Aug 2003 06:05 GMT | 1 |
I have a Console class that is GUI console. Lets say some class wants to use this console and be able to write code that handles the commands enetered in the console. How would this be designed?
|
| changing size of panel | 03 Aug 2003 05:40 GMT | 3 |
I have an application with two JPanels, one above the other. Currently they are the same size but i want to change there hight, panel1 to be bigger than panel2. I've tried setSize() but this has no effect. Please help.
|
| Uploading files to a server via JSP | 02 Aug 2003 23:45 GMT | 2 |
I have a JSP page on my server that allows the user to select a file from their own local drive with the <input type="file" value="userfile"> tag. My question is how do I get the file from the users drive onto the server, what is the code that I need to write to upload the file?!?
|
| Strange exception in RepainjtManager | 02 Aug 2003 23:42 GMT | 1 |
i'm developing an application that lets you create a logical schema. You basically have a panel with some objects to put in it and you can connect each other to provide some functionality. But that's not the problem. Everything was going extremely well till now. I've stoped
|
| Java2D Question | 02 Aug 2003 01:07 GMT | 2 |
Looking for a push in the right direction, I'm trying to add defect mapping to an existing Swing application. I want to show the products as rectangles (no problem) and show the defects as different types of filled rectangles within the larger one.
|
| Document for parsing Java Source Code | 01 Aug 2003 21:50 GMT | 2 |
has anyone a Document-implementation that parses Java Source Code? I could use that for an source-code-editor with code completion (like all new IDE have). It will also be useful for Syntax Coloring. Thanx,
|
| BasicIconFactory vs. MetalIconFactory | 01 Aug 2003 21:36 GMT | 2 |
Is there a L&F-independent way of accessing various system icons (something like MetalIconFactory, only working for whatever L&F the system is using)? I've found BasicIconFactory, but it only provides access to
|
| Create a Word / Text Tagger in Java Swing | 01 Aug 2003 18:08 GMT | 1 |
Hi , I am new to using java swing , i need help To create a tagger so that i once open a text file in teh editor i have
|
| Displaying superscripts in JLabels? | 01 Aug 2003 17:09 GMT | 5 |
I want to be able to display superscripted number characters (e.g., -1) in certain JLabel components. I have managed to display subscripted characters using Unicode such as \u2082, but with superscript (e.g., \u2071) this just ends with garbage (little boxes). Is this the best ...
|