Tagged Questions
-2
votes
2answers
30 views
Save string to a JTextArea in a different window
How do you display some text written in a JTextField, and display that text in another window in a JTextArea, by pressing a JButton?
This is what a mean:
I have a class called OrderMenuCartoonish:
...
0
votes
0answers
31 views
Can't get JPanel to display Entire Content
To put Basically, In Java, I have 3 different JPanels.
A Label with a JTextField in Panel 1,
A Button Panel in Panel 2,
and a second JTextField in Panel 3.
In Panel 1, I'm trying to Place the Label ...
0
votes
4answers
48 views
jbutton changes text of text field
I am simply trying to make an employee clock. I have a keypad of numbers 0-9 and a text field. I want to be able to click the numbers and the numbers will appear on the text field. This seems so easy ...
-1
votes
2answers
62 views
Using JTextField for user input
Thanks for your help guys...now the program works and runs like it should.. but I have 2 more question.
1.How can I get the output into a JTestField t4 or t5
2.How can I close the application using ...
0
votes
0answers
35 views
(Java) Re-Validating JFrame
I'm making a program that requires a grid of JPanels to be reset to the users required size from a JTextField, all done by a JButton.
But I can't get it to repaint as the user presses the button, any ...
0
votes
0answers
69 views
how to implement a JTexField when pressing a JButton
hi I'm beginning programming and I'm writing a program that consists of a grid, which when individual squares are pressed will change colour. I want to know how I can implement a JTextField that ...
0
votes
1answer
99 views
What is the best way to make my buttons on my calculator interactive, so that they can actually add, subtract, etc?
I wanted to make a small calculator project for fun to test out my new GUI knowledge with Java Swing API. I created the GUI, but there's a crucial part missing: The math! My Question is, how do I add ...
0
votes
0answers
12 views
Drawing a square behind JTextFields and Jbuttons
Hi there StackOverFlow members,
I have a question, how would I draw a square behind the JTextField and Jbuttons shown in these pictures, photo 1 is what I'd like. Photo 2 is what I have;
Photo 1: ...
0
votes
2answers
83 views
JButton not working with textfield
im having a little trouble with this GUI. Im new to making GUI's so if its something basic im sorry for asking. I cant seem to find the answer to my problem anywhere on google.
The problem im having ...
1
vote
1answer
83 views
How do I get the String in a JTextField from an action of JButton?
For a while I have been trying to figure this out, searching online, finally decided to join just to figure this out. So my dilemma is this.
addActionListner(new ActionListener(){
public void ...
0
votes
1answer
196 views
Displaying keypress count in JTextField or Jbutton
I'm having trouble displaying the amount of times a key has been pressed and display the number in a JTextField or JButton. Could anyone give me a hand with that?
I already have the ...
0
votes
3answers
105 views
How to clear after calculation JButtons
I wrote a calculator, but the way i concatenate my numbers is so bad because after calculation lets say "5 + 2" when i press equal button it gives "7", the problem comes when i want to do another ...
0
votes
2answers
385 views
Java. GUI WindowBuilder print text from JTextField to panel by clicking button [duplicate]
Possible Duplicate:
Java. GUI WindowBuilder read from JTextField by clicking button
I want to ask how to print text from JTextField to panel by clicking button? Could you help me, please?
...
0
votes
2answers
187 views
Make method that returns when JButton is pressed
I need to make a method that returns only when a JButton is pressed. I have a custom JButton class
public class MyButton extends JButton {
public void waitForPress() {
//returns only when ...
1
vote
1answer
163 views
Centering JButton in BoxLayout, JTextField padding
I've created simple JDialog to gain initial data for my application. Elements (JLabel, JTextField and JButton) are arranged by BoxLayout inside the BorderLayout. (Code at the end). So far it looks ...
-4
votes
1answer
79 views
Validate more than one component on button click [closed]
I have a user registration form prepared in Swing (Java) So how can I apply validation all of them. Like I need a validation for the name and mobile no on one button click.
How to validate more than ...
1
vote
2answers
392 views
JButton action listener issue. Slider values being displayed in fields
So I have a program that is due tomorrow and I have held out as long as I can trying to figure out what is wrong with my code. First and biggest issue that has had me stumped for quiet a while is my ...
2
votes
1answer
613 views
Passing parameter from textfield in on one jframe to another jframe
I'm trying to simply create four jtextfields and a jbutton. Once the button is pushed, i want the text inputted into the jtextfields to be passed as parameters (p, var, s, f) to another window to ...
0
votes
1answer
160 views
Buttons, JTextFields and JComboBox's are unclickable
The program consists of a tabbed view with a few JTextField's and JButtons in the first two and 2 JTables and JButton in the third. The buttons work fine in the first two tabs, but on the third it is ...
1
vote
1answer
119 views
Creating a number of JTextField s that is defined by user input in way to to read text from all of them in a push of a button
I used to make my UI by making declaring new JTextField in a for cycle while attaching an action listener by anon class to each JTextField, which means that you have to press enter fire an event which ...
1
vote
1answer
105 views
Getting values from JTextField on buttonclick event
I am writing a simple program which takes 3 values from user using 3 JTextField and with 2 buttons, one for Chart and other for Graph.
On Click of any of this button, the values taken from the ...
0
votes
1answer
1k views
Make JButton insert text from JTextField into variables?
I'm trying to write a program that will take text in a JTextField and put it into variables I've declared when I press a JButton. I need to calculate weekly pay for a school project, but that only ...
0
votes
3answers
169 views
Insert text to selected JTextfield using JButtons
I have multiple text fields and buttons
When a text field is selected, text should be added to it when a button is pressed.
This is how I tried
import javax.swing.text.JTextComponent;
...
1
vote
0answers
55 views
Multiple Jtextfields to one Jbutton
I am wondering how to put 4 separate Jtextfields into one Jbutton where if you enter 3 values into the textfields and press the button, they will display the new value in the 4th textfield.
...
2
votes
2answers
297 views
How to Change the Blue Highlight Color around a JTextField when it gains focus in Netbeans
In Netbeans, whenever a JTextField, JButton, gains focus, the border gets covered by a blue highlight, how can I change its color, or remove it completely?
1
vote
2answers
2k views
Java- How to add more textfields by clicking a button?
I have created a frame in Java which has some textfields and buttons in it. Assuming that user wants more textfields (for example to add more data), I want to put a button and when a user clicks the ...
0
votes
1answer
342 views
pass data between jFrame objects and class in Java (NetBeans IDE)
i'm trying to create a sudoko solver in NetBeans via Java,
i created a new project, a package, and in the package i created a Java Class named sudokuCode and a jFrame Form named sudokuGUI.
what i'm ...
1
vote
2answers
1k views
java GUI simple login back end mysql
I'm trying to create a GUI program, simple LOGIN maintenance. I have 4 gui components namely: jlabel, jtextfield, jpasswordfield and jbutton. so far, this is my code:
import java.awt.Container;
...
1
vote
1answer
392 views
Java Swing: JButton creates new JTextField(s)
Hello :) I am beginner in Java Swing and I can't google solution for my problem. I have a JPanel and want to add JTextField(s) dynamically after pressing a JButton. And how can I getText() from them ...
4
votes
2answers
284 views
Java swing 1.6 Textinput like firefox bar
I would like to create a textwidget/component wich looks like the firefox address bar. I mean a Textfield wich allows me to place little Buttons inside the field (e.g. cancel/reload/...)
I tried ...
1
vote
2answers
348 views
JTextField change value automatically while button pressed
I have a jTextField with two JButtons (Up arrow and Down arrow buttons). Clicking the Up arrow button the numeric value in the textfield increases by 1 (++), and clicking the Down arrow button the ...
1
vote
3answers
372 views
Update JTextFields text every 3 seconds after pressing button
So what I want to do is that when I press button JTextField text starts to update to new value every 3 seconds. I have tried Thread sleep metod, but it freezes whole program for the sleep time and ...
0
votes
4answers
446 views
Link array of buttons and textfields in Java
I have a list of textfields, and a list of buttons. These are laid out on a form with the buttons next to the textfields. Let's say there are 5 of each, they are 1 through 5. In reality, the number ...
-3
votes
3answers
459 views
how to clear a jtextfield pushing a button
I have a JButton and when I push it, it has to clear all the content in a JTextfield. How can I do this? Maybe there exists a method to clear a JTextfield or do I have to set the field to null?
0
votes
1answer
369 views
Update/Fetch/Sync a JTextField input by user in a class to a JTextField of another class
public class FormattedName extends javax.swing.JFrame {
/** Creates new form FormattedName */
public FormattedName() {
initComponents();
}
/** This method is called from within the constructor ...
1
vote
3answers
798 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, ...
3
votes
1answer
17k views
How to clear the JTextField by clicking JButton [duplicate]
Possible Duplicate:
JButton needs to change JTextfield text
How do I clear a JTextField when a JButton is clicked?
0
votes
2answers
2k views
How to input numbers in JtextFields using the same set of buttons?
I am constructing a simple modified Subtraction-only calculator where z = x - y.
I have created 3 textfields: x, y, and z. The user will input the value using the keypad (buttons) I have designed for ...
1
vote
3answers
3k views
How to put a JButton inside a JTextField (Java)?
I would like to have a JButton (with a folder icon image) inside a JTextField, like over on the far right of the JTextField, so that when clicked, the button opens up a JFileChooser, and when a file ...
0
votes
4answers
2k views
How do you simulate a click on a JTextField? Equivalent of JButton doClick()?
I am working on a Java project and need to have a keypress simulate a click on a JTextField. What I'm looking for is the equivalent of the JButton doClick() method.
I am trying to have the keypress ...
0
votes
1answer
280 views
JButtons need to modify 8 JTextFields using an Array. Listen to Buttons or Text?
This is homework, and this questions Extends this one
So there is a button for First, Prev, Next, and Last
Each should modify
Item ID, Name, Rating, Price, Units, Value, Fee, ValueW/Fee, Total ...
0
votes
3answers
12k views
JButton needs to change JTextfield text
This is homework. Beginning Java class. Still wrapping my head around this stuff.
The project is to make an Inventory Management System.
I have everything figured out except how to make this ...
3
votes
3answers
2k views
Java GUI Creating Components
I hope it is correct term-wise to say that components in a GUI is like JButton, JPanel, JTextField, all that good stuff.
I want to create a text field that takes in an integer. Then a submit button ...
