| Thread | Last Post | Replies |
|
| messagebox | 11 Feb 2004 22:32 GMT | 3 |
Where can I find message box class for java ? regards John
|
| theory question | 11 Feb 2004 18:43 GMT | 2 |
I don't get why my JComboBox or any other special graphic element of the GUI should be a final variable. I have final TableModel, ComboBoxModel, ComboBox, but not JButton. I tried without making them final, and it returns an error.
|
| How to capture input of JTextField | 11 Feb 2004 16:53 GMT | 7 |
I want to be able to capture the input of a JTextField and do things based on what key was pressed. Basically this is for a textfield that will allow the user to type in a value in pence, and for the number to come up in GBP in a "£x.yz" format. I've looked at Inputmap and
|
| how to get no selection for 1 column of a jtable? | 11 Feb 2004 14:41 GMT | 1 |
Hi, sorry if this is obvious, I've been struggling with it for a few hours now and am ready to say 'uncle'. I've got a JTable with columns 1-x filled with data and column 0 has a set of labels describing the data in it's row. I want to make it so you cannot select any cells in
|
| how to learn java | 11 Feb 2004 14:24 GMT | 2 |
$)ANRJGR;8vJavaPBJV,OkQ'Q'Java#,D\7qV8LuC{B7
|
| How to disable a JInternalFrame ? | 11 Feb 2004 14:21 GMT | 1 |
I would like to know if it's possible to disable a JInternalFrame in an application. My application is a JFrame in which I have a JMenuBar and a JDesktopPane with 2 JInternalFrame. I can switch with a menu Window between my 2
|
| keystroke navigation between JPanels | 11 Feb 2004 11:26 GMT | 2 |
I have 4 JPanels inside JFrame. I'm using GridBagLayout. I can't find any references how to navigate between those JPanels using keystrokes. thanx kastis
|
| JList scrolling | 11 Feb 2004 11:22 GMT | 2 |
I have a JList contained within a JScrollpane container and am using the following code to ensure the last item in the list is always visible. DefaultListModel model = new DefaultListModel(); JList list = new JList(model);
|
| how to learn java professionally | 11 Feb 2004 10:51 GMT | 1 |
I am a new guy to java.Who tell me how to achieve my goal 3x
|
| Please help: How to get a Graphics object into a JFrame? | 11 Feb 2004 10:42 GMT | 6 |
Good day everyone. I have an graphical object that can draw itself given a Graphics g. How do I draw it inside a JFrame? Is this the same as saying "create a panel inside the JFrame that provides a Graphics g object for drawing"?
|
| swing and threads | 11 Feb 2004 09:09 GMT | 1 |
Hello I am trying to undertand the articles abut swing and threads at java.sun.com. In my following testcode I have one thread that si doing the work (a simple loop) and another thread that si doing the update of the dialog to show the progress of the working thread. My fist
|
| GridBagLayout: can not make a component bigger | 10 Feb 2004 20:52 GMT | 16 |
I'm trying to program a small game applet (of course ;-) and am using GridBagLayout (JDK 1.1) to place my components. My problem is that the component in the top left corner which will represent the playing field is too small.
|
| Trying to create a multipane JSplitPane | 10 Feb 2004 19:44 GMT | 1 |
I've put together a component that allows for an arbitrary number of "layers" to be added to it which can each be resized with a JSplitPane divider. To do this, I just keep adding a new JSplitPane to the top component of the last JSplitPane added. Everything works great except for
|
| How to best remove F8 functionality from a JSplitPane | 10 Feb 2004 18:57 GMT | 6 |
I want to use F8 as an accelerator for a JMenuItem. Right now F8 is used by default as a way to move to the splitter bar on a JSplitPane. So pressing F8 does not perform the action on my menu item. So I want to prevent F8 from working with the JSplitPane. I can do this with
|
| Gridbag layout resizing components | 10 Feb 2004 16:54 GMT | 5 |
I have a panel, containing two other panels (large one on the left, smaller one on the right) They all have gridbag layout Now, for the two child panels: the panel at the right must have a constant width and must not resize, letting the larger panel at left
|