| Thread | Last Post | Replies |
|
| SWT and Applets? | 31 Mar 2005 19:49 GMT | 2 |
I wonder if it is possible to use SWT in an applet. Does anybody know something about this (if possible with a good link which I coudln't find with google :-) ? Bernhard
|
| Recommend a good web GUI layout and design book? | 31 Mar 2005 17:41 GMT | 1 |
I'm looking for a good book on web site layout and design. Can anyone suggest something for someone who's familiar with application programming and layout, but want's to move to the web? I'm hoping to find something practical covering everything from what
|
| setting background color in a disabled JComboBox | 31 Mar 2005 16:46 GMT | 1 |
I need to set the background color of a JComboBox when the combo is disabled. JComboBox.setBackground() works when the combo is enabled, but it doesn't when the combo gets disabled. I tried defining a renderer, but the renderer mainly controls the
|
| refresh | 31 Mar 2005 14:30 GMT | 1 |
Hey, I'm wondering if any one can give me some advise. Im writeing an applet which I set up all GUI components on a border laylout. throught init(); i.e
|
| opening RTF and TXT files | 31 Mar 2005 13:17 GMT | 1 |
i am making a wordprocessor that can open .RTF files. is their any way i can make it open .txt files also this is the code for opening RTF files Action actionOpen = new AbstractAction("Open",iconOpen){ public void actionPerformed (ActionEvent e)
|
| Programatically deselecting a JList | 31 Mar 2005 03:28 GMT | 1 |
I need to deselect any selection(s) made on a JList, but through code. Doing this with : ListModel model = new MyListModel(); JList list = new JList(model);
|
| FontFamilyAction on JEditorPane | 31 Mar 2005 02:36 GMT | 3 |
I have a JEditorPane which I use to edit html text on. I want to be able to select a range of the text and make changes to the font/fontsize and so on. It works with underline, bold, fontsize but strange enough it does not work with the FontFamily.
|
| Border layout and Jlist | 30 Mar 2005 17:42 GMT | 9 |
I have the following structure of components in a internal frame: JInternalFrame (BorderLayout) - JPanel (BorderLayout) (BorderLayout.WEST) - JScrollPane (BorderLayout.CENTER)
|
| JFrame filling / refreshing problem | 30 Mar 2005 15:47 GMT | 1 |
Hi i'm currently working on an application's GUI. At the beginning i'm asking the user to enter a code. If it's right i'm loading some sort of encrypted database. This operation takes a few seconds and I would have liked to show a splash
|
| JInternalFrame query | 30 Mar 2005 13:59 GMT | 4 |
I am developing a program where I use JInternalFrame(s). In each of the JInternalFrame(s) I have a text field that is updated every now and then. If the JInternalFrame is minimized, is there a way to make the iconized JInternalFrame blink when its contents is changed?
|
| Wait cursor problem | 30 Mar 2005 06:33 GMT | 3 |
I am using JDK 1.4.2 and have a JFrame which pops up a dialog to do some lengthy processing. I am using this.getGlassPane().addMouseListener( new MouseAdapter() {}); this.getGlassPane().setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
|
| Vertical Alignment of Multiline HTML JCheckBox | 30 Mar 2005 03:47 GMT | 1 |
I created a JCheckBox. I made it multi-line via HTML. I am unable to vertically align the checkbox part with the text part. Using HTML, I can't get styles or anything else to push the text up.
|
| Look And Feel - ButtonUI | 30 Mar 2005 01:53 GMT | 3 |
I am new to java look and feel but have managed to do some basic stuff myself. I have created my own look and feel class which I change default colour etc etc.
|
| new line in a Label or a Button | 29 Mar 2005 18:39 GMT | 5 |
It is possible, in awt, to have a phrase divided in more of one line? I want display in a Button this: save with
|
| JTable Problem (table does not show rows and columns) | 29 Mar 2005 15:01 GMT | 3 |
What the table is suppose to do. - Load information from a database - put all the values in the first column - in the second column put combobox (cell editor with numbers 1-12)
|