3

I am currently working on a midlet for sending SMS messages. I made use of a textfield and specified the Input constraints as phone numbers (this constraints allow for automatic search for numbers in a phone for a Nokia platform). But the disadvantage is that it only accepts *(asterics) and # as the delimiters. It doesn't allow for ;(semicolon) to be used. Please I need an algorithm that allows for an SMS to be sent to multiple recipients.

gnat
  • 6,213
  • 108
  • 53
  • 73
nnanna
  • 287
  • 4
  • 12

1 Answers1

1

You can send multiple SMS using the loop or any iteration concept. For example suppose if you are adding ; end of the number means you can split that number using ; separator and add that number's into Vector and the use the loop for sending SMS.

Community
  • 1
  • 1
bharath
  • 14,283
  • 16
  • 57
  • 95