| Thread | Last Post | Replies |
|
| paint(), repaint(), animation | 14 Dec 2004 15:56 GMT | 5 |
Forgive me if this is an asked topic but I couldn't find anything on this.... I am trying to do animation, say animate a vertical line moving from left to right... I've tried
|
| Problem in Paint method | 13 Dec 2004 22:09 GMT | 3 |
I am creating light weight button. I have given almost all support. But in application when user overriding paint method my component is not visible.
|
| Action - conceptual question | 12 Dec 2004 21:57 GMT | 3 |
I can't see the wood for the trees: I've got a JFrame which contains a set of buttons and a main component, which consists of various subcomponents, etc. The subcomponents contain the data. The main component and the subcomponents are implemented in
|
| Image as background | 12 Dec 2004 19:54 GMT | 1 |
I want to implement a GUI which uses image as background. I uses JFrame. I managed to set image as backround, but when I resize the window I would like that image(background) resizes too. Thanks for helping me!
|
| What's the deal with Sun and focus behavior? | 12 Dec 2004 00:34 GMT | 4 |
Since it's inception, Java has had numerous bugs with focus behavior. The one that seems to trip up most people is setting the initial component focus for a Window or Dialog before showing it. Because Java has it's own idea of what the focused component should be you have to ...
|
| getKeyCode() doesn't match up with VK_* | 11 Dec 2004 15:04 GMT | 1 |
I have a Yes/No dialog. I'd like to let the user type in a "Y" or "N" to answer with the keyboard as well as using the mouse. When I type a "Y" or "N" into the dialog I get back a value representing
|
| Wait,Start, Wait,Start.... | 11 Dec 2004 14:57 GMT | 3 |
Hi to everyone, what i want to achieve is to run the depth first search algorithm(DFS) in graphs step by step. In my AWT java applet i have added a button STEP.
|
| JTable/Model/JTextField focus problem | 11 Dec 2004 05:45 GMT | 1 |
I have a JTable with a DefaultTabelModel. I have applied my own focus listener (lost/gained) to a JTextField which I am using as the cell editor. My problem is this: If I use the mouse to actually click into a cell, the focus gained even will fire for my textfield and tabbing ...
|
| JTree thumb selection | 10 Dec 2004 22:46 GMT | 2 |
I have a JTree in a JScrollPane. The JTree completely fills the JScrollPane. The actual tree of the JTree control does not fill the entire component area.
|
| For what value you link JProgressBar when...? | 10 Dec 2004 17:53 GMT | 5 |
With the JProgressBar I want to present the loading of my application. Which value would best represent the mentioned process? --- Outgoing mail is certified Virus Free.
|
| Partially clipping a component | 10 Dec 2004 17:14 GMT | 4 |
I have to write code to move a component inside a container. For that I need to set the clip area of the component to the container's bounding rectangle. Is there a way to do that? I need to move the component inside the container quite rapidly so I can't write lenghty bounds
|
| Process.waitFor() and painting UI | 10 Dec 2004 17:02 GMT | 3 |
I have an application that I am working on that calls an external application via the following code Runtime rt = Runtime.getRuntime(); Process proc = rt.exec(cmdLine);
|
| Where find an blackboard example? | 10 Dec 2004 14:31 GMT | 1 |
I'd like to know how to write a blackboard. There is a simple example on the web? where can I find it? Thankyou in advance to all.
|
| JPopupMenu: behaviour of disabled items | 10 Dec 2004 08:02 GMT | 1 |
yet another little thing about JPopupMenu. I'm wondering about the different behaviour of disabled JMenuItem and disabled JMenu: when clicking a disabled JMenuItem the popup closes but when clicking a disabled submenu (JMenu) the popup stays open.
|
| GridBagLayout help | 09 Dec 2004 21:02 GMT | 5 |
Anyone know of any other help sites (besides all the obvious ie sun.com etc) that can help me understand GridBagLayout. I keep changing the various coordinates (weightx, weighty, gridheight etc) and I do not get the results expected. I've read
|