please have a look my code
String a = JtextField.getText();
JTextArea.setText(a);
i'm getting text from TextField
i want to display the entered text into the JTextArea using JBttton
how can i do this
please help me
Printable View
please have a look my code
String a = JtextField.getText();
JTextArea.setText(a);
i'm getting text from TextField
i want to display the entered text into the JTextArea using JBttton
how can i do this
please help me
Add a Listener to your button. Then add your code to the actionPerformed method.
how can i do that?
Google a tutorial