Results 1 to 5 of 5
Thread: jTextLabel and jTextField
- 10-29-2010, 07:46 PM #1
Member
- Join Date
- Oct 2010
- Posts
- 33
- Rep Power
- 0
jTextLabel and jTextField
Hi
I guess this looks pretty pathetic, but I can't figure out how to take a String, save and then display its content in a TextLabel as many times as I like, by pressing a button. For example, if you write "Dog" in the textfield, press a button attached to a textlabel, you get the "Dog" displayed, after that if you write "Cat" in the txt field it just displays "Cat". How can I make it display DogCat and so on, as many times the user presses the button it just needs to keep adding those strings to the textLabel
- 10-29-2010, 08:03 PM #2
Not sure what a JTextLabel is, but you have a method to get the current text of the component, right? And a method to set the text? And you know how to concatenate Strings?
- 10-29-2010, 08:26 PM #3
Member
- Join Date
- Oct 2010
- Posts
- 33
- Rep Power
- 0
concat right, thanks alot man, but when i concat them they are just displayed together, like f.e. when I input Dog, it just outputs DogDog and when I press the button again it does the same:)
Last edited by jeata; 10-29-2010 at 08:30 PM.
- 10-29-2010, 08:29 PM #4
Member
- Join Date
- Oct 2010
- Posts
- 9
- Rep Power
- 0
try this ::in the button click :
label.setText (label.getText()+" "+field.getText());
of course
label (JTextLabel) & field (textfield)
I hope that help you ...
- 10-29-2010, 08:40 PM #5
Member
- Join Date
- Oct 2010
- Posts
- 33
- Rep Power
- 0
Similar Threads
-
Focusing on the next JTextField
By britto_bicsjohn in forum AWT / SwingReplies: 2Last Post: 08-26-2009, 03:53 PM -
JTextField
By gancio in forum AWT / SwingReplies: 20Last Post: 08-26-2009, 03:11 PM -
how to access jTextField of one JFrame1 from JFrame2 & Modify JTextField contents
By sumit1mca in forum AWT / SwingReplies: 1Last Post: 01-30-2009, 06:44 PM -
JtextField
By kashifu in forum Advanced JavaReplies: 2Last Post: 06-27-2008, 04:25 PM -
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