At the time of press of ok button in the main menu i have created textfield in form called
"RequestIndent" like this ..
TextField text = new TextField(menu_item[i], null, 32, TextField.ANY);
RequestIndent.append(text);
now in form "RequestIndent" i have to fetch all the values put in all the textfields , but i am
not able to do so , if i would be able to create dynamic objects some thing like this my problem
would have been solved
TextField text[i] = new TextField(menu_item[i], null, 32, TextField.ANY);
RequestIndent.append(text);
i would have fetched values something like this
String value = text[i].getString();
but jave does not supports creating objects dynamically , hence i am not able to get the values
in all the textfields , kindly help to solve this problem
thanks and regards
Arunesh

Reply With Quote



