| Thread | Last Post | Replies |
|
| two main methods in one Java-GUI-Application | 19 Sep 2003 15:24 GMT | 1 |
At first: I've got some problems to understand the structure of java-programms. Here is my question: I try to develop a GUI-Application with a JDialog for RS232
|
| Problem in executing batch file(.bat) | 19 Sep 2003 15:05 GMT | 1 |
I have written a java file to execute a batch file (abc.bat) but it is not executing batch file. Is there any way to execute batch file. import java.io.*;
|
| Problems with refreshing GUI | 19 Sep 2003 11:30 GMT | 1 |
we're trying to build a GUI consisting of serveral components. Up to now, this was no problem. But now we've a component, which doesn't want to refresh after changing it. This problem appears only by this one, the others (paradoxically) works smooth. Here's the code of the unruly ...
|
| JTable stalls when drawing | 19 Sep 2003 07:47 GMT | 1 |
I have a JTable that draws just fine when it's empty. It also draws just fine the *second* time it displays non-empty. But the *first* time it draws with contents, the drawing stalls. It doesn't always stall in the same place, but it *never* finishes.
|
| JPopupMenu repaint problem | 19 Sep 2003 01:15 GMT | 2 |
I am using JPopupMenu for the first time and I'm having somw problems with it. I'm calling it on a panel which contains many components. If user right-clicks on one of these components, the JPopupMenu is called as follows: e.getComponent().add(tableMenu);
|
| JScrollPane at top when dialog displays? | 18 Sep 2003 22:39 GMT | 2 |
I've got a dialog just completed that misbehaves when we call show(). It's got a single JPanel at BorderLayout.NORTH whose contents are a JTextArea, a button, and some rigid areas for spacing. Then down at BorderLayout.CENTER is a JScrollPane which contains a single JPanel.
|
| Run AWT Applet in Swing Container | 18 Sep 2003 21:54 GMT | 2 |
is there a way to run an AWT Applet in a Swing GUI? It should work like appletviewer, but not as a seperate application but embedded within the gui of a swing application. Thanks,
|
| Asymmetry | 18 Sep 2003 18:07 GMT | 2 |
Why is it that only JCheckbox has a built in label? With every other component you need a separate JLabel. -- Canadian Mind Products, Roedy Green.
|
| Should Frame's setVisible(true) be immediate? | 18 Sep 2003 18:01 GMT | 1 |
I am embroiled in a debate on Apple's java developer list on whether frame.setVisible(true) should immediately make the frame visible. In all JRE's I have ever used, it is made visible synchronously. However Apple's new 1.4.1 JRE does not do this. It seems that the frame is not ...
|
| how to automatically scroll down a jscrollpane ? | 18 Sep 2003 17:45 GMT | 8 |
I have a JTextPane inside a Jscrollpane. How to do to automatically scroll down the text when adding text ? Thanks for your help Fred
|
| JTable fireTableRowsUpdated looses editing focus | 18 Sep 2003 11:42 GMT | 3 |
When I as a user are editing a cell in a JTable and the data in another row is updated from "outside" I loose my editing. This seems to be caused by the method call "myTableModel.fireTableRowsUpdated()" eventhough the my editing row is
|
| How to mantain the TAB order in my application ? | 18 Sep 2003 09:09 GMT | 1 |
How to mantain the TAB order in my application ? As setNextFocusableComponent is being depricated i don't want to use this. i want to use FocusTraversalPolicy for maintaining the TAB order.
|
| how to intercept double-click in JList ? | 18 Sep 2003 08:53 GMT | 6 |
I have a JList (and DocumentModel) I want to perform an action when i double click on an item of the list. How to do that ? Thanks
|
| how to know runtime JComponent size | 17 Sep 2003 21:18 GMT | 1 |
I need to know the size of a JComponent and, knowing that, perform some calculations. Obviously i can't get it during interface initialization because layout has not been performed yet. Where can i get that size being sure that layout has been performed and all sizes are in place?
|
| select JMenu item | 17 Sep 2003 16:28 GMT | 2 |
I want to dynamically select a menu item when the frame on which the menu is contained gets the focus. I'm not sure how to go about this. Can anyone point me in the right direction?
|