JTextField

Reply

Join Date: Jun 2003
Posts: 313
Reputation: red_evolve is on a distinguished road 
Solved Threads: 0
red_evolve's Avatar
red_evolve red_evolve is offline Offline
Posting Whiz

JTextField

 
0
  #1
Jul 25th, 2003
Hi..I've been searching all around to find out whether I could submit an entry in a JTextField by clicking a separate button created (say, a "submit" button).
It seems that, the value entered in the text field will only be appended if I press the Enter key. Can someone please help? Thx!
Reply With Quote Quick reply to this message  
Join Date: Jun 2003
Posts: 11
Reputation: sooim3 is an unknown quantity at this point 
Solved Threads: 0
sooim3 sooim3 is offline Offline
Newbie Poster

Re: JTextField

 
0
  #2
Jul 28th, 2003
A combination of events can be used for the same listener; listening to i.e. when a certain key is pressed by adding a KeyAdapter's KeyEvent, and listening to when a certain button is being pressed by using the ActionListener's ActionEvent.

So if i.e. a "ok" button should do something one could write a listener class that do the following:

  1. Class OkListener extends KeyAdapter implements ActionListener {
  2.  
  3. public void keyTyped(KeyEvent ke) {
  4. // Code for what happens to the JTextField when a certain key is be pressed...
  5. }
  6.  
  7. public void actionPerformed(ActionEvent ae) {
  8. // Code for what happens to the JTextField when a button is clicked on...
  9. }
  10.  
  11. }


Hope this is of some help,
/Soo-Im
Reply With Quote Quick reply to this message  
Join Date: Jun 2003
Posts: 313
Reputation: red_evolve is on a distinguished road 
Solved Threads: 0
red_evolve's Avatar
red_evolve red_evolve is offline Offline
Posting Whiz

Re: JTextField

 
0
  #3
Jul 28th, 2003
Hehe... I've got it already...because my assignment duedate was yesterday. It's actually a very simple way of solving...But thank you anyway...
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC