Hello. 
I'm nearly finished my little project for Uni, however, I am stuck on the very last part. I have some text boxes and for one I would like to have in the box a variable. The variable is always different so I can't "hard code" an answer into the field.
Here is the small code for the text box:-
Now the part where the two " " are, I can enter words etc etc and they will show in the box. However, is it possible to say put a variable somehow into there?
Basically I'm passing a time to this textfield, and the time will always be different depending on when it was stopped.
At the moment I'm struggling, as it's taken everything I enter as a STRING and so just outputting it in the box.
Thanks for any suggestions... again!

I'm nearly finished my little project for Uni, however, I am stuck on the very last part. I have some text boxes and for one I would like to have in the box a variable. The variable is always different so I can't "hard code" an answer into the field.
Here is the small code for the text box:-
Code:
tb5 = new TextField("Time: ","",20,TextField.ANY);
Now the part where the two " " are, I can enter words etc etc and they will show in the box. However, is it possible to say put a variable somehow into there?
Code:
tb5 = new TextField("Time: ","+TEST_VALUE+",20,TextField.ANY);
TEST_VALUE = "whatever I want";
Basically I'm passing a time to this textfield, and the time will always be different depending on when it was stopped.

Thanks for any suggestions... again!
