| Thread | Last Post | Replies |
|
| Swing in Applet | 31 Mar 2004 21:08 GMT | 2 |
We have an application that is currently implemented as a standalone app using Swing. We wanted to move that app to Web. Two possible ways discussed were: o Wrap the swing app in an applet.
|
| Temporarily disabling of the component update | 31 Mar 2004 21:06 GMT | 1 |
is it possible to temporarily disable that a component updates itself on the screen? I'm building up a JTree step by step (in a timer), and each time an element is updated, the screen updates. But I want to create the entire tree and then update the screen.
|
| html links within an applet | 31 Mar 2004 15:51 GMT | 4 |
Is it possible to embed a hyperlink in a Swing based applet, so that clicking on this link would open a corresponding site in a new browser window? Thanks in advance
|
| bring window to the front | 31 Mar 2004 15:09 GMT | 2 |
Is there a way on Windows to bring a JFrame to the front / in front of other windows? I've tried without success: requestFocus()
|
| GUI update and threads | 31 Mar 2004 10:11 GMT | 2 |
I use Observer-Observable to update my GUI when desired (setChanged, notifyObservers). However, I sometimes get an exception irregularly: java.lang.ArrayIndexOutOfBoundsException: No such child: 4 at java.awt.Container.getComponent(Container.java:237)
|
| Multiple actions for a single key press | 31 Mar 2004 08:59 GMT | 1 |
I'm writing an UI that uses F1-F10 for its actions and have set up key bindings for each of them. One particular action requires that the immediately following input (F1-F10) do a new action in addition to its regularly assigned action, but I'm having a devil of a time
|
| Real Time Updating from a text file | 30 Mar 2004 16:29 GMT | 2 |
I have a requirement to read from a text file into a GUI. Basically I would like to have the equivalent of a 'tail -f file' running in the top portion of the GUI. I have included the code that I am using, which is a kludgey modification of the ListSelectionDemo.java example.
|
| JCombobox in JPopupMenu (NullPointerException) | 30 Mar 2004 16:13 GMT | 1 |
i want to display a jcombobox withhin a jpopupmenu. ---------------------------------------------------------------------------- ----- JPopupMenu menu = new JPopupMenu();
|
| JTable cellEditor and Renderer | 30 Mar 2004 16:11 GMT | 1 |
I have a JTable that contains cells which need to be JTextPanes with the StyledDocument set to a custom one that I have written. I have created a cell editor and renderer that does this but unfortunately this only creates one instance of an EditorTextPane (subclass of JTextPane) for ...
|
| Center Text in a JTextArea | 30 Mar 2004 16:00 GMT | 1 |
How do you center multiple lines of text in a JTextArea? Thanks in advance. Guy Sussman
|
| JFrame Resize problem | 30 Mar 2004 14:08 GMT | 1 |
I am writing a Java UI and have a frame that initially is small but after the user chooses the dimensions a table and some buttons are added. However if i set the window to initially be small and then grow the new sized window seems to use to old window size for displaying until i ...
|
| threads and Window.dispose | 30 Mar 2004 10:31 GMT | 7 |
I'm working on a large java app which was written by someone else. I'm also a java newbie. My problem is that the application hangs on Mac OS X with the 1.4.2 platform, it did not hang on 1.3.1 and it does not hang on Windows.
|
| Graphics Ques & Array List Wrapping | 30 Mar 2004 08:03 GMT | 3 |
Hi im turning to you guys for two trivial questions, the first, I am drawing a line using g.drawPolyline() how can I make each line a different colour, the g.setColour() allows me to set the colour of the entire canvas as the repaint method is required to show a newly drawn line ?
|
| SwingWorker doesn't work | 30 Mar 2004 07:44 GMT | 6 |
I'm trying to use the SwingWorker class in a ListCellRenderer with no luck. My ListCellRenderer loads a scaled down JPEG file, this means my application locks while loading a JList of many items. So, I thought on using that SwingWorker class
|
| Why TextPane setFont() always with Negretta font type? | 30 Mar 2004 03:43 GMT | 1 |
I set the Font in my textpane and it always append with Negretta fonttype. How do I get rid of that?
|