| Thread | Last Post | Replies |
|
| No app frame for Java application | 20 Nov 2003 15:21 GMT | 12 |
I have several GUI-based Java (1.4.2) applications that I run under Win32. No problem. However, when I move that application to my Linux box (RH8.0) and rebuild, the applications no longer have a "main application frame" - no
|
| Wizard library | 20 Nov 2003 09:21 GMT | 2 |
I have been searching on the internet for a free wizard framework (preferably LGPL). I found several, but none of them satisfied my requirements. Some of them have no or poor documentation. Others simply don't allow you to
|
| How do I react to the cancel button of a JFileChooser? | 20 Nov 2003 07:49 GMT | 2 |
I'm trying to write some code that will take me back to a main screen when the user presses the Cancel button of a JFileChooser but I have not found a way to react to the Cancel button's clicked event. I added an ActionListener to the JFileChooser but I have no way of
|
| Issue with JTabbedPane Resizing | 20 Nov 2003 05:57 GMT | 1 |
I have an application that has 3 JScrollPanes (viewing 3 JTables) and a title for each table displayed in a tabbed pane (it is basically a summary tab). The JTabbedPane is in a JFrame. My problem is that I build a JPanel that has my 3 tables and 3 titles
|
| JTextFields, KeyEvents, and ActionEvents | 20 Nov 2003 02:04 GMT | 1 |
I'm trying to make a (subclass of) JTextField that fires an ActionEvent every time a character is entered (instead of when the Enter key is pressed). Firstly, I add an ActionListener so that a JLabel will spit out the
|
| Highlighter and Selection | 19 Nov 2003 16:47 GMT | 6 |
I'm trying to use highlighter. Here is my problem: ============================================================ import javax.swing.JFrame; import javax.swing.JTextArea;
|
| JFrame Title bar color -- in BasicLookAndFeel | 19 Nov 2003 16:42 GMT | 1 |
Hi does anyone know how to get the color of the title bar in an internal frame? When I create my own dialog and then get the color from the UIManager my dialog
|
| making a modal progressdialog with SWING | 19 Nov 2003 03:02 GMT | 23 |
for quite some time I am trying to make a modal Progressdialog that may be updated by another thread. COULD ANYONE PLEASE EXPLAIN TO ME HOW SUCH THING CAN BE DONE WITH SWING? AND MAYBE THREADSAFE ?
|
| Detecting focusLost Event in a JTable Cell. | 18 Nov 2003 22:27 GMT | 2 |
I have a JTable which validates the data entered into it.The user can navigate from one cell to another using the KeyBoard or using mouse. Once the user leaves a field say by hitting the Enter key the data
|
| Modal JDialog Components not Painting | 18 Nov 2003 16:27 GMT | 4 |
Hello, I'm writing a java app JDK 1.3 on my laptop and deploying it onto a PDA. Everything works fine on the laptop but on the PDA I get a paint/refresh problem on the modal JDialog.
|
| Embed Internet Explorer (IE) in a JFrame? | 18 Nov 2003 16:12 GMT | 3 |
Has anyone attempted to embed IE in a Java Swing app? Is so, how hard was it to do? Do you have any resources I could reference? Thanks, John
|
| Arrow keys / Cursor keys in a ButtonGroup with radiobuttons | 18 Nov 2003 15:59 GMT | 2 |
I am using swing on Windows Platform. On other windows-GUIs, radio buttons can be selected by the arrow or cursor keys. If one radio button has the focus, you just press the right or down key and the next one is selected.
|
| detecting column focusGained event in JTable | 18 Nov 2003 15:37 GMT | 6 |
Does anyone know how to detect a column change event in a JTable? I've tried setting the defaultCellEditor to a JTextField with a focusListener but that doesn't work. thanks in advance,
|
| Newbie, trying to change font on MessageDialog | 18 Nov 2003 07:34 GMT | 3 |
I'm pretty new to Java, so forgive me if I'm asking a stupid question. But I've researched this online, and the only reference I'm finding is with TextFields and TextAreas. I'm using a MessageDialog box for a simple "about the program" window,
|
| changing an int value across classes,kind of working :s | 17 Nov 2003 20:57 GMT | 3 |
Hi there, im using 2 classes for my program. base and gui. in base, i have set: int size = 5; and in gui, with the use of a comboBox, i have: if (jComboBox.getSelectedIndex()==2 ) {
|