| Thread | Last Post | Replies |
|
| JMenu disappears after dismissing JOptionPane | 31 May 2004 23:12 GMT | 3 |
I have a JMenu, the top JMenuItem of this JMenu fires a JOptionPane. After dismissing the JOptionPane and returning to the JMenu: I click on the JMenu to activate it. The Menu pops up as normal.
|
| Newbie: What's wrong with my code? | 31 May 2004 21:52 GMT | 3 |
I try to create a JTabbedPane object, but it does not work. What is wrong?? Mike ======Codelist.java======== import java.awt.*;
|
| Connection Problem with MySQL | 31 May 2004 07:38 GMT | 3 |
I use Suse Linux, and there i run a mysql database. I have updated my system to SuSE 9.1 and since then the connection over jdbc seems not to work anymore. My own java programs throw a 'connection refused' and even the jboss i'm running too with mysql says the same thing. I can ...
|
| JComboBox limit to list | 31 May 2004 07:23 GMT | 5 |
How can I make my editable Combo box limited to the items in the list (like when using the LimitToList property in MS Access)? Not just making it highlight matching items in the list, but also refusing input that doesn't match the list entries?
|
| Have I understood Tree model? | 31 May 2004 00:05 GMT | 4 |
Please help me understand the correct architecture of using the Tree Model. I have a database which I need to query and populate the jtree on the fly.
|
| AWT ScrollPane | 30 May 2004 21:33 GMT | 19 |
Is there any way I have missed to use an AWT ScrollPane and have just vertical or just horizontal scrolling? Going to JScrollPane makes me lose unsigned Applet cut and paste.
|
| Using a JList with a cell renderer within an applet/cell renderer not working | 30 May 2004 05:54 GMT | 2 |
I have a cell renderer for a JList that is supposed to render the foreground color in blue, and also insert tabs into the lines. When this code is changed to run as an application, the cell renderer performs as expected. When the code is run as an applet, the cell renderer has no ...
|
| JScrollPane scrolling down problem. | 30 May 2004 00:09 GMT | 5 |
I'll first sketch the situation of my problem. I'm writing an IRC-like program, and we're talking about the message view. The messages are shown by a JTable, which is made scrollable using a JScrollPane. The JTable uses custom renderers to allow long messages to be line-wrapped.
|
| JFormattedTextField not retaining input. | 29 May 2004 20:42 GMT | 1 |
When I enter keyboard input into the JFormattedTextField object, the input is not being retained when the field has lost focus. I am using SDK/JRE 1.4.0, Windows XP Professional. import javax.swing.*;
|
| JTextArea copy/paste | 29 May 2004 19:47 GMT | 7 |
I have discovered that JTextAreas behave differently from TextAreas. You can select text, but when you hit Ctrl-C nothing happens. You can't copy the selection to the clipboard. I'm in an unsigned JApplet so I can't poke the clipboard myself.
|
| File organization - RULES OF THUMB | 29 May 2004 18:12 GMT | 2 |
What is a the best way to organize files when programming a java GUI? Sorry if this is a trivial question but I am rather new to programming and would like some input from this group. Right now, I have one large file with the frame, panels, widgets and
|
| Java Tabbed Pane problem | 29 May 2004 17:08 GMT | 1 |
Okay I've spent the last 3hrs trying to figure out why my tabbed panes are acting strangely, but have had no luck. So hope someone here can help me out. Basically i have a class that produces my window,meubar, etc.. this class
|
| Metal theme in an applet. | 29 May 2004 13:25 GMT | 13 |
I have a class that derives from DefaultMetalTheme (see below). I call MetalLookAndFeel.setCurrentTheme to install it. This works fine in a standalone program, but not at all from an applet! No exception, no nothing--it simply doesn't work.
|
| Question about the concat() | 29 May 2004 01:09 GMT | 4 |
I have a question about the concat() method. I do not see it working, that is, concatinating strings to a string. I have to be doing someting wrong. here is the piece of code: try {
|
| Animation on a JPanel | 29 May 2004 00:15 GMT | 1 |
I'm trying to create a file transfer window that shows a file moving from a client computer to a server. I have an applet that pops up a JFrame from a user action. The JFrame is using a BorderLayout and has a JLabel at BorderLayout.NORTH, a
|