Private Sub Event_Click
Dim smsc As MessageComposer
smsc.Initialize("smsc")
smsc.SetRecipients(Array As String("123332323")) 'must be strings!
smsc.Body = "Hello!!!"
smsc.Show(Page1)
End Sub
Sub smsc_Complete (Result As Int)
If Result = smsc.RESULT_SENT Then
hd.ToastMessageShow("Message sent", True)
Else
hd.ToastMessageShow("Message was not sent", True)
End If
End Sub
If I'm not wrong the only difference with Android is that you can't send SMS silently. With the above code the user must confirm and click "send" in the message application.