0
votes
2answers
25 views
Getting the value from a Swing component from outside the EDT
My current code looks like this:
final String[] value = new String[1];
SwingUtilities.invokeAndWait(new Runnable() {
public void run() {
value[0] = textArea.getText() …
2
votes
4answers
37 views
How to create a JButton with a menu ?
I want to create a Toolbar for my application.
If you click a button on that toolbar , it will pop-up a menu , just like the toolbar of eclipse.
I don't know how to do it in Swing …
1
vote
2answers
23 views
[Java] Containers class owner’s child object having to add components into his parent’s container problem
Hi,
I am having problems dealing with containers and components in my JApplet.
I don't put my code because I think there is no need for it.
The main class owns the getContentPane …
1
vote
2answers
23 views
Add JScrollPane to a panel that shows an image
i have this little program for showing images on apanel.. but i'm not able to add a scroll to it.. and this is my code
the class that extends jpanel to show the image:
public cla …
1
vote
5answers
134 views
Convert Java resultset to String array
Hey everyone,
I am writing a program that will query an MS access database, return the query as a result set, and then I want to ultimately convert that result set into a String a …
0
votes
2answers
21 views
How can I resize the background of a JLabel or apply top and bottom borders only?
I've got sort of weird issue that I can't seem to figure out. I have something that looks like this:
As you can see, "Blambo" is a JLabel with an opaque, red background. The l …
0
votes
2answers
51 views
[Java] How to make an animation with Swing ?
Hi,
I am making a JApplet and got stuck with a animation problem.
Here is my code :
this.sprite.setBounds(0,0,20,17);
this.sprite.setIcon(this.rangerDown);
for(int i = 0; …
0
votes
2answers
22 views
Swing: How to position JFrame N pixels away from the center of the screen at first setVisible()?
What's the code to position a JFrame N pixels (say 300 pixels in x-direction) away from the center of the screen before one calls setVisible(true)?
0
votes
2answers
15 views
only mouse clicked event of jlabel update jlabel text property properly
i am using a java thread to update jlabel text value in my application
but after it updated text on jlabel
jlabel showing all past updated values and new value periodically in orde …
0
votes
3answers
51 views
Java Swing: positioning dialog on top of existing window
Can someone show simple Java Swing code/web resource that will position the popup dialog center-aligned on top of an existing JFrame window when the JFrame's button clicked?
0
votes
2answers
18 views
Stop a jframe requesting focus
I have a small application that updates the contents of a JFrame very quickly (many times per second) and on each update (I remove a component and then add a new one, then set visi …
0
votes
1answer
12 views
JInternalFrame and Keybinding
How do I bind a function key say(F11 etc) to a JInternalFrame, so it can activate a particular action.
I tried with the following
this.getInputMap().put(KeyStroke.getKeyStroke( …
0
votes
2answers
21 views
Jython refuses to find Swing
I know it's something silly, but for some reason Jython refuses to find javax.swing. I'm using Java 1.6.0_11. This is my start-up script:
@echo off
"%JAVA_HOME%\bin\java" -Xmx1 …
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
5answers
92 views
Java Swing: Read many images files without memory problems?
Hi,
I'm writing a Java Swing application that will load from disk about 1500 png images that range in size from 50kb to 75kb each. I don't need to load all of them at once, but I …
