Tagged Questions
0
votes
2answers
28 views
Updating dynamic TextArea in Java
I'm trying create simple text editor with dynamic Text Area in Java.
The application, at the beginning, only have 1 Text Area. Each time I press ENTER key, the application will create a new Text ...
0
votes
2answers
40 views
null pointer exception when calling textField.getText()
ok so I have a GUI with some textFields and combo boxes. Whenever I try I get the text textField.getText() and comboBox.getSelectedItem() I get a null pointer exception.
even though my comboBox ...
0
votes
0answers
15 views
Java swing eclipse unwritten field bug
I use the FireBug extenstion and when I checked for bugs it has returned this:
Unwritten field: ui.SubContractorUI.editSubContractorComboBoxCountry
Unwritten field: ...
1
vote
2answers
34 views
How can I add single character to the JTextField by pressing the JButton
I am creating a simple program, which will allow me to add single character to JTextField by pressing JButton. In this program, I have an array of string named words & I have a String name word, ...
1
vote
2answers
35 views
How to stop JTextFields from running off the Frame
I want to stop the text field from running off the GUI or print the text field on a new "line".
Here is the code:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class ...
0
votes
2answers
22 views
How to to call JInternalFrame from another JInternalFrame?
it is posible ?? call JInternalFrame from another JInternalFrame ??
if so how?
i've looking for the answer over many hours..
found some question before..
in here How to manage a JInternalFrame ...
0
votes
0answers
23 views
JButtons re-enable themselves after disabled and other enabled JButtons not truly enabled
The issue I am currently facing is that I have a JFrame with about 6561 buttons and I want to enable only 9 of them depending on which JButton was clicked. I am usually able to do this, but after a ...
1
vote
4answers
52 views
How to update a GUI while it's running
So I have a JTextField displayed in a GUI. What I want to do is remove the text field when someone presses enter. I have already added ActionListener. I just want to know how to automatically update ...
-5
votes
1answer
29 views
Using Swing GUI for NetBeans to Set Background of a JFrame from a Resource
My friend and I are working together to write a Java program, and I am taking on the task of designing the GUI. Our GUI requires a background image for the JFrame, and the image needs to be able to ...
0
votes
3answers
27 views
Java GUI: about getContentPane( ) method and content
In this piece of code:
JLabel emptyLabel = new JLabel("");
emptyLabel.setPreferredSize(new Dimension(175, 100));
frame.getContentPane().add(emptyLabel, BorderLayout.CENTER);
I can see it makes a ...
0
votes
2answers
27 views
Newbie: jTable right click popup menu
I am working on a project and I need some assistance. I have a SQL database and I am working on a program that will allow me to add/delete/modify records. I already managed to add records I am working ...
0
votes
0answers
36 views
Button Target in Java
i try to make an application with java (GUI), so i'm using WINDOWBUILDER and Eclipse as IDE.
So I'm asking about how to set the target of buttons I'm using,, so for example, if a user click on a ...
0
votes
1answer
21 views
How should I test JApplets and Applets?
Been playing with Java for quite a while now, and I just started working with JApplets/Applets. The problem I'm having is actually testing them. As you all probably know, most browsers cache the ...
-1
votes
0answers
27 views
I need help printing some XML elements from a file so later I can add them to a tab in a JTabbedPane
I need help printing some XML elements from a file so later I can add them to a tab in a JTabbedPane.
I have the following code:
Class XMLreader (2 methods used):
public static ...
-1
votes
0answers
19 views
Swing absolute layout appearing very small
i have a problem once i run my java GUI code, where it starts in a really small windows and i have to drag it by the mouse to maximize it.
it happened since i used the absolute layout instead of ...
0
votes
1answer
18 views
JTable headers on left side and cells on right [explained with image]
As second picture says, I want to anchor 'HeaderModel' left and 'CellModel' right. If its possible...
1
vote
4answers
33 views
How do I draw over top of a JScrollPane?
I have a JScrollPane that fills a JPanel (which is the content pane for my JFrame). The JPanel performs custom drawing - however, it doesn't appear over top of the JScrollPane. Should I override ...
0
votes
1answer
45 views
Return function only after ActionListener
I have this function in Java:
public int[] getProperties() {
properties = new JFrame();
properties.setSize(400, 200);
properties.setVisible(true);
...
0
votes
0answers
19 views
Setting ImageIcon location or Making GIFs work with Graphics (on JPanel)?
I need to put a GIF file in my JPanel.
I have found two methods:
1.Make an ImageIcon, and put that in a JLabel, which will actually work the GIF.
The problem with this is that I can't place the ...
3
votes
1answer
40 views
What is the difference between setSize(), setMaximumSize(),setMinimumSize() when used with GridbagLayout
What is the difference between setSize(), setMaximumSize(),setMinimumSize() when used with GridbagLayout. When I am using setMaximumSize(), it is reducing the height of the panel.If needed I can put ...
0
votes
1answer
23 views
JTable-Paint the content(text) in a cell
I have a JTable and i have a method which implements search in table rows and columns, i use regular expressions and i want to paint(eg yellow) the text which matches with the regular expression in ...
0
votes
1answer
31 views
How to initialize a JTree?
I've been trying to make a simple JTree for a program and I'm getting crazy with this.
I just want to make a JTree to show all files and folders inside a given folder.
Anyone can help me with some ...
0
votes
0answers
14 views
JTextField & JPasswordField: how to overwrite input during text typing
You know that in editors like Eclipse or Word when you use INS key you can change the type mode (insert and overwrite text). In overwrite text automatically you type new text over the older one and ...
0
votes
2answers
23 views
Adding onResizeListener to JButton
I have a window(JFrame) which contains special types of JButtons (my own class of buttons which extend JButton). That window suppose to resize itself when the button size is changing(in example when I ...
1
vote
1answer
24 views
How Do I Draw Two Overlapping JPanels such that the Graphics Drawn On Both Of Them Display On The Screen?
I have two JPanels. One panel has a 100x100 rectangle drawn at 0,0. And the other has a 100x100 rectangle drawn at 100, 100. My problem is that when both JPanels are drawn on the JFrame's content ...
0
votes
1answer
41 views
Make JPanel draggable
I extended the toolbar on a mac using a JPanel (see image), but the part that is the actualy toolbar (not the JPanel) is the only part that you can click and drag. How do I allow the user to click and ...
-1
votes
2answers
46 views
NullPointerException while getting font from my JButton
I wanted to create button which would auto resize while the string inside of it cannot be displayed(it is too big)
I got sth like that:
public class ResizingButton extends JButton {
public ...
0
votes
0answers
7 views
GlazedLists clear throws error on sorted JTable
I would like to include glazedlists in an existing project that uses JTables and JXTables. Mainly because of the easier event-handling. I have made a view tests and came across a problem when ...
2
votes
2answers
30 views
Scroll bar not visible in JPanel
I have created a GUI in Java which looks as shown below -
'panel_mid' is the white panel in the middle. I have added it to a scrollpane called 'panel_mid_scrollpane'.
Apart from 'panel_mid' there ...
0
votes
1answer
32 views
Jar file Initializer exception
I have a Jar file which is composed of a lot of classes. When I run it from command line (rather tahn double clicking) I get this:
I saw that it happens if there is a problem in static{} blocks but ...
2
votes
3answers
30 views
How to control JPanel setSize when using BorderLayout
I have a ComponentListener for the main JFrame that sends an event when it is resized but by the time the event is fired, the Jpanel has already been resized.
public class Test implements ...
-1
votes
4answers
59 views
How to finalize a game to be able to start another one? [closed]
I am doing a game with Swing.
It starts with a main method that waits with a while(true) for every time the user wants to start a new game.
For restarting the game, I have a menu that allows you to ...
0
votes
0answers
25 views
Black border around image when dragged from MS Word to custom JTextPane
I am able to drag both images as text from MS Word to a custom JTextPane. However, when I drag a image and accept it using:
Image imag = (Image) data.getTransferData(DataFlavor.imageFlavor);
In ...
0
votes
0answers
28 views
JPanel inside JFrame and Menu not losing focus
I have a JFrame with a JMenuBar, inside the JFrame there is a JPanel (the panel occupies all the space but the menu bar). The thing is that when I have the mouse over some MenuItem and move the mouse ...
2
votes
4answers
65 views
GUI testing tool for Java based application [closed]
Requirements:
Maximum coverage
free license would be a big advantage
compatibility with different frameworks
it should work on old JVM (starting from Java 3).
What could you recommend me please?
2
votes
1answer
24 views
Can I mix Horizontal and vertical boxes in Java BoxLayout?
I have to make a simple program and the GUI would look like this:
,,,,,,,,,,
| Read | <---a Button
``````````
name |``````````| <---a Textfield
``````````
|
|
...
0
votes
1answer
41 views
JButton add Object
Is there a way to add an object to a JButton?
I know I did it some years ago in C# but does it work in Java?
public Shop(Item[] buyables) {
ArrayList<JButton> buttons = new ...
1
vote
3answers
32 views
Changing value of boolean when mouse cursor hovers over a JButton
I have a button that will change from black to gray when you hover over, I do this with setRolloverIcon(ImageIcon);. Is there any easy way to make a boolean equals to true while the mouse cursor ...
0
votes
0answers
15 views
JMenuBar using SyntheticaAluOxide Look And Feel
I changed the look and feel for my application in netbeans to SyntheticaAluOxideLookAndFeel but when I run my program the menu button is displayed weird :
when I choose the second menu bar and then ...
0
votes
0answers
26 views
Java MigLayout: Buttons to dynamically add JTextFields are moved to the right
I've got a problem with MigLayout and I've posted the Code. The problem is: when I push the button of a specific row, a new TextField is added but then the buttons of every row will move to the right.
...
0
votes
0answers
15 views
Exception in thread “AWT-EventQueue-0” java.lang.IllegalArgumentException: You must supply an InputStream,
I'm trying to costumize a Synthetica theme in netbeans as this article shows :
http://www.jyloo.com/news/?pubId=1335947397000
So, I created the costum.xml file and I added it to my project folder as ...
0
votes
2answers
54 views
Layout to represent dynamic dashboard
Ive got an Application that should display tiles of different "sizes" (better different spans) in different positions on a 8x6 Grid. These positions change and new tiles are added at runtime. I tried ...
0
votes
2answers
22 views
Changing ImageImplement image
Everytime I change the uploaded image into images array, it draws the image beside the previous image. How can I make the next chosen picture appear over the first one?
ImageImplement panel = new ...
-4
votes
0answers
24 views
Image Preview button in java swing [closed]
How to Preview images generated Right align text on image using java.
I want to preview the generated image and then save on to local system.
0
votes
4answers
43 views
How to set Intelligence for Jcombobox
In Jcombobox when i type some letter say ('j'),the first item that starts with 'j' will be focussed by default.But the same logic is not applicable with many letters(say 'ji').How to make it possible ...
0
votes
2answers
45 views
Populating a table in a GUI with MVC architecture
I have re-structured my GUI according to the MVC pattern, but I am not sure how to populate a JTable in my view. So far, my code is:
VIEW:
public class GUIview extends JFrame {
...
// set Table ...
0
votes
1answer
30 views
Displaying all the drives in the system in JTree
Here's my code i am unable to display all the drive's in my current system in a jtree, all it returns is some random java file, am a beginner and do not have much idea about how it is done, awaiting ...
0
votes
1answer
45 views
Assigning a image to a String
Is there any way that I could assign a specific image to a String so that the output would be something like this (im using the String with a JLabel):
1
vote
1answer
24 views
Using Flow layout for Check-Boxes
I'm trying to use grid layout in my gui to align the Check-boxes one below the other in Jython, even if i use setLocation function, i can't align them properly, is there any other way to do that?
...
1
vote
1answer
40 views
Add the characters of word into the JButtons
How can I add the characters of word in to the JButtons?
I am using a For loop to draw the JButtons on the Panel. Numbers of the JButtons depend on the length of the word. I am using an Array to add ...






