| Thread | Last Post | Replies |
|
| JTabbedPane with Icon | 06 Jun 2005 12:22 GMT | 2 |
I have a JTabbedPane with three tabs (though the number of tabs shouldn't be the problem). I use only an ImageIcon per tab, with no text. I did: m_JTabbedPane.addTab(null, imageIcon[i], panel[i]);
|
| RAD Tools | 06 Jun 2005 09:34 GMT | 6 |
Are there any decent RAD tools for JFC development that make life easier when starting up a new GUI based application? I'm hoping to find a freeware or shareware type program. Thanks,
|
| swing repainting issue | 06 Jun 2005 07:58 GMT | 3 |
I've recently resurrected a very old swing-based project I started a long time ago (JDK 1.1). To catch up with the times, I'm tryng to migrate to JDK 1.5. The main application GUI is capable of launching other GUIs (for setting preferences, etc). The issue I'm seeing is
|
| Error handling java GUI | 06 Jun 2005 04:36 GMT | 1 |
Let's say that I'm reading the inputs from a TextField widget: JTextField jt = new JTextField(20); String text = jt.getText(); if ( !text.equals("OK") )
|
| Preventing combo box item from changing | 06 Jun 2005 04:26 GMT | 2 |
I have a JComboBox where, if the user selects a different item, the application checks for unsaved data, and if necessary, asks the user whether to save it. Yes & No responses save or discard the
|
| Making a JPanel resize to its components accumulated size | 05 Jun 2005 18:21 GMT | 3 |
is there a way to size down a JPanel to fit the sizes of its internal components? I don't want it to stretch to fit some specific area. Thanks in advance.
|
| Error Help | 05 Jun 2005 06:15 GMT | 1 |
I am doing a custom document in which i am always getting an error at the point when i want to use the java HTMLReader class. The compiler says something about an enclosing instance and i really have no idea what the compiler means.
|
| ButtonModel.isPressed() =true How do? | 03 Jun 2005 23:07 GMT | 5 |
I got an array of JButtons. Each Button has to trigger a movement through a map-area while IsPressed=true. In words so long the button is pressed the map has to move in the defiend direction.
|
| A first approach to GUI | 03 Jun 2005 22:13 GMT | 7 |
I'm planning to develop quite large application in JAVA soon. I'm rather experienced C/C++/C#/Delphi programmer, but I've chosen JAVA because of cross-platform features (the program must work in Windows as well as in Linux), and that's the easiest way I suppose.
|
| Adding a JList to a MenuItem actionPerformed | 03 Jun 2005 20:55 GMT | 1 |
I am using the Visual Editor 1.1M1 from the Eclipse Project and would like to add a JList to an existing MenuItem - actionPerformed. I can drag the JList entry from the Palette to the Java Beans window, however, VE always seems to be unable to insert this JList to the
|
| Avoid "TAB" in JTextArea | 03 Jun 2005 18:26 GMT | 4 |
what is the correct way in >1.4 to avoid the TAB key being processed as a tab in JTextArea but pass the focus to the next component instead? I tried something like this but that doesn't seem to be nice code - besides it doesn't work either. :-)
|
| JComboBox as a table cell editor | 03 Jun 2005 18:01 GMT | 5 |
Hey all, I have a combo box that I am using as a table cell editor. Well, it's not the swing kind of table but rather a com.klg.jclass.cell.editors.JCComboBoxCellEditor from a third-party package
|
| Loading html page in swing | 03 Jun 2005 11:33 GMT | 2 |
I want to load html page which contains javascript code like :- <html> <script language="javascript"> function fun()
|
| javascript to Applet call, Browser refresh issue | 03 Jun 2005 11:26 GMT | 3 |
Following are the details of the scenario 1) Browser opened with multiple processing option to the user. 2) User selects some of them for processing and call process. 3) here we have used javascript call to send for processing to the
|
| Right aligning component in container | 03 Jun 2005 09:48 GMT | 3 |
What's the best way of right-aligning a component (in this case, a JComboBox) in a container (in this case, a JMenuBar), when other components in the container (in this case, JButtons) are left aligned?
|