| Thread | Last Post | Replies |
|
| Java swing GUI - GNOME refresh issue. | 31 Aug 2008 10:52 GMT | 3 |
I am a newbie into java swing and have an application written in swing and awt. I have compiled this application on Linux and when I run this application the toolbars and menubars do not appear when the GUI appears. If I resize the mainframe, the toolbars/menubars start
|
| JTree within JScrollPane: Update visible rect on model change events | 31 Aug 2008 05:45 GMT | 4 |
I have the following requirement: I have a JTree placed within a JScrollPane. The model of the JTree is now updated every other second. But the additional entries are added at the top of the Model (index is nearly always 0).
|
| JInternalFrame - Title Bar | 27 Aug 2008 20:24 GMT | 4 |
Is it possible to remove the title from a JInternalFrame ?
|
| JTable Tab Focus problem | 27 Aug 2008 13:30 GMT | 2 |
Hi there, I know this problem has propped up all over the place but the answers have not helped me to solve my problem entirely. I think this is because with each change of data in any cell in my table, the entire table needs to be reinitialised - that is, the data model is
|
| recreating timesharing IO | 26 Aug 2008 18:37 GMT | 7 |
I was looking through some old pascal line printer listings from <mumble mumble> decades ago, and thought I'd try to recreate an old game I wrote in Java. Java, of course, doesn't do WRITELN and READLN from the terminal, so I created a jframe with a jscrollpane
|
| ComboBox | 26 Aug 2008 16:51 GMT | 2 |
I have a comboBox .whenever i click on it the dropdownlist shows up but on clicking on any item in the list the clicked item gets selected and the list disappears.I want the list to remain so that i can scroll down through the lictby clicking on any
|
| ultimate chalenge in JComboBox | 25 Aug 2008 06:40 GMT | 3 |
vaidhu wrote: hi how do I change the font of individual combo box items, say if I have 5 items in a combo box , how can I have each of them in a different font ? I
|
| UIDefaults | 22 Aug 2008 10:03 GMT | 4 |
Where I can find the key names of the UIDefaults hashtable? Some examples use keys like "Label.background", is there a comprehensive list? Thank you
|
| textarea and textListener | 22 Aug 2008 10:00 GMT | 1 |
i have posted this before fifteen days i am posting again.. pls help me i am doing a project i am struggling because this i have a JTextArea ta; in a JFrame class and i have implemented TextListener
|
| Simple JComboBox query | 21 Aug 2008 13:38 GMT | 2 |
how do I change the font of individual combo box items, say if I have 5 items in a combo box , how can I have each of them in a different font ? I can do combo.setFont(Font f) but is there any way I can set the font of the combo Items ? can anyone help me out please?
|
| Nimbus oops | 21 Aug 2008 01:48 GMT | 13 |
I discovered I had to manually plumpen up JSpinner to make it have enough space to see the value when I used the Nimbus L&F. Other components may have similar trouble. I found I had to widen a JTable column, though I can't figure out why.
|
| Java design issue relating to gui. | 19 Aug 2008 11:19 GMT | 4 |
I have Swing app that allows the user to select a file, which in turn, will be processed by a "worker thread" that will read the file, and process accordingly. The gui and the "worker" thread are within seperate classes( and source
|
| BoxLayout annoyance | 18 Aug 2008 08:44 GMT | 3 |
Why would this line give me an error about sharing the box layout. I can't possibly be saving it. I don't even have a reference to it. frame.setLayout(new BoxLayout(frame, BoxLayout.PAGE_AXIS)); I've run into this before and I can't seem to remember what the solution
|
| Keyboard focus getting lost | 18 Aug 2008 00:34 GMT | 5 |
I have an applet that loads a component that uses any number of other components internally. When it is first running the component gets the KeyPressed events that I want it to, but then after doing anything with the mouse, it no longer gets these events. I think that the focus ...
|
| Worker Threads and EDT | 17 Aug 2008 12:32 GMT | 12 |
I have some legacy code to spruce up, and it breaks one of the cardinal rules of swing: it updates the UI with worker threads (not the EDT). Finding all of the potential culprits is easy, but there are hundreds of cases which could be problematic, and the vast majority are fine. ...
|