This is my code for selecting the contact number from the phonebook. I'm able to search and select the contact number from the mobile phone contact list. But, I want to select multiple contacts and add them in the textfield.
tb2 = new TextField("To: ", "", 30, TextField.PHONENUMBER);
tb3 = new TextField("Message: ", "", 300, TextField.ANY);
form1.append(tb2);
form1.append(tb3);
form1.addCommand(submitCommand);
//display.setCurrent(tb3);
display.setCurrent(form1);