Hi,
I got it. The solution via List works.

For the next with this problem, here is my solution:

List<TextBox> trackList = new ArrayList<TextBox>();
....
for (int i = 0; i < number; i++) {
 TextBox track = new TextBox();
 trackList.add(track);
 generateEventHeadPanel.add(track);
}
...
String text = trackList.get(index).getText();

Thanks a lot.
Jochen

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to