Tagged Questions

0
votes
2answers
9 views

Accessing a JTextArea in a JScrollPane.

Hi, I have a JTextArea in (multiple) JScrollPane in a JTabbedPane. I need to access the JTextArea. If I didn't have the JScrollPane, I could do: JTextArea c = …
2
votes
7answers
95 views

Which Swing layout(s) do you recommend?

There are 8 layout managers in the Java library alone, and then there's a bunch of 3rd party products as well. The other day, I tried to use SpringLayout and... well, it ain't working out for me. See …
1
vote
1answer
50 views

How to have program wait for a button press in Java.

Now, I'm not sure if this is possible or even the best way to accomplish what I'm trying to do, but basically I'm creating a very simple simulation program with a very simple Swing GUI. After each …
0
votes
1answer
34 views

SpringLayout problem/challenge

SpringLayout is claimed to be very powerful. I tried to implement what I thought was a fairly simple layout using SpringLayout and I'm failing badly. Reduced to the minimum, I want 4 JButtons on my …
0
votes
3answers
31 views

Image panel not repainted unless on system events

A friend of mine asked me to help him with Swing, and I reached a point where I can't solve an issue. So, first I have an ImagePanel public class ImagePanel extends JPanel { private Image img; …
0
votes
2answers
24 views

Any way to force jidetabbedpane to show always the first tab

Hello, i have the requirement that i have to display a tabbedpane, but the first tab has to be static. So i tried to use the jidetabbedpane, since it cares about the effect, that all the tabs are …
1
vote
1answer
40 views

Rich calendar component for Swing application

My company is adding some rich calendar functionality to our Swing application. We want it to work like Outlook's calendar. Here are some of our requirments: Views for day, week, and month The …
0
votes
1answer
69 views

How to use Windows 7 Jump Lists in a Java Desktop app?

As the title suggests, we have a Java (Swing) desktop application, and we'd like to be able to have some basic access to the Jump Lists (in the new Windows 7 taskbar). In particular, we'd like to be …
1
vote
2answers
31 views

Using maven to distribute a swing application that can have each dependency individually tracked

I'm moving my project to Maven and eventually OSGi. I currently distribute the project is a large Zip file with all the dependencies. Although my projects code is only 20% of the total package I have …
-3
votes
2answers
37 views

When i import from a file, click the next and previous buttons it is exporting data to my file? is there something wrong with my action listeners?

public AddressBookApp(){ frame = new JFrame("Address Book"); frame.setSize(500, 400); frame.setDefaultCloseOperation(frame.EXIT_ON_CLOSE); panel = new JPanel(); panel.setBackground(Color.gray); …
1
vote
3answers
54 views

Java Swing questions regarding GridLayout and paintComponent methods

Within this program, we need to create an 8x8 grid of "LifeCell" widgets. The instructor did not mention that the widgets had to be an object of Shape so I went ahead and used the GridLayout class. …
0
votes
1answer
32 views

how to use java jar in c/c++?

i am a new developer of java swing. i want to pack the GUI program. With the help of neatbeans, i get a file of java jar. But i want to convert the jar to exe file, although i know exe4j, but i need …
1
vote
2answers
75 views

Java compiler error. Cannot find symbol

Why am I getting this error when the SystemController class is in the same directory? sgs$ javac Main.java Main.java:27: cannot find symbol symbol : class SystemController location: class sgs.Main …
0
votes
1answer
24 views

Find out if JList has an item currently selected.

I have a JList which is populated after importing a file. Is it possible to have the first item/element of the JList highlighted/selected. I have browsed many places hoping to find a line along the …
0
votes
2answers
55 views

Importing a file using the Java FileChooser

Hi I'm having trouble using the Java JFileChooser and was wondering if anyone could help me out. It's probably something really simple but I just cant spot whats wrong. The JFileChooser window opens …

1 2 3 4 5 89 next
15 30 50 per page