Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 5 of 5

Thread: JTextField string entry with a JButton instead of 'enter' key.

  1. #1
    Junior Member
    Join Date
    Apr 2013
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default JTextField string entry with a JButton instead of 'enter' key.

    Is there a way to "grab" the text from a JTextField with a JButton instead of having to use the enter key on the keyboard? Such as an over-loaded JTextField class/method? Thank you!


  2. #2
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: JTextField string entry with a JButton instead of 'enter' key.

    Can you explain what "grab the text" means? Where do you want the String held in the JTextField to go?
    If you don't understand my answer, don't ignore it, ask a question.

  3. #3
    Junior Member
    Join Date
    Apr 2013
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: JTextField string entry with a JButton instead of 'enter' key.

    Sure; I just want the JTextField content to be copied to an existing string variable but when the user presses a 'calculate' button on the JPanel instead of the user needing to press the keyboard's enter key to do this.

  4. #4
    Super Moderator Norm's Avatar
    Join Date
    May 2010
    Location
    Eastern Florida
    Posts
    25,042
    Thanks
    63
    Thanked 2,708 Times in 2,658 Posts

    Default Re: JTextField string entry with a JButton instead of 'enter' key.

    Add a listener to the button and have the listener's method copy the String from the JTextField.
    If you don't understand my answer, don't ignore it, ask a question.

  5. The Following User Says Thank You to Norm For This Useful Post:

    ashbury (April 6th, 2013)

  6. #5
    Junior Member
    Join Date
    Apr 2013
    Posts
    5
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default Re: JTextField string entry with a JButton instead of 'enter' key.

    I will try that, Norm. Thanks.

Similar Threads

  1. JButton by pressing the enter key.
    By Hamedroozbehani in forum What's Wrong With My Code?
    Replies: 4
    Last Post: March 12th, 2013, 04:46 AM
  2. Replies: 3
    Last Post: July 25th, 2012, 07:53 AM
  3. Replies: 8
    Last Post: May 28th, 2012, 11:29 AM
  4. JButton with "Enter Key" keyboard action
    By chronoz13 in forum Java Swing Tutorials
    Replies: 2
    Last Post: March 14th, 2012, 06:49 AM
  5. JButton with "Enter Key" keyboard action
    By chronoz13 in forum Java Code Snippets and Tutorials
    Replies: 0
    Last Post: January 26th, 2010, 10:53 AM