0
votes
5answers
102 views
Why is paint()/paintComponent() never called?
For the last two days I have tried to understand how Java handles graphics, but have failed miserably at just that. My main problem is understanding exactly how and when paint() ( …
2
votes
1answer
34 views
Is it possible to have 2 JPanels in a Border layout at the same location?
Hi All,
I'm writing a game which uses a border layout with a JPanel using BorderLayout.CENTER. What I'd like to be able to do is sometimes hide this panel and replace it with an …
1
vote
2answers
54 views
What does Container.validate() method do?
There seems to be many methods in Java awt Container class that are related to validate. Apparently they don't do data validation. Is it useful for a Swing developer in any cases? …
0
votes
3answers
31 views
Listening to all JInternalFrame events - Java
Hi,
I'm trying to internationalise a Java applet and with that, support scripts which are written from right to left. I want to set up component orientations for all java componen …
1
vote
1answer
27 views
Flicker free AWT application
I'm trying to write a silly little app using Java and AWT.
It simply runs and animates some shapes, so as a first step, I created a simple app that clears a canvas with fillRect e …
1
vote
2answers
62 views
Repaint frame when resized?
How would I force a Frame to repaint() immediately after it is maximized, or resized?
I can't find what method is called when that specific operation takes place. I have a bunch o …
2
votes
1answer
136 views
Isn’t Swing’s JPanel pretty much like AWT’s Panel? The former’s widget is not showing up
I'm changing a program from AWT to Swing, as proposed on the second chapter of Java Swing's book, and the panel just disappears when I do the change from Panel to JPanel. The same …
0
votes
1answer
24 views
Java awt applet with Microsoft JVM white screen
I have a java chat applet that's compatible with JDK1.1 so it works well even with Microsoft JVM.
the thing is, sometimes the chat area within the applet becomes white and messed …
0
votes
4answers
54 views
Obtaining a screen shot of an Applet?
Given an Applet object, is it possible to programatically obtain a "screen shot" of the applet window (represented as say a BufferedImage)?
JApplet applet = this;
// ... code he …
0
votes
3answers
29 views
Java AWT applet white screen when resizing window
I have a java applet built using awt.
I draw some text on a panel object and everything goes fine.
but when resizing the windows all the text disappears.
this behaviour is differ …
0
votes
1answer
46 views
AWT libraries using Java 1.6 on Linux Server in a datacenter
I need to create and store thumbnails (of images from the web) and store them on the server. Can I use the awt libraries (as listed below) on a linux server running in a datacenter …
1
vote
2answers
49 views
Ctrl-Delete in JTextField
How can I get JTextFields to allow Ctrl-Delete and Ctrl-Backspace when editing text?
In various other programs, these key combinations can delete an entire word in one go.
From w …
0
votes
2answers
76 views
jscrollpane to scrolling a panel
hi
i have to writing an applet, in left side i must use an panel to contain a list of vehicles that can be a list of buttons,what is the problem, number of the vehicles are not gi …
0
votes
0answers
38 views
editing a java bean ?
Hello,
I'm searching for he source of a graphical bean editor... a (very basic) beanbox if you prefer...
Here is what I would like to achieve :
I have an application which uses s …
0
votes
3answers
171 views
ActionListener on JLabel or JTable cell
I have a JTable with JLabel[][] as data. Now I want to detect a double click on either the JLabel or a table cell (but only in one of the columns). How can I add an Action/MouseLis …
