| Thread | Last Post | Replies |
|
| Handling exceptions in SwingWorker | 28 Feb 2007 10:23 GMT | 5 |
I didn't find any information on this subject. Let's assume that I have an exception while running my background method, what are my available options : 1. Handle the exception from within the background method, sometimes
|
| JList as Jtable Render and editor | 27 Feb 2007 06:01 GMT | 1 |
I am using Jlist as Table Render And Editor and run in to some strange selection behavior. Scenario: Jtable has 1 row and 2 columns.
|
| Ok, so where's the FM? | 27 Feb 2007 02:18 GMT | 5 |
I wish to deflect future RTFM responses. Please don't point me to the java API specifications; I know where that is, and it doesn't constitute as an FM; it's messy and there's no easy way to find exactly what you need, unless you happen to know the
|
| Creating JTextArea on main window of app ? | 26 Feb 2007 10:07 GMT | 5 |
I'm trying out a simple gui. I'm trying to create an text area to allow me to display some text from inside the app if a menu item is clicked. I think JTextArea will do the job, but I'm having problems making it appear. The code to add to my container is
|
| move four balls in four differnt directions | 26 Feb 2007 08:48 GMT | 3 |
I have to make a small game using swing in which i have to move 4 balls starting from to four differnt direction like east west north south and then back to center using canvas. i am new swing plese help me. i need it very urgent plz help me.
|
| Using SwingWorker with user interaction | 25 Feb 2007 04:50 GMT | 2 |
I have a main GUI which uses a SwingWorker class in order to dispatch a lengthy operation, this lengthy operation is required to update the user interface, something that can be done quite easily using publish method,in addition I need to retrieve keyboard clicks which also
|
| Displaying Images | 24 Feb 2007 23:54 GMT | 4 |
Hey, All! I'm writing a rather complex GUI program using Java 6 and NetBeans IDE 5.5. My project is coming along sharply, but I'm getting hung up on the simplest of concepts.
|
| frames from an applet | 24 Feb 2007 14:49 GMT | 1 |
The aim is to write some code so , starting from an applet, the user can a make a choice (by radio buttons and an OK button), to let pop up different frames. Hereby my (simpified) code. What's wrong, no way to generate a frame?
|
| Removing "All Files" option from FileType of JFileChooser | 23 Feb 2007 17:21 GMT | 4 |
How to remove "All Files" option from JFileChooser? OR How can i diable the selection of file type of All FIles? I want to select only image files form the JFileChooser. How can i implement this feature?
|
| Listeners Firing Too Often | 23 Feb 2007 15:58 GMT | 2 |
I am developing a GUI (in Java, of course) that has a JTree on the left hand side of the window (similar to Windows Explorer or something like that) and on the right hand side the user can open various property windows to edit the items in the JTree.
|
| Javas 'Wings' : Swing? | 22 Feb 2007 18:44 GMT | 1 |
Short question: Can I use Javas 'Metal Style' also in AWT? As I've understood it, it's only when I use Swing, that I have this special Java-style. Why isn't it in AWT too? -Maybe it's just because that Swing is
|
| Upside down pyramid JTree? | 22 Feb 2007 09:58 GMT | 2 |
Currently when you construct a JTree, it is a pyramid tree (root on top, branch nodes on bottom). Is possible make JTree upside down pyramid tree (root on bottom, branch nodes on top)?
|
| Refreshing a GUI | 21 Feb 2007 17:18 GMT | 7 |
i have created a Jform , n in it i have a Jtree. now in Jtree i'm displaying the names of my friends. Theres also a function to add more frineds to the list . but i dont know how to dynamically refresh the list to display those updated names in the tree...
|
| Customizing the JTabbedPane to mimic Eclipse toolbar addition | 21 Feb 2007 15:57 GMT | 3 |
One thing I really, really want in Swing is this: http://www.osrmt.com/downloads/temp/usability_want.png specifically the context sensitive placement of the toolbar and menu access in relation to the tabs i.e. same level (vital to preserve
|
| how to draw sth on a Panel permanently? | 20 Feb 2007 22:39 GMT | 2 |
I need to draw sth to a Panel in an action, for instance Graphics g = palCanvas.getGraphics(); g.setColor(Color.cyan); g.fillPolygon(p);
|