| Thread | Last Post | Replies |
|
| jdk1.6.0 vs jdk1.6.0_04 | 17 Jan 2008 20:31 GMT | 1 |
I have both jdk1.6.0 and jdk1.6.0_04 on my PC. Can I remove jdk1.6.0 and not affect any programs on my PC? Thanks. Chris
|
| How to create a command prompt in java ? | 17 Jan 2008 18:18 GMT | 1 |
I want to create a command prompt in java. I have a set of functions in an application, the idea is to have the user input certain commands on the prompt, based on which certain funcations can be called. To make this more clear, suppose I have two functions for matrices add
|
| Using JComboBoxes in a JTable | 17 Jan 2008 10:23 GMT | 4 |
I am trying to make a list of JComboBoxes. My first try was to put the JComboBoxes in a JList but my solution did never really work. I managed to get them in the JList, but I could not interact with the JComboBoxes.
|
| Launching a shell script from Java | 17 Jan 2008 09:48 GMT | 2 |
What's the trick to launch a shell script from Java? I would have thought the System class would have had this, but does not appear to. Surely, Java would be capable of this, right? Mark
|
| Trying to put a background image in a JFrame | 15 Jan 2008 12:20 GMT | 13 |
Trying to put a background image in a JFrame I have looked this issue up and found that extending JPanel and specifying a paintComponent() is one possibility. I haven't tried this yet (and a different task popped up for today).
|
| How to save my graph in pdf file | 14 Jan 2008 14:56 GMT | 1 |
Everything is on a extended class of JPanel. Thanks in advance.
|
| UIDL: User Interface Description Language. | 14 Jan 2008 09:38 GMT | 2 |
the initial release of a new open source project, UIDL, has just been released through Google code, at http://code.google.com/p/uidl/. UIDL is an acronym for User Interface Description Language. The goal of the project is to create support for a universal client which allows ...
|
| Choppy refresh problem with JLabels and JMenuItem accelerators | 14 Jan 2008 02:49 GMT | 11 |
I've got a tile based game (a roguelike) which uses a grid of JLabels each displaying an ImageIcon to display what's happening within the game. I want to use keyboard input, so I setup JMenuItem instances each with an accelerator for a different key. When a key is pressed,
|
| How can i change the background color of a visible JDesktopPane | 12 Jan 2008 22:47 GMT | 9 |
I tried this things but nothing happened -> getDesktopPane().setBackground(color); list = Tool.findComponent(getDesktopPane(), JPanel.class); for (int i = 0; i < list.size(); i++)
|
| TableCellRender puzzle | 12 Jan 2008 13:33 GMT | 1 |
Below is a fairly simple TableCellRenderer for displaying an enum as an Icon. That works fine. But I added a wrinkle, changing the background colour depending on whether the row is selected. No background colour changes happen, even though isSelected is true
|
| Custom Dynamic Dialog | 11 Jan 2008 23:28 GMT | 3 |
I'm trying to understand how to create and use dialogs. Could someone explain how to build a swing dialog that would show up to 10 different buttons, that can change dynamically based on some state? Only by clicking one of the buttons should close the dialog. I don't know if
|
| ToolTipText pop up far far away from mouse pointer | 08 Jan 2008 00:54 GMT | 1 |
Usually when you setToolTipText("Popup tool tip text"); The pop up tool tip text message will near by the mouse pointer. But I got a situation some time
|
| update after modifying the JList | 07 Jan 2008 18:25 GMT | 5 |
I need to modify the content of the JList on the fly. So, when I need to update the JList, I rebuild the list model and re-initiate the JList by using new operator. I need to resize the JFrame manually to see the new JList. How should I program it to show the new JList right after I ...
|
| issue with printing using jdic | 06 Jan 2008 21:01 GMT | 1 |
I have a program which use JDIC webbrowser to display an html page. the webbrowser.print() has been called to print the page. The page is displayed properly on the window. But the printing does nopt happen. No error messages also. Any help will be greatly appreaciated.
|
| Newbie:Please suggest ebook or any reading material for creating rich clients interfaces in java | 06 Jan 2008 00:15 GMT | 4 |
While googling I found a very interesting presentation on creating amazing GUI's in java on this link - http://developers.sun.com/learning/javaoneonline/j1sessn.jsp?sessn=TS-3548&yr=20 07&track=2 . I was very much impressed and really want to read and learn more on
|