Results 1 to 6 of 6
- 01-17-2008, 08:28 PM #1
Member
- Join Date
- Jan 2008
- Posts
- 7
- Rep Power
- 0
Displaying text in a JTextField after pressing a button
Having a problem with getting text to display in a text field after a button is pressed.
I've tried useing the getText and setText but I don't think I've done it properly.
This is what I'm useing:
JTextField showHumanScores = new JTextField(15);
String fieldHumanScores = showHumanScores.getText();
fieldHumanScores.setText((humanHand[0]));
Is this correct and my problem lies somewhere else?
Anything to do with humanHand being an int?Last edited by RLRExtra; 01-17-2008 at 08:35 PM.
- 01-17-2008, 08:34 PM #2
Hi RLRExtra
Try this:
Java Code:showHumanScores.setText(humanHand[0]);
I don't think that the String class has a setText() method since fieldHumanScores is an instance of String.
Originally Posted by RLRExtra
Hope this helped. ;)Eyes dwelling into the past are blind to what lies in the future. Step carefully.
- 01-17-2008, 08:43 PM #3
Member
- Join Date
- Jan 2008
- Posts
- 7
- Rep Power
- 0
Nope, doesn't work! :(
When I try compile it, I get:
in javax.swing.text.JTextComponent cannot be applied to (int)
- 01-17-2008, 08:46 PM #4
Member
- Join Date
- Jan 2008
- Location
- South Africa
- Posts
- 18
- Rep Power
- 0
Is humanHand an int array?
If so,
try...
showHumanScores.setText(Integer.toString(humanHand[0]));Last edited by jimm1; 01-17-2008 at 08:50 PM.
- 01-17-2008, 08:56 PM #5
Member
- Join Date
- Jan 2008
- Posts
- 7
- Rep Power
- 0
Nice one! It works now, thank you! :D
- 01-17-2008, 09:01 PM #6
Member
- Join Date
- Jan 2008
- Location
- South Africa
- Posts
- 18
- Rep Power
- 0
Similar Threads
-
how to focus to another JTextfield?
By birdofprey in forum AWT / SwingReplies: 2Last Post: 04-09-2008, 01:08 PM -
Displaying data into text area
By abhiN in forum New To JavaReplies: 1Last Post: 01-22-2008, 10:30 AM -
Displaying text box on MIDlet form
By Java Tip in forum Java TipReplies: 0Last Post: 11-22-2007, 10:06 AM -
Java Next Button for displaying next row
By susan in forum Enterprise JavaBeans (EJB)Replies: 1Last Post: 08-07-2007, 04:16 AM -
help with JTextfield
By gary in forum New To JavaReplies: 4Last Post: 07-11-2007, 01:58 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks