| Thread | Last Post | Replies |
|
| Swing's equivalent of {.NET 2.0}'s DataGridView | 12 Dec 2006 20:23 GMT | 1 |
Does any one know such a thing (or similar) with Free/OpenSource license? Nice-to-have functionality: CRUD, binding to relational database, master-detail view. My research in this subject brought the following results which are not very
|
| Dynamically Update JTree Icons | 12 Dec 2006 18:33 GMT | 5 |
I'm trying to program the ability for a node on my JTree to have its icon change when the node is opened. However, althought it *seems* that the icon is benig changed (see the code below), the JTree does not refresh (or at least it doesn't appear that way). Any tips/hints/ideas
|
| Maximize JInternalFrame | 12 Dec 2006 14:07 GMT | 2 |
When I try to maximize a JInternalFrame inside a JDesktopPane, it seems to only work half of the time. For example, here is the portion of my code used to maximize the internal frame. try {
|
| TIFF handling in ImageIO | 12 Dec 2006 14:01 GMT | 1 |
I am trying to covert a tiff to jpeg image. I am able to do that using ImageIO but reading multi page tiff converts only the first page to jpeg image. I need to be able to pass page number and get only that page converted. Anyone has some idea how do it?
|
| How to use getGraphics() method of JComponent class | 11 Dec 2006 08:15 GMT | 6 |
Please demonstrate the way to use getGraphics() method of JComponent class with overall discription of getGraphics Method.
|
| DrawPanel not available:? | 11 Dec 2006 01:18 GMT | 1 |
I'm using IDEA 6.x and trying to call DrawPanel. import javax.swing.JFrame; DrawPanel panel = new DrawPanel(); For some reason its unavailable anyone know what could becausing this? I'm
|
| Windows look & feel wrong in table header | 10 Dec 2006 04:09 GMT | 2 |
I have found that if I use a custom table header then the UI that is selected when switching look and feels is incorrect for the Windows look and feel. Specifically, if I create a JTable using Ocean look and feel and then switch to Windows look and feel on a Windows XP machine ...
|
| Some Strange things in JTable | 09 Dec 2006 17:35 GMT | 1 |
I am try to create a dynamic table. String[] dataColumns = {"Observation Time", "Value", "Mode"}; DefaultTableModel dataTableModel = new DefaultTableModel(dataColumns, 100);
|
| How to determine if a JComponent is a container | 09 Dec 2006 16:25 GMT | 2 |
I like to write a method that will set the font of a JMenuBar and all menu items in that Menu bar. I can find any components inside the menubar using the getComponents() method. How can one determine if any of these components is a container? I would like to recursively go
|
| Are there any good Java XML UI toolkits | 08 Dec 2006 19:28 GMT | 5 |
Using XML for specifying the GUI seems a natural fit and there are a large number of packages that try to do this. But in my research of them, they all seem to be lacking in many ways. Many are not even in active development anymore.
|
| art of writing a responsive swing app | 08 Dec 2006 03:08 GMT | 12 |
Having played around with someones variant of Swingworker I have found pleasing results with using a background thread for actions initiated by a table, tree or menu. Clicking on the said item kicks off the action while letting the gui items respond appropriately. In fact
|
| (Swing) Prevent from painting while making changes | 08 Dec 2006 02:49 GMT | 1 |
Hiya. IS there any way to make a component not repaint or otherwise make any visual changes until I want it to? For example, when adding stuff to a JTextPane, I don't want it to repaint until all text has been added. Or
|
| Clearing Java Cache | 07 Dec 2006 03:21 GMT | 6 |
Does anybody know if it is possible to clear the java classloader cache programmatically through an applet. I know that you can do it manually by opening the Java Console and then pressing x to clear it but I was wondering if you can do that programmatically (assuming that the ...
|
| Right Click on JTree | 06 Dec 2006 16:48 GMT | 3 |
I was wondering about the functionality of mouse events on a JTree. When I left click on items on a JTree, it behaves like I expect. The paths are selected appropriately, holding Shift or Control works appropriately and the tree is always updated to show what has currently
|
| Listening to Mouse leaving a Frame | 05 Dec 2006 11:48 GMT | 5 |
Hello, I'm having difficulties implementing a requirement for an application I'm writing and I'm hoping someone can help. I have a JFrame that sits on top of the desktop and has various input fields in it. The requirement is that when the user leaves the frame to use
|