| Thread | Last Post | Replies |
|
| graph use....... | 19 Dec 2006 22:22 GMT | 6 |
First my code.... JPanel panel =new JPanel(new FlowLayout()); panel.add(sLabel); panel.add(sField);
|
| Windows Decoration Listeners? | 19 Dec 2006 17:37 GMT | 7 |
What I am looking to do is be able to click via a mouse (middle click, but that's not really that important) on the title bar of an application (which is essentially part of the window decorations) and have the application react a certain way. When using any of the mouse
|
| Transparent JInternalFrame Repaint Question | 19 Dec 2006 09:40 GMT | 1 |
I have a transparent JInternalFrame (background set to Color(0f,0f,0f,0f)) and on this I have a JScrollPane and on this I have a JTree. All items have clear backgrounds. On my JDesktopPane I have a JPEG for the background. What I am after is a way to repaint the
|
| closing a specific JFrame of several | 19 Dec 2006 03:29 GMT | 4 |
I have a JFrame that, when I click "new" in the menu bar, creates another JFrame like that of the first. It just runs the following code ... EventQueue.invokeLater(new Runnable() {
|
| JComboBox - add listener to the button press | 17 Dec 2006 14:58 GMT | 4 |
I added an action listener to the button of the JComboBox. This worked fine, until I changed the UI of the JComboBox to be MotifComboBoxUI. Since then the button is null and I couldn't find how to add a listener
|
| field and frame problem.... | 17 Dec 2006 08:49 GMT | 1 |
I guess the last problem i sorted out..now i have another one.... I have written a code for drawing a graph in the main class which includes code for textfield and a button named plot. My problem is i am getting the graph and textfield/button one at a
|
| help with GUI.... | 17 Dec 2006 08:17 GMT | 1 |
Hi All/all, I am new to java and just started GUI..I am having some problems with GUI .I want to draw 2 rectangles in a GUI which are white bordered...one below the other.I am not able to do so..I have written
|
| Two problems with tool bars under GTK look and feel | 14 Dec 2006 15:27 GMT | 1 |
I am using the FCS version of Mustang on a Fedora Core 6 machine with a kernel of 2.6.18 and KDE 3.5.5. I am experiencing 2 problems with the tool bar and GTK look and feel. 1. I don't know why but the tool bar buttons are way too wide and spaced too
|
| table with vertical header | 14 Dec 2006 11:24 GMT | 1 |
Is it possible to display the header vertically, i.e. on the left side we'll have the table header as a single column and each row displays the data for a particular column. Thanks in advance.
|
| Cross-platform development issue with PLAF classes | 14 Dec 2006 10:48 GMT | 6 |
I am trying to develop an application to run on both Linux and Windows so I need to use both the GTK look and feel and the Windows look and feel. However, it seems that the JRE's rt.jar does not contain the GTK classes on the Windows platform whereas the Linux platform does ...
|
| changing UserAgent string reported by queries from JEditorPane? | 14 Dec 2006 00:41 GMT | 1 |
How do I set the UserAgent string used by the underlying connection a JEditorPanel uses when it is rendering an HTML page? ie if my HTML includes
|
| Mouse position while drag&drop-operation | 13 Dec 2006 20:29 GMT | 2 |
Hi swing experts! I have the following problem: I want to move a custom Transferable via Drag&Drop from a JTree to a JPanel.
|
| JComboBox's drop-down list won't show | 13 Dec 2006 02:22 GMT | 2 |
Great, another problem... *can already hear the deep sighs* I've created a JComboBox with the very simple code: String[] items = new String[] {"item1", "item2", "item3", ...}; JComboBox comboBox = new JComboBox(items);
|
| Eclipse: Visual editor view vanished | 13 Dec 2006 00:02 GMT | 3 |
I'm sorry for asking such helpless questions here, but I'm completely out of ideas now. I created a visual class and designed the gui with the visual editor project. Well, this worked perfectly until, at some point, the class had
|
| Custom Title Bar | 12 Dec 2006 20:29 GMT | 2 |
Is it possible to write a custom title bar for a JFrame? For instance, instead of the typical XP background (solid blue), I could paint a custom picture? What about custom minimize, maximize and close buttons on the title bar?
|