| Thread | Last Post | Replies |
|
| JSplitPane Problem | 31 Dec 2003 20:21 GMT | 5 |
I have a problem with some code using a JSplitPane. The application works fine under Java 1.3 but on changing to 1.4.2 _01-b06 my JBuilder X compiler doesn't recognize the DIVIDER_LOCATION_PROPERTY bound property or the setResizeWeight(double) method. Has there been a change with ...
|
| SSCCE 1st draft.. | 31 Dec 2003 09:10 GMT | 2 |
I have completed the first draft of my document advocatiing the SSCCE.. http://www.physci.org/codes/sscce.jsp Comments? Suggestions? (Spelling corrections?...)
|
| how to determinate drag and drop in progress in JTree | 31 Dec 2003 08:04 GMT | 1 |
I would like to provide auto node expansion in tree, when a user drags something. How can I figure out that a node selected as result of drag&drop?
|
| multypage printing of JComponent ? | 30 Dec 2003 18:57 GMT | 1 |
I know how to print JComponents (JTree, JTable) but on one page and the rest of component is just cut off. How can I devide some component on four pages, for example? ---
|
| Multiple Icons on the same JTree Node | 30 Dec 2003 18:51 GMT | 4 |
I have a requirement to display multiple icons on a single JTree node. Does anyone know if this capability is supported in the Swing JTree, if it can be easily added to the Swing JTree or if there is a commercial tree that supports this behavior?
|
| [Swing] Controlling depth of multiple JWindows. | 30 Dec 2003 18:38 GMT | 8 |
I am developing an application that has three JWindows that must always be displayed on the screen. One displays radar data and is permanently fixed in the background and covers the entire screen, while the other two are task bar type windows located across the top
|
| JFrame does not automatically resizes to JLabel's length | 30 Dec 2003 13:34 GMT | 8 |
I am using three JLabel's on a row using the BorderLayout. The texts of the JLabel's varies by size, which depends on user input. Unfortunaly, when the JLabel in the center of the BorderLayout (BorderLayout.CENTER) gets too large, it gets truncated and appended by three dots (...).
|
| Pedantic Swing threading question | 30 Dec 2003 13:32 GMT | 7 |
Hello; hope everyone had a good holiday season. I am familiar with Swing threading issues except for this one point. Suppose you have a class, A, that registers itself (or another tiny class) as a PropertyChangeListener on another class, B. Suppose that
|
| Reusing JFileChooser instances | 30 Dec 2003 11:13 GMT | 8 |
I am trying to serially reuse a single instance of JfileChooser but the second and subsequent uses of the instance continue returning the selected item from the first use (via getSelectedFile() ). I have tried using setSelectedFile(null) to no avail. Can anyone tell me how
|
| Setting the background with an image Pattern | 30 Dec 2003 08:46 GMT | 1 |
I'm looking for a way to set the background pattern with an image (i.e. loaded as a gif). I'd like the background to be filled (and act as a pattern rather than a background image) with a given gif, even after resizing.
|
| jpg as background? | 30 Dec 2003 04:48 GMT | 6 |
Can i put a jpeg as a background for a panel or frame in swing?? if so what should I be aware of? Could I make it the background of my frame and set the panel to opaque? would this effect and animation?
|
| Drawing a graph | 30 Dec 2003 03:58 GMT | 3 |
I want to draw a directed, possibly cyclic graph in some GUI. What would probably be the best approach to that? What classes and what methods in the JDK do I have to look for? I probably have to override some paint method, but I'm not sure what to subclass etc. I have never done
|
| How to assign a string buffer to a JEditorPane | 30 Dec 2003 03:23 GMT | 11 |
I wanted to program a little Browser. For viewing the HTML, I would use a JEditorPane. That component has got a method setPage(URL), but I don't want to use it because it doesn't work with all sites in the WWW (even the java.sun.com page isn't displayed). So I wanted to load the ...
|
| How to draw strings around a circle | 29 Dec 2003 19:32 GMT | 7 |
I'm a Java newbie , and we got an assignment in school to program an economic graph. The result is a circle devided in a variable number of segments (standard : 12). Everything is finished, the only problem is that I need to draw strings
|
| Controlling the size of a text field... | 29 Dec 2003 19:28 GMT | 2 |
I'm using a 3x2 grid layout in a JPanel. The left column are labels and the right columns are JTextFields. These text fields contain values that are only a few chars long (numbers generally). My problem is that the text fields are filling up the whole block on the grid but
|