| Thread | Last Post | Replies |
|
| Who can resist a compilable example? - JComboBox | 05 Sep 2004 10:28 GMT | 5 |
Sorry to blatently sensationalise my post, for once I'm in a hurry. Here is a short compilable example that illustrates my problem. To sumarise, I require the combobox to change its preferredsize as the source for BasicComboBoxUI indicates it should when fireContentsChanged() is
|
| GUI: Handcode or Automate? | 05 Sep 2004 04:11 GMT | 3 |
Questions: 1. Whats the current percentage of people hand coding Java GUI versus using automated tools to generate GUI? 2. What program do people recommened to develop a quick gui without the
|
| How to "kill" JFrame? | 04 Sep 2004 09:44 GMT | 1 |
I create JFrame from my main JFrame and want to "kill" it, so when I press the button which create it again, that I get new one. How ?
|
| Setting the ForeColor of a JPanel | 03 Sep 2004 23:49 GMT | 5 |
I'm writing a simple Swing Application. The main frame of the program contains a panel and a button. What i want to do is to draw a red line on the panel when the button is pressed. I want to do this without clearing the current contents of the panel.
|
| change color of jList element | 03 Sep 2004 18:23 GMT | 4 |
is there a way to change the foregroundcolor of a single line in a jList? thanks Bernd
|
| setLocation and setVisible for JDialog | 03 Sep 2004 16:06 GMT | 2 |
I have a problem with a JDialog that I'm trying to have appear on top of a Frame. I'm clicking a cell in JTable inside my JFrame, and I want the dialog to appear right below this cell.
|
| Expanding JTextArea depending on text inserted | 03 Sep 2004 15:41 GMT | 5 |
I want a JTextArea to always be 250 pixels wide (to keep a FlowLayout the proper length) but also be able to expand in the y direction as large as possible, depending on the size of the text inserted. Small text, short box. Lots of text, long box. I don't want a scrollbar or
|
| best lookandfeel / SWT | 03 Sep 2004 15:39 GMT | 10 |
currently I am eveluating some look and feels (see for example http://www.javootoo.com) and I was wondering what user people like best. So, some recommendations?
|
| Detect value when dragging JSlider | 03 Sep 2004 11:17 GMT | 1 |
How can I detect the current value of a JSlider when I am dragging the knob? What event/listener I need to catch/use? Thanks
|
| WYSIWYG html-editor? | 03 Sep 2004 07:10 GMT | 1 |
I'm looking for input on what it would involve to build a reasonably featured html-editor component. This thing would eventually end up in an applet, used for inserting content in pre-made html-templates which we'll send out as html mail.
|
| Many Frames | 03 Sep 2004 02:17 GMT | 2 |
We're going to be developing a large app which will contain over 100 screens for the user. Initially we thought that this would mean many JFrames (i.e. each screen is a JFrame). Talking to a Sun consultant this was advised as a bad idea as JFrames are
|
| Swing memory usage in J2SE 5.0 RC? | 02 Sep 2004 17:20 GMT | 4 |
I just downloaded the J2SE 5.0 Release Candidate and I'm trying out some of my older Swing applications[1]. Much to my dismay, the memory usage is quite a bit higher. For instance, one application that used 20Mb RAM at startup now uses 25Mb at startup. (Checked through Windows Task
|
| JComboBox - dynamic updates to preferredSize | 02 Sep 2004 13:35 GMT | 11 |
My model class implements ComboBox model and extends AbstractListModel I don't want to use DefaultComboBox Model because I need to setData in one go without firing events for every row of data added. I set the model for the JComboBox view once, and am hoping to rely on the
|
| Extending JEditorPane or related classes/interefaces? | 02 Sep 2004 12:53 GMT | 19 |
I am not certain if I need to extend JEditorPane, or a related class (maybe an editor kit or HyperlinkListener), or if what I am looking for is already there and I just missed it. Here is the functionality I am after. I want to create an applet that opens
|
| JTextField Problem | 02 Sep 2004 08:40 GMT | 3 |
I have 2 JTextField, text1 and text2. The user type e.g. "abc" in text1. When the user tag to JTextField text2 or move the cursor to JTextField text2, "abc" will appear in text2.
|