(I have been able to get to this point)
I am to create a method that displays what has been entered in a textfield("input" below - the "X-items" is a list of ten ie.
String [] storage = new String[10];
input = new ATextField(125,400,150,25);
input.place(win);
input.setFontSize(12);
This is what I am having trouble with - how to get the input of (up to) 10 items in JLabel
>>>>HERE IS WHAT I CAME UP WITH>>>
String labelText = "";
for (int i = 0; i < storage.length; i++) {
labelText += storage[i];
}
But it "Can't resolve symbol" in the second line....
Does anyone have any suggestions?
Rob