| Thread | Last Post | Replies |
|
| Alternative to Eclipse | 25 Sep 2006 09:21 GMT | 18 |
I am planning to develop a modelling tool, let us say something akin a tool that would allow users to Network diagrams. There is no 3-d representation involved, all the diagrams would be represented as flat 2d.
|
| list of java guis | 25 Sep 2006 09:20 GMT | 6 |
I'm a programmer, but have very little experience with java (school). Recently, I was asked about java GUIs. What are the most common GUIs used, and the most supported? My next question may be off topic, but I'm not sure how it fits into
|
| ListSelectionModel problem | 23 Sep 2006 19:36 GMT | 4 |
I have a problem when I'm programming a special subtitle (SubRip/srt) editor in Java. I use a JTable (referred to as "table" in the code below) and when the user presses Shift+Enter the table should select row n+1, where n is the
|
| working on selected jInternalFrame by a function on toolbar.. | 23 Sep 2006 12:32 GMT | 1 |
i'm writing an image editing application. i can open many documents with new JInternalFrames.. i wrote a new class for JInternalFrames. And I have a toolbar. i wrote this toolbar into ToolBar.java and adding to application frame.. When i push the button on it, i want to do that
|
| Getting A JHeader Margin | 23 Sep 2006 05:03 GMT | 2 |
I have a JTable with a JHeader. My JTable's columns have a margin of 1 but the margin of the text I put in the header looks greater and I want to know what it is. Is it possible to find out ?
|
| How to grab the current look and feel's icon for a combobox button? | 22 Sep 2006 20:58 GMT | 1 |
I am creating my own custom combobox like component and I would like to get the current look and feel's icon for a jcombobox button. I can see in the java source that there are class for creating this (ie javax.swing.plaf.metal.MetalComboBoxIcon) so I would like to know how
|
| profiling Swing | 22 Sep 2006 18:34 GMT | 1 |
A client's existing Java 5 Swing app has a sluggish GUI on some new hardware. What is the best way to figure out where the time is going? It doesn't look like there's any native double-buffering, nor is there any swapping. One thread does seem to be sucking up most of the CPU,
|
| Multiple selection in JFileChooser | 22 Sep 2006 17:14 GMT | 1 |
I've been working on an application that needs a FileChooser, to select multiple files. I find that a really nifty feature of FileChoosers on Windows is that you can draw a rectangle with your mouse, and it will select all files under the rectangle. Unfortunately it seems that even
|
| Image on Jpanel, with sensible resizing | 22 Sep 2006 15:02 GMT | 4 |
I want an image to display in a jpanel. If the image is smaller than the dimensions of the panel, it should display at its normal size. If the dimensions of the image are larger than the panel, it should be scaled to fit within the panel - keeping its original aspect.
|
| Multiple versions of Java concurrently? | 22 Sep 2006 12:44 GMT | 4 |
Hi all. First, I don't even know if this is the right forum to post in, if it's not please tell me. I have a GUI which requires Java 1.3.1-x. Whenever I upgrade to Java 5+ the GUI ceases to work. Now I'm running into a problem where some newer
|
| Layout Frustrations | 22 Sep 2006 09:52 GMT | 3 |
I'm using NetBeans 5.0. I've been working on a swing based screen. In the beginning as I was laying out my widgets things were ok... sort of. Once in a while I had the pains of NetBeans trying to move things where I DIDN'T WANT them. After some tweaking I got things where I wanted
|
| Put a date in a mysql | 22 Sep 2006 01:15 GMT | 1 |
i have a JFormattedTextField with the MaskFormatter ##/##/#### (dd/MM/yyyy) and i want to put this data into a mysql table. But i don´t know how. Any suggestions for me ? thank you guys.
|
| I need advice about GUI platform for new project | 21 Sep 2006 19:55 GMT | 8 |
I've developed for some time libraries in C++ that carry out some tasks. I compile them with gcc in Cygwin, and I make sure it is standard and portable C++. Now I need to embed those tasks in an application with a portable Graphical User Interface (for Windows and
|
| Mnemonics question | 21 Sep 2006 19:16 GMT | 2 |
I've a problem concerning mnemonics: I use an Action and this Action sets the property MNEMONIC_KEY this.putValue(Action.MNEMONIC_KEY, Integer.getInteger(null, keyCode)); The underscore is diplayed correctly, but the application doesn't show
|
| how to force a window to stay in background | 21 Sep 2006 14:33 GMT | 14 |
I want a message window, created as: static void showWarning(JFrame frame, String s) { if (frame == null || s == null) return;
|