1
vote
2answers
54 views

Positioning GUI objects on a Frame

I am developing a Java application and would like some help in positioning some Labels and TextFields. Here is my code: import javax.swing.JFrame; import javax.swing.JPanel; import ...
1
vote
1answer
51 views

Why do I need to hover my mouse over a button for it to show up?

I got a issue here, my buttons were working fine until I added a background image, when I try to put my mouse over the buttons and textfield for them to show. My labels also don't work either ...
0
votes
3answers
53 views

JLabel not showing text in GUI

so my code ask the user for input. then converts the temp. should be simple but my code is not working. It does not output my lable 3 it just does nothing. that is the only problem i am having with ...
1
vote
0answers
23 views

Why is the window too small if I don't resize it?

I am wondering why when I enter this code without resizing the window, I cannot see anything: import java.awt.*; import java.awt.event.*; import javax.swing.*; public class GolfScoresGUI { ...
0
votes
2answers
68 views

Set limit integers to JTextField

How to set a limit to the input for user, I mean that the user can input only like 2 or 4 integers and no more. Code: JLabel dateD = new JLabel("| Date Day:"); dateD.setBounds(170,270, 120, 25); ...
0
votes
2answers
272 views

How to show input of JTextField in JLabel ? how to fix error in reflection ?

i have to do this: i have one JTextField and button. And when i write to that TextField output must show result in JLabel. Asks the user to provide the name of a class. Uses Class.forName() to get ...
0
votes
4answers
88 views

Java not rendering components after adding a JTextfield

I know this question was asked before, but there was no answer to it. In Java, when I am adding components to the frame, all the elements after adding a JTextField are not rendered when the ...
3
votes
1answer
70 views

Set the font of texts retrieved from JTextField

I have the user enter some words through a JTextField. I want to set the font of the string. Here is what I have so far. Font f; f = new Font(input.getText(), Font.ITALIC, 32); word = new JLabel(f, ...
0
votes
2answers
96 views

Center JTextField (not the text inside the field!)

How can I center a JTextField. NOTE! I do not want to center the text in the JTextField (which is achieved using setHorizontalAlignment(JTextField.CENTER), but rather I want to center the actual ...
0
votes
2answers
323 views

I'm trying to set JTextField under JLabel

I'm trying to put the text field under the JLabel. Currently, the text field is displayed on the same line. It should be below and centered. I need assistance. package Gui; import javax.swing.*; ...
1
vote
1answer
86 views

Dynamic/Onspot JTextfield to JLabel

I want to make a pair JTextField/JLabel work as here on StackOverflow, I mean that I want a string to be displayed in JLabel as I write it in JTextField. I tried adding ActionListener to JTextField ...
0
votes
3answers
284 views

textfield with actionperformed actionlistner [closed]

I have a jTextField and a jLabel. And I want to get data from database to my label automatically after user finished typing. subcode_txt.addKeyListener(new KeyAdapter() { @Override ...
-1
votes
4answers
274 views

Adding a label for a JTextField

I have a JTextField and I want to add a label next to it, so that it looks like this... +---------------+ TEAM 1: |Text field here| +---------------+ This is the code where I am ...
1
vote
1answer
393 views

Using GroupLayout in a JPanel to align JTextFields and JLabels?

So, this is my problem: I used the oracle documents as an example for my project, but when i run the program all it shows up as is a box with "weekly pay:" in the middle. What am I doing wrong? ...
2
votes
2answers
424 views

Converting jLabel to a jTextField

I'm working on a JFrame interface to interact easily with a large amount of data. The data is saved in a .txt file, and when a name is selected from the JList, my program reads the appropriate lines ...
0
votes
2answers
82 views

Swing getHeight() value changing from 0 to 16

I am trying to make a box in Swing that has a label of "user", a text field for the username, and a button "sign in". This is my code import java.awt.*; import java.awt.event.*; import javax.swing.*; ...
-2
votes
1answer
140 views

Java Applet GUI positions

This is a mysterious problem. I have a JSlider, JLabel, and JTextField. I want them to be all adjacently aligned. My problem is that the JTextField's (valueField) is shifted up. When I print out the ...
2
votes
5answers
114 views

Cannot finde symbol error, null pointer

There are not compiling errors now, the value wont show, only the message "number:" I've already been here, for the exception that before it shown "number:NULL" but i think i am getting there... ...
2
votes
1answer
236 views

GUI changes with RadioButton Selection

Per the title, I'm trying to get my GUI change with RadioButton selection. More specifically, the JLabels and JTextfields. Essentially, I want to look something like this: ...
1
vote
1answer
267 views

How to set the JText field with the JLabel clicked?

How can I set the JTextField with the JLabel just clicked? What should I added in, public void mouseClicked(java.awt.event.MouseEvent evt) { jLabel2MouseClicked(evt); } private void ...
2
votes
3answers
163 views

Can I have a textfield inside a label?

What I would like to do is display the following in a form: Open [15] minutes before class Where [15] is a text-field. Is this possible?
-1
votes
2answers
809 views

Updating jLabel and jTextField in a proper way

I found several questions about the issue and spend an hour on it, but still can not solve my problem myself. What I want to do is simply open a form and change the values of jLabel1 and jTextField1 ...
0
votes
2answers
902 views

How Do I Put JLabel and JTextField on top of Image?

I am trying to create a game where I have a background image and text on top of that in the form of JLabels. How would I go about doing that? The main reason I'm doing this is so that I can have 2 ...
2
votes
3answers
529 views

JLabel and JTextField string comparison

When I use JLabel string comparison with == works fine private JLabel someJLabel = new JLabel("some text"); ... System.out.println (someJLabel.getText() == "some text"); // returns true but when I ...
1
vote
5answers
977 views

How to show an image inside a non-editable JTextField?

In my Java Swing application i want to put a lock image inside a JTextField that is not editable, to appear like this : I have created a JTextField, and inserted a JLabel above it and defined the ...
1
vote
1answer
354 views

why aren't my JLabels and JTextFields showing up in the JPanel?

I have a JDialog and inside it I have a JPanel that uses FlowLayout now I've created 3 labels and text fields using the Netbeans GUI Builder, and I want to add 2 more text fields using code I've ...
1
vote
3answers
799 views

JTabbedPane JLabel, JTextField

Right, I have a JTabbedPane that has a JPanel that contains a JLabel and a JTextField. my code JTabbed Pane declaration : this.tabPane = new JTabbedPane(); this.tabPane.setSize(750, ...
5
votes
4answers
882 views

Is it possibly to create selectable hyperlink with basic Swing components in Java?

I am trying to add a hyperlink to a JPanel. I would like to make it's text blue (and underlined) and the link should be selectable (to copy some part of it). So I tried to use JLabel: yes, it allow to ...
7
votes
1answer
975 views

How to create a Jlabel inside JTextArea like in Facebook?

Is there a way I can create a JTextArea or JTextField with some JLabels inside it, like in this screenshot from Facebook: What I am trying to do is put some JButtons with titles like "Apple", ...
1
vote
1answer
873 views

setVisible(false) to a group of JTextField and JLabel

I have a group of JTextField and JLabel. I want them to initially not be visible so I thought to initialize my applet with a method which calls setVisible(false) for each of the components. Is it ...
0
votes
1answer
3k views

Set position of JTextField, JLabel and JButton in Java

When i run the program, the label textfield and button and so on are arranged randomly (label and button are in same line). How do I explicitly set the layout?
1
vote
2answers
922 views

How can I output only a certain number of digits after a decimal place in a JTextComponent?

I am using both JLabels and JTextFields, and need to be able to truncate my doubles to two decimal places when they are displayed by the application. How can I perform this truncation, preferably ...