Workshop 2007 JRE Java Support
Installation
Home
CalcTool
Java Applets
Friends/Family
Gardening
Woodworking
Forums

The answer is....

 

 
labelString=inputTextField.getText();
helloWorldLabel.setText(labelString);
This could also be accomplished in one step by the following.
 
helloWorldLabel.setText(inputTextField.getText());

Sample Code 1