0
votes
3answers
60 views

JComboBox, ActionListener, How do I really use them?

Im currently learning java and stuck onto JComboBox. I have a feel things that I am trying out and hitting the wall for the pass 4 hours. I am trying to let a user select 1-10 from a ComboBox. How do ...
-1
votes
1answer
65 views

ActionPerformed and ActionListener [closed]

My program asks the user: How many course have you completed? So, the users has to enter the number of courses completed on a JTextField component. My program then converts the String that has been ...
0
votes
2answers
92 views

How do I center a JTextfield

I'm having trouble centering a JTexfield in my program.The Textfield does not appear aligned with the JButton. I've tried using the x.setHoriontalAlignment(JTextfield.CENTER); but to no avail. Any ...
0
votes
2answers
106 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 ...
2
votes
1answer
210 views

Enter key JTextField

I have a JTextField with an Actionlistener to it. Now I want it to do certain things when I press enter. I am using a shared ActionListener so trying to do a getSource on the JTextField but it doesn't ...
2
votes
3answers
346 views

Having an ActionListener in a separate class use data from JTextfield in original class

I'm trying to learn Swing and JFrame, so I'm creating a really simple program that asks for your name and then displays a box telling you what you've entered. I'm trying to use a separate class from ...
0
votes
2answers
484 views

Clear a typed character during runtime in jTextField

private void jTextField1KeyPressed(java.awt.event.KeyEvent evt) { int x=evt.getKeyCode(); if(x>=96&&x<=105) { evt.setKeyCode(8);//Here 8 is used for Backspace key to remove the ...
0
votes
2answers
54 views

Listeners and their objects

I have a JTextField with a listener for a change-text event. Can I use this listener to affect the same object it is listening to? For instance, if it detects a "problematic" change, it should delete ...
4
votes
2answers
285 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 ...
3
votes
3answers
2k views

Passing.getText() String to another class

I'm currently working on a first year university project and I have a problem, although I doubt it's a very complicated one, but I've been searching and I just can't find a suitable answer to it. The ...
2
votes
2answers
1k views

Make a program automatically add text fields in java [closed]

Maybe there is a similar question to this, but I couldn't find a one. Id like my program ( awt or swing ) to add controls ( like text fields ) automatically. For example : A dialog program has 10 ...
0
votes
1answer
628 views

How do I get text from JTextField after it is updated using InputMethodListener and InputMethodRequests?

I have been needing to get Text from a JTextField when a new character is added and have tried using the KeyListener Interface, but its methods are called before the new character is added to the ...
0
votes
1answer
529 views

Insert list of values to JTextField with Java2sAutoTextField

I want th auto generate values for the empId (or empName) when inserting values to the jtextfield I went through the Java2sAutoTextField class but I can't add it in to a jframe. Here's a part of ...
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 ...
3
votes
2answers
258 views

Ctrl-Delete in JTextField

How can I get JTextFields to allow Ctrl-Delete and Ctrl-Backspace when editing text? In various other programs, these key combinations can delete an entire word in one go. From what I can tell, the ...
4
votes
5answers
2k views

Disabling 'paste' in a jTextfield

Hi I have an app that is written in Swing, awt. I want to prevent users from pasting values into the textfields. is there any way to do this without using action listeners?