JTextField is a Java Swing component that allows the editing of a single line of text.
0
votes
2answers
90 views
Java Incompatiable Types; JTextField and Integer
For complete code, go to http://ideone.com/7XHxSm
I'm trying to use a JTextField then pull the string value then parse the value into an integer. Once parsed, I need to multiply them together. Later ...
0
votes
2answers
102 views
Java - change JTextField using separate ActionListener
I have two classes, A and B.
Class A has a JTextField, and a private variable of class B.
Class B implements ActionListener.
Class A and B are in separate files.
Can I access the JTextField from ...
0
votes
2answers
62 views
print an array items in a JTextField
I have an application of java swing . my purpose to print the elements of a an array into a JTextField
but when I press a jbutton to do that I get the following exception
Exception in thread ...
0
votes
2answers
92 views
Lose Focus on JTextField when clicking on the panel
I want to lose the focus on a JTextField when the user is clicking on the main panel.
setFocusable(true) doens't work for me.
If I am clicking on the main panel, the JTextField has still the focus ...
0
votes
1answer
182 views
When JtextField get filled, JTable cell has to be filled. How to do it?
In my frame, I have a JTable and a JTabbedPane.
The JTabbedPane contains a JTextField for a Date.
When it is filled with a date and Enter or Tab key is pressed, the "Date" column of the JTable has ...
0
votes
2answers
206 views
How to apply Getter/Setter method for private variable in GUI?
The purpose of this program is to access the private variable jtextfield from another class. I created this simple program that takes user input from a JTextField. I have getter and setter methods in ...
0
votes
1answer
172 views
Accept only Double Values in a JTextField using DocumentFilter [duplicate]
Is there any way to accept only double values in a JTextField using documentfilter?
1
vote
1answer
112 views
Not able to edit width of JTextField in JFrame with Border Layout
Thank you all who helped me on JTextField Issue. I got JTextField successfully added to my frame with Border Layout by using BorderLayout.PAGE_START.
But now i am not able to edit the width of ...
1
vote
1answer
65 views
How to extend JTextField to generate a defined response to focusgain
I suspect this is a pretty trivial question.
I wish to create a component MyTextField which extends JTextField;
The component should respond to gaining focus by changing color and respond to losing ...
0
votes
0answers
156 views
IO streams to JPanel, GUI with InputStream and OutputStream in a JPanels JTextField and JTextArea
I'm trying to write a GUI where the user sees the System output in a JTextArea and where he writes the input in a JTextField, both object inside a JPanel.
How do I do to connect the System output ...
0
votes
2answers
103 views
Resizing JTextField in JMenuBar
I'm trying to add a JTextField as a search bar to a JMenuBar at the top of my JFrame. My problem is that the JTextField keeps getting resized to take up all available space in the JMenuBar, and I ...
0
votes
1answer
138 views
How to convert a String from a JTextField to a double array
I am currently attempting to read in values from two JTextFields, find the range of the values by incrementing by 1 and then writing the values to a Double array. However the way I've done doesn't ...
0
votes
1answer
101 views
How do i update a JTextfield from a file in Java [duplicate]
I have a program that looks into a single Notepad file which contains information similar to:
Cardiff : 3245658
Bristol : 4726485
Manchester : 4728945
These places and numbers are coming out of a ...
0
votes
3answers
59 views
Resize the Height of many JTextFields [closed]
I want to know if it is possible to create a Java class that allows to set the height of all the JTextFields in a Java frame, instead of manually change.
2
votes
1answer
199 views
Why JTextField.setText will fire DocumentListener's removeUpdate() before changedUpdate()?
This is my code:
import javax.swing.*;
import javax.swing.event.DocumentEvent;
import javax.swing.event.DocumentListener;
import javax.swing.text.Document;
import java.awt.*;
import ...
0
votes
2answers
47 views
Can I receive property change events with a buffered JGoodies formatted textfield?
I have a method which binds my JTextField to a bean in JGoodies
public static JTextField bindDoubleTextField(PresentationModel<?> adapter, String
propertyName, boolean useBuffer)
{
...
0
votes
2answers
166 views
Java - i need to update JTextFields in a Swing GUI program Sorry for other version of this, i still need advice this one [duplicate]
I have a program that looks into a single Notepad file which contains information similar to:
Cardiff : 3245658
Bristol : 4726485
Manchester : 4728945
These places and numbers are coming out of a ...
0
votes
2answers
167 views
Problems aligning text field input using GridLayout
I want to make a form using java frame. I have two fields Name and Age. After entering the details, when the button is clicked, the entered data must be displayed as shown below, but I am not sure how ...
6
votes
3answers
141 views
Not able to add JTextField to JFrame
I am not able to add JTextField to JFrame. My JFrame contains a JLabel and a JTextField .
First, i have added the JLabel, and it is working. Here is the code.
private static void createandshowGUI()
...
0
votes
1answer
95 views
Null pointer in ActionListener because of a text field?
As an introduction into java swing GUI interface and my upcoming Geometry class at school, I decided to make a "Special" Calculator for that class.
Now I'm having a Null Pointer in it and I don't ...
1
vote
2answers
45 views
Creating multiple tags and keeping them in a list for display
just as we select tags before posting a question on stack overflow, I wanted to do something similar when registering a contact into database. In the form, there is a JTextField txtTags which asks ...
0
votes
2answers
157 views
How can i pass jTextField value from one class to another when clicking a jButton?
Greetings from jamaica,
I'm having trouble with a netbeans java project. I have two separate classes: A gui class called MainJFrame.java and another class called main.java.
In the MainJFrame form i ...
1
vote
2answers
103 views
Edit jtable content by row selection [closed]
I have a class that have a Editbutton and set it a actionListener.
I write my Whole class Codes.
I have 3 Class ,
public class UserPage extends JFrame implements ActionListener {
private AllUser ...
0
votes
5answers
158 views
Problems with getText() from JTextField
I'm having troubles with the .getText() command trying to retrieve data from a JTextField. I've been looking for the solution but couldn't find it. Is there anybody who can see what I'm doing wrong?
...
1
vote
1answer
54 views
Using AsYouTypeFormatter with JTextField
I want to use the AsYouTypeFormatter from LibPhoneNumber (http://code.google.com/p/libphonenumber/) with a JTextField to format a phone number. However, I cannot use a document listener to change the ...
-1
votes
2answers
99 views
Scrolling numbers java swing JTextField
Im wondering if anyone can help me replicate the below screenshot.
im tring to display a counter that will count in increments of 20 up to 100 the will count up 1 on the left hand side number then ...
0
votes
1answer
99 views
Add both string and int value in one JTextField
Convert user input of meters to feet and inches with the
// following format (16ft. 4in.). Disable the button so that
// the user is forced to clear the form.
Problem is that I don't ...
0
votes
1answer
181 views
Display data in JTextField from JComboBox
I want code in swing that take value from JComboBox and display it in JTextField, and
setFocus to JTextField by checking the JCheckBox.
inititialy JTextField should be empty. when JCheckBox is checked ...
2
votes
1answer
71 views
How to update JTextFields in a GridLayout?
I have a MainPanel which uses the Gridlayout. Consequently I have created four JPanel classes for the: NORTH, EAST, CENTER and EAST layouts respectively. I then add all four to my MainPanel.
However, ...
0
votes
2answers
53 views
JTextField is Too big in the event handled JFrame
I'm new to JAVA Programming and I'm trying to make a memory modification GUI program below is the code. MY JTextField is too big any suggestions on how to fix this problem? also I would appreciate if ...
-1
votes
5answers
197 views
Java - Questions About JTextField and JPasswordField
import javax.swing.*;
import javax.swing.text.JTextComponent;
import java.awt.*;
import java.awt.event.FocusEvent;
import java.awt.event.FocusListener;
public class HintTextField extends JTextField ...
0
votes
0answers
105 views
Java - How to disable System beeps when pressing backspace/delete when having selected a disabled JTextField
So I've disabled input for all my JTextFields and instead read input from the keyboard when a button is pressed (yes this is necessary for my program). The problem I'm having is that when you select a ...
0
votes
4answers
195 views
How to display a default message in JTextField java [duplicate]
I want to create a JTextField with a message inside as a deafult. But not as a proper text but as a comment about what to type inside the JTextField.
So if i type jtf.getText() it returns null or ...
0
votes
1answer
84 views
NullPointerException to fill JTextField through a search for another screen
Good Afternoon!
I'm having trouble with NullPointerException when I try to load data into the registration screen after the choice of the desired record in another search screen.
My codes.:
...
2
votes
2answers
159 views
switching JTextFields by pressing Enter key
I have created number of text fields and I'm wonder how can I switch the focus between the fields by pressing the enter key.
In addition, Can I control the Target field ? for example can I defined ...
1
vote
1answer
79 views
Check JTextField Given Data
I use this code to ensure that each given data from textfields are correct.
But in dateTextField, when I give it anything or leave it empty, its error message is shown, but when I click to save ...
0
votes
2answers
112 views
How to fix this ActionListener to pass back the String to the widget
I am really new in Java, and just practising ActionListeners. As the part of the application I work on, I will have a JTextField that lets the user to search a name, and then a JTextArea to show the ...
0
votes
0answers
27 views
Need a start point to make the described application
I want to make an application which is very complicated and I do not know where to start. Im really new in java though.
Here is the application(Simplified):
There is a list with a few items and sub ...
-2
votes
1answer
87 views
Why is this method returning an empty string? [closed]
I have these two classes that make a simple calculator, however when I try to use it I get the error java.lang.NumberFormatException, here is the source code:
Of the SimpleCalc class:
//Imports are ...
-2
votes
4answers
399 views
How to create a KeyEvent
When i create the KeyListener, it requires the following fields:
public void keyPressed(KeyEvent e)
{
}
public void keyReleased(KeyEvent e)
{
}
public void keyTyped(KeyEvent e)
{
}
When i ...
0
votes
2answers
83 views
Cannot enable JTextField on button click
I am not sure why my JTextField is not being enabled when it is clicked.
Here is the code where I create and set the JTextField:
PromptHandler ph = new PromptHandler(this);
textPanel = new JPanel();
...
1
vote
3answers
633 views
How to character and Numeric values restrict in TextField Java
I have two questions regarding character and numeric values limitation. I have listening to focus lost events and validating Name (character) and Contact (numeric) TextFields.
1. How do I restrict ...
0
votes
1answer
191 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
63 views
How can ActionListener sends the result of the process back to the JTextArea
My question is a bit complicated and as my program is a bit big, I can't put it all here. Anyway, here is the description of the problem: The program has a JTextField, and JTextArea. When the user ...
0
votes
2answers
66 views
Set DocumentFilter on JOptionPane
I'm using:
String s = JOptionPane.showInputDialog(...);
to get a response back from the user to a question; the dialog is set up to display a text field for the response. I'd like to limit the ...
0
votes
1answer
67 views
IDocumentFilter using a HashMap as a dictionary Menu , to validate on a JTextField
I have a Hashmap filled with information from a table in Sybase , with this structure
-INDEX - CHARACTERS
----1---- 1234567890
----2----- abcdefg..
I'm tryng to set a new ...
0
votes
4answers
259 views
How to set the height and the width of a textfield in Java?
I was trying to make my JTextField fill the width and set a height for it but still failed. I tried adding the code setPreferredSize(new Dimension(320,200)); but still failed. Is there any way I can ...
0
votes
0answers
44 views
Making ActionListener for this API
I am really new at Java. And practicing it now. I am provided an API which shows the weather in a certain city. It works perfectly an command line. But my task is to make an interface with textfield ...
1
vote
2answers
700 views
output string using java textfield.setText() by using for loop
The question is, I try to make second textfield (textFieldGen) to print out the exact result likes console. Currently, second textfield shows one string only.
This is my first coding on java GUI.
...
1
vote
2answers
319 views
Filtering JList based on JTextField
I have a JTextField and a JList in my program. The JList contains the user's contacts. I'd like to filter the JList based on the text on the JTextField. For example, if I type in "Mike" it will only ...






