| Thread | Last Post | Replies |
|
| get HTML Title from JEditorPane | 06 Mar 2006 22:13 GMT | 9 |
I try to get html title from the JEditorPane when it loaded the webpage. Let see this code. Code: try{
|
| System.out.println() not working in applets.. | 06 Mar 2006 19:46 GMT | 15 |
I can't get System.out.println() to work in applets.. I need this method to debug.. tried out simplest way, compiles fine but does not print in applet: import java.awt.*;
|
| how to make listmodel alert a treemodel that listmodel data has changed | 06 Mar 2006 18:32 GMT | 6 |
I have a jtree with a treemodel on one side of a splitpane and a jlist with a listmodel on the other side of the same splitpane. When an entry in the listmodel is deleted I want to alert the treemodel to refresh itself to show that the entry was removed (listmodel shows ...
|
| Make JTabbedPane stretch with window | 06 Mar 2006 12:47 GMT | 2 |
How do I make a JTabbedPane component stretch to fill the panel it is in? I have a JTabbedPane in a JPanel in the CENTER part of a BorderLayout component. When I stretch the window, the JPanel stretches but the JTabbedPane keeps its dimensions, but I want it to stretch with the ...
|
| JTable how to fill with data | 06 Mar 2006 09:59 GMT | 3 |
maybe someone can help a beginner with JTable: - in my first programs I created a JTable and filled it with data like this: String columnNames[] = {"PartyID", "Datum", "Veranstalter", "Wo", "Anlass", "Besonderes"};
|
| Changing the background color of a node using JColorChooser | 05 Mar 2006 22:25 GMT | 3 |
I am new with jtree, but what i'd like to do is to change the background of a node that i selected by opening a JColorChooser dialog, then i'd like to set the background of the selected node to the color i choose in the dialog.
|
| A book for Java Swing | 05 Mar 2006 11:43 GMT | 3 |
I am not an expert about java but i want to buy a book about java swing, I found these 2 books, someone that knows this 2 books can tell me what is better? - The Definitive Guide to Java Swing, Third Edition John Zukowski
|
| Display special characters on a JEditorPane | 04 Mar 2006 11:58 GMT | 6 |
I have a text with special characters like tabulator or carriage return. How can i display the tabulator in a jeditorpane like word is doing it. I'm not very familar with the java text api. So i don't know where to start searching to solve the problem.
|
| Newbie: Prevent stretching of widgets when using LayoutManagers? | 03 Mar 2006 21:21 GMT | 5 |
The problem with my Java components is that they stretch along when I resize the window. They become way too big. I've been able to prevent this using: thePanel.setMinimumSize( thePanel.getPreferredSize() );
|
| ImageUpdate and threads | 03 Mar 2006 16:19 GMT | 1 |
Hi !!! I have a technical question about the loading of images. I have used for long time the SwingWorker class for loading images (as the SUn examples), however, in some books I have found that it is possible to
|
| Selecting multiple elements in JList | 03 Mar 2006 05:44 GMT | 2 |
In JTable if u click on a row and drag the mouse without releasing, the subsequent rows get selected. By default this feature in not there in JList, only one element will get selected even if u hold the mouse and drag. how do i get the same thing happening in Jlist?
|
| Flash 7 player in Java | 02 Mar 2006 22:57 GMT | 10 |
I have developed a Flash 7 compatible virtual machine in java 1.1. This will allow java developers to use Macromedia Flex, or Flash MX to make great looking front ends, graphical animations etc directly within their java application.
|
| JTree oddness | 02 Mar 2006 21:36 GMT | 1 |
Okay before I go to the trouble of createing a little compilable example that illustrates this problem, if indeed it would, I'll just run it pass you and see if it rings any bells. I have a JTree which has a basic renderer attached which just changes fonts,
|
| Borderless JToggleButton | 02 Mar 2006 18:29 GMT | 2 |
I created a round JToggleButton, with icons for the various states, which looks fine with the sole exception that it has its square border painted when it is selected. I used setBorder(null) and isBorderpainted(false), to no avail. Any clue?
|
| Setting Opaque false on JComboBox | 02 Mar 2006 17:12 GMT | 2 |
I've looked all over online, including all over these groups, and all the posts on the subject are rather outdated. I'm hoping someone has come up with a way to set a JComboBox to be transparent. I can sort of get the dropdown button to do so (it removes the excess fill) but my
|