-2
votes
1answer
34 views

Manipulate components by their name? [duplicate]

I have, for example, 2 text fields (txt1 and txt2) and two buttons (btn1 and btn2). I want to build a single method that will set "hello" in txt1 if btn1 is pressed, or "hello" in txt2 if btn2 is ...
0
votes
1answer
57 views

Multiple Jpanel keylistener space

I have a frame which contains 4 different panels.One panels contains a music player which on pressing space key start playing the music while other 3 panels contains textfields and some submit ...
0
votes
1answer
78 views

Java input dialog tooltip and pasting option?

Is there a nice way in Java to set a tooltip for the input dialog's textfield? For example: String input = JOptionPane.showInputDialog("Enter input:"); Is it also possible to have a right click ...
1
vote
2answers
58 views

Is there a way to show a popup like a “cloud” when you passed your mouse over a textfield in Java?

I'm looking for a way to display a baloon tip when i mouse-over a textfield in Java, for example to guide the user in the way to put some specific data: ID: 0-0000-000 or something like that... Is ...
0
votes
1answer
118 views

My JButton only does set.Text on my textfield if all of my 3 textfields have input

Whenever I click 1 on my calculator, its supposed to do t1.setText("1"); but it only does that if I already have a text on my textfield1,textfield2,textfield3 and if not it will produce an error, ...
1
vote
3answers
160 views

Inputting numbers in a textfield via button on GUI

I've made a simple calculator import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Calculator extends JFrame implements ActionListener { GridLayout layout = new ...
0
votes
1answer
89 views

Smaller TextFields in a bigger TextField Java

I want a textfield which looks like this : textfield . textfield . textfield. textfield and to enter just numbers in the textfields. Can you help me, please? :)
0
votes
3answers
98 views

Java Swing Textfield Error

I'm new to Java and Java Swing, and I can't get it to work. I have 2 textfields, and the text in textfield1 needs to be passed on te textfield2 by clicking a button, but it crashes constantly. Here ...
1
vote
2answers
121 views

Right aligned cursor not showing through in a JTextPane component

I have a JTextPane sandwiched between 2 JLabels - is there a known reason why the cursor shows through if i have it on the left most part of the textpane but not on the right? Here is the code to ...
1
vote
2answers
959 views

Get value from JTable to set into JTextField

I try to get value from JTable to put into JTextField when clicking the mouse but it doesn't work. For instance when user selects a row from my table, JTextField populates with information that is at ...
0
votes
3answers
210 views

Combine text fields as shown in Windows 7 Calculator

How can I make a 'combined' Text Field (outlined in red, below) as shown in Windows Calculator?
0
votes
1answer
142 views

JFormattedTextField's is add characters on focus

I have a JFormattedTextField being initialized with the code JFormattedTextField f = new JFormattedTextField(createFormatter()); f.setValue(null); f.setColumns(1); f.setEditable(true); ...
0
votes
1answer
721 views

set text cursor in text field, Java

I have two text fields, and text_field2 text_fiel1. when the program is run directly to the text cursor automatically text_field1. I want to ask how can I make the text cursor when the program is run ...
0
votes
1answer
59 views

Java Gui return item

I am wanting to get a return from a gui instance The code i run to create the GUI: JFrame frame = new JFrame(); frame.getContentPane().add(new ChatPopup()); ...
1
vote
1answer
706 views

Listeners and reactions in Scala Swing

I've done a fair bit of searching and some trial and error in eclipse, but there seems to be a gap in my understanding of listeners and reactions when writing a GUI in Scala using Swing. Does each ...
0
votes
2answers
509 views

how to get the text from a text field to a variable?

i want to get the value from the txt field val1 and val2 and store it in the variables n1 and n2. then n1 and n2 will be parsed to get the value for the calculator. here is the code: public class ...
3
votes
2answers
2k views

Java - placeholder on textfield

I'm trying to create a GUI with Swing. My problem is, I have a textfield, but I want it to have a "placeholder" (like in html). I read here and there that it can be done by overriding the paint() of ...
0
votes
2answers
77 views

Assigning multiple values from a JFormattedTextField to multiple variables

If I had a JFormattedTextField like this MaskFormatter formatter = new MaskFormatter("#,#"); JFormattedTextField textField = new JFormattedTextField(formatter); and if I had variables int x = 0; ...
1
vote
1answer
915 views

Pop Up Text Field Java

I have a button and on click I want it to load a text field (like a pop up). Is this possible? I've looked into this.setVisible(false); new className().setVisible(true); But this means I'd need a ...
0
votes
2answers
275 views

Can I clear text in JTable when type?

Can I make my textField in JTable acts like a cell in Excel? Clear the text when typing in but can editing when get into the cell. I think these 2 operations will goes to the same event. Am I wrong? ...
0
votes
3answers
91 views

How can I clear the textfield when it is enabled?

The textfield is disabled and with text. When I touch a button, the textfield will be enabled for editing. However, I would like to textfield to be cleared when enabled. One constraint is that I ...
-1
votes
2answers
400 views

Casting A String To An Int From A JTextField In Java

So I'm trying to use the text entered in a TextField as an Int... heres my code int command1 = (int) (command.getText()); But I get the error "Cannot cast from string to int" an I can't figure it ...
2
votes
3answers
121 views

focused component reference

I am working on a simple java swing based application. How would I get and set the text of the currently focused textfield/textarea of a form? I know how to determine which component has focus but ...
0
votes
2answers
102 views

Only the last call to a TextField updates it

I want to display program flow to the user in form of comments in a JTextField. Only the last message ("complete") is shown. How can I make each message appear when I call setText()? private class ...
0
votes
1answer
141 views

JTextField dispatchEvent Doesn't Work, But Works For TextField

In my program, I wanted to invoke an ActionEvent on a TextField named descField, when the focus is lost. I used dispatchEvent successfully. When I changed the TextField to a JTextField, it doesn't ...
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
vote
3answers
3k views

Delayed text color change in Swing text field

Is it possible to change the color of a text in a text field?I am trying to build an interpreter, so I was wondering on how would you change the color of the text in real time. For example the word I ...
0
votes
2answers
2k views

How to disable resizing of textField in java swing?

I have a GUI, which is based on Swing's JPanelthat uses BorderLayout.In the north panel i have added a new JPanel which uses FlowLayout and contains two textField and other components. When I change ...
0
votes
1answer
599 views

Limiting and formatting a JTextfield

I have a JTextfield where a user enters a "social security number". The SSN has 9 digits and 2 dashes for a total of 11 characters. How do I limit the JTextField to 11 characters and also have 2 ...
0
votes
1answer
286 views

Access values in JTextfield from another class

Can someone check my code if there is something wrong because when I call the getter method it displays nothing. Somehow it does not store the inputs from the text field that I am trying to use. ...
4
votes
2answers
2k views

Changing Border Color of AWT TextField

In AWT application I need to set border color of TextField. In JTextField, I know that we do can do the following JTextField tf = new JTextField(); ...
1
vote
1answer
1k views

Java clear textfield after “Enter”

How can I clear the text in the input field after the user submits the message. Im working on something similar to a chat. I've gotten to the point where when the user submits the message it gets ...
1
vote
3answers
4k views

Java TextField getText() returns previous string value

I have a problem with Java Textfield that is when I cover all text in the JTextField and input new text immediately(do not pass backspace) into the JTextField, then I use function getText() I get the ...
2
votes
1answer
5k views

java: validating that all text fields in GUI are completed

I am trying to create a GUI that allows someone to set up an account. I would like to validate that all the text fields are complete when the create account button is pressed. What is the best way to ...
1
vote
2answers
303 views

Use an input formatter and password characteristic together with swing

I'm trying to make a Password field with Swing, but apply as well a format. I mean, i want the password field to be treated as a formatted field (following a specified format like 6 numbers separated ...
3
votes
3answers
999 views

java - Cant change the value of a JTextfield from inside of DocumentListener methods

I get an "Attempt to mutate in notification" exception. 1. How can I change it ? 2. How can I get the value that was inside the TextField before the listener was triggered? EDIT: It is something ...
0
votes
1answer
241 views

cant create a JTextField

import org.jsoup.Jsoup; @SuppressWarnings({ "unused", "serial" }) public class SimpleWebCrawler extends JFrame { JTextField yourInputField = new JTextField(20); static JTextArea ...
0
votes
3answers
633 views

syntax error on addActionListener

import org.jsoup.Jsoup; @SuppressWarnings({ "unused", "serial" }) public class SimpleWebCrawler extends JFrame implements ActionListener { JTextField yourInputField = new JTextField(20); ...
2
votes
4answers
2k views

cannot instantiate type actionlistener?

import org.jsoup.Jsoup; @SuppressWarnings("unused") public class SimpleWebCrawler extends JFrame implements ActionListener { JTextField yourInputField = new JTextField(20); static JTextArea ...
0
votes
2answers
369 views

JTextField problem

import org.jsoup.Jsoup; @SuppressWarnings("unused") public class SimpleWebCrawler extends JFrame { JTextField yourInputField = new JTextField(20); static JTextArea _resultArea = new ...
2
votes
2answers
4k views

Access to Java Swing TextField from other class

I have a problem with Java Swing text input. I have a method inputData() in class A and when I call it, the method should wait while user fill TextField input in class B and press ENTER. Finally, the ...
3
votes
3answers
4k views

JFormattedTextField with MaskFormatter

I have a JFormattedTextField that I use to restrict entries of a date and time. I want to use a MaskFormatter though to show the placeholder chars. Is there a way to use a MaskFormatter on top of the ...
2
votes
1answer
790 views

Swing active rendering efficiency or how to combine active rendering with gui widgets

Continuing from a previous question, I keep searching for the optimal way to combine active rendering with textfields in Java. I tried several options, using BufferStrategy, VolatileImage or ...
4
votes
1answer
3k views

How to make an input dialogbox which has more than one textfield(ie. can take many inputs)

Hey there, I have implemented an input DialogBox, however this has one textfield. I need an input DialogBox which has many textfields to take input from and store each String in an array. What I have ...